I hereby claim:
- I am veritas06 on github.
- I am v3ritas (https://keybase.io/v3ritas) on keybase.
- I have a public key ASCp85LE63pVowhqNMlh7pWs7H-mgbBhPA80uSJsqcGTRwo
To claim this, I am signing this object:
application_id | package_name | title | version_string | domain | |
---|---|---|---|---|---|
282935706 | tv.lifechurch.bible | Bible | 7.2 | cloudflare.com | |
284910350 | com.yelp.yelpiphone | Yelp | 11.4.0 | cloudflare.com | |
290853822 | net.box.BoxNet | Box for iPhone and iPad | 4.0.1 | cloudflare.com | |
300255638 | com.abcnews.ABCNews | ABC News – Watch Breaking US & World News, Live Video & Election Coverage | 5.10.0 | cloudflare.com | |
304154888 | com.nicusa.FBIMostWanted | Most Wanted | 2.3 | cloudflare.com | |
319881193 | com.grindrguy.grindrx | Grindr - Gay, bi, social networking and dating app to chat and meet guys | 3.0.13 | cloudflare.com | |
322439990 | com.fboweb.MyRadar | MyRadar NOAA Weather Radar – Forecasts, Storms, and Earthquakes | 4.4.4 | cloudflare.com | |
327630330 | com.getdropbox.Dropbox | Dropbox | 28.2 | cloudflare.com | |
329913454 | com.crunchyroll.iphone | Crunchyroll - Everything Anime | 3.00.2 | cloudflare.com |
I hereby claim:
To claim this, I am signing this object:
g.php: | |
<html> | |
<head> | |
<script type="text/javascript"> | |
function getCookie(name) { | |
var matches = document.cookie.match(new RegExp( | |
"(?:^|; )" + name.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, '\\$1') + "=([^;]*)" | |
)); | |
return matches ? decodeURIComponent(matches[1]) : undefined; |
$UserCredential = Get-Credential | |
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection | |
Import-PSSession $Session |
# Source: Ryan's Tutorials: Bash Scripting Tutorial - 2. Variables of 8 | |
# URL: https://ryanstutorials.net/bash-scripting-tutorial/bash-variables.php | |
#!/bin/bash | |
# A simple copy script | |
cp $1 $2 | |
# Let's verify the copy worked |
#!/bin/bash | |
# Script to log each SSH session | |
# Create Log Directory | |
# CurrentUser="whoami" # Not needed | |
# mkdir "/home/$USER/Logs" | |
# mkdir "/home/$CurrentUser/Logs/" | |
# $LogDirectory="/home/$USER/Logs/" | |
# if [ ! -d "$LogDirectory" ]; then |
#!/bin/bash | |
# ------------------------------------------------------------------ | |
# Sean P. McAdam: SSH Session Logging | |
# Script to log each SSH session | |
# ------------------------------------------------------------------ | |
VERSION=0.2.0 | |
SUBJECT=tech.v3ritas.log_ssh_adv | |
USAGE="Usage: log_ssh_adv -ivhc username destinationHost" |
# The below commands are used for registering & unregistering DLL's with the .NET RegAsm tool: | |
#To Register: | |
SET WorkFolder= '<directory>' | |
regasm.exe %WorkFolder%\xxx.dll /Codebase | |
#To Unregister: | |
SET WorkFolder= '<directory>' | |
regasm.exe /unregister %WorkFolder%\xxx.dll |
# Source: GitHub: 9to5IT/Script_Template.ps1 | |
# https://gist.github.com/9to5IT/9620683 | |
#requires -version 2 | |
<# | |
.SYNOPSIS | |
<Overview of script> | |
.DESCRIPTION | |
<Brief description of script> |
# EmuNAND backup GM9 script | |
# This will create a backup named [DATESTAMP]_[SERIAL]_emunand_???.bin | |
# author: d0k3 | |
set ERRORMSG "EmuNAND backup failed" | |
set SUCCESSMSG "EmuNAND backup success" | |
ask "Create a EmuNAND backup in $[GM9OUT]?" | |
findnot $[GM9OUT]/$[DATESTAMP]_$[SERIAL]_emunand_???.bin OUTPATH | |
cp -h E:/nand_minsize.bin $[OUTPATH] |