Skip to content

Instantly share code, notes, and snippets.

View jkeychan's full-sized avatar
:octocat:

Jeff Bollinger jkeychan

:octocat:
View GitHub Profile
@jkeychan
jkeychan / keybase.md
Created January 9, 2024 18:03
Keybase.io verification

Keybase proof

I hereby claim:

  • I am jkeychan on github.
  • I am jeffbollinger (https://keybase.io/jeffbollinger) on keybase.
  • I have a public key ASAUHA9D7c-n6NVJsvKItZNUZKGVLgV9A9O7r9XU9MwwkAo

To claim this, I am signing this object:

@jkeychan
jkeychan / strace-get-creds.txt
Created November 16, 2020 20:32
Grab local SSH credentials with strace
sudo strace -f -etrace=write -s 64 -p $SSH_PID 2>&1
@jkeychan
jkeychan / remove-old-timemachine-backups.txt
Created November 16, 2020 20:05
Remove old Timemachine Backups with tmutil
find $(tmutil machinedirectory) -name "2020-03-*" -maxdepth 1 | sort -r | tail -n +2 | sudo xargs tmutil delete
@jkeychan
jkeychan / wifi-cracking-basics.txt
Created November 16, 2020 16:45
WPA2 Cracking Basic Operations
Start monitor mode on usable interface:
airmon-ng start $interface
Dump all found APs and bssid, channel, etc:
airodump-ng -i -g -w allAPs,out $interface
-i only saves IVs
-g tries to get GPS coords
@jkeychan
jkeychan / ddns-providers-2020.txt
Last active December 21, 2023 09:24
Common Dynamic DNS (DDNS) Providers
2-ch.info
200u.info
20ju.info
21nn.info
222z.info
22zw.info
236z.info
23hb.info
24en.info
250y.info
@jkeychan
jkeychan / .bash_profile
Created November 16, 2020 16:32
Tailored Bash Profile for OSX
#MAC OS
#echo defaults write com.apple.finder AppleShowAllFiles TRUE
alias updatedb='/usr/libexec/locate.updatedb'
alias en1='/sbin/ifconfig en1'
alias en0='/sbin/ifconfig en0'
alias tun0='/sbin/ifconfig utun1'
alias updatedb='/usr/libexec/locate.updatedb'
#DISABLE APPLES ZSH BULLSHIT
export BASH_SILENCE_DEPRECATION_WARNING=1