├── README.md ├── binary ├── angrSolver.py ├── bufoverflow_remote.py ├── overflowLeak.py ├── shellcode_gen ├── shellcode_gen.c └── time.c ├── cheatsheets ├── binaryCheatsheet.md ├── opensslCheatSheet.md ├── powershell_b64_exfil.txt ├── ret2libTutorial.txt ├── ret2libTutorialAlt.pdf └── sshThruProxy.md ├── dotfiles ├── bashrc ├── tmux.conf └── vimrc ├── install_scripts └── suricata-install.sh ├── misc ├── README.md ├── shreddit.py ├── sms_bomber.py └── xor.py ├── os_hardening ├── linux │ ├── checkCrontab.sh │ ├── checkPackages.sh │ ├── debian_sources.list │ ├── gitMonDir.sh │ ├── integrity-checks.md │ ├── iptables.sh │ ├── minimon.sh │ ├── monpanel.sh │ ├── procmon.sh │ ├── rootkitBreaker.sh │ └── ubuntu_sources.list ├── paloAlto │ └── firstSteps.md └── windows │ ├── Get-WindowsUpdates.ps1 │ ├── complianceHIPAA.ps1 │ └── lockDownClient.bat ├── post_exploit ├── cats.ps1 ├── invoke-cats.txt ├── linuxPasswordDump.sh └── partyTime.py ├── shells ├── godshell.php ├── phppng.png ├── simple_shell.php └── xsspng.png └── web ├── old_stuff ├── CSRF.html ├── CSRF_uploadFile.html ├── cookie_pump.py ├── sqlifilter.php ├── stealer.php └── xss_CSRF_same-originBypass.html ├── rebind ├── rebind.html └── rebinder.py └── xss ├── serve_payload.py ├── test.html └── xss.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/README.md -------------------------------------------------------------------------------- /binary/angrSolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/binary/angrSolver.py -------------------------------------------------------------------------------- /binary/bufoverflow_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/binary/bufoverflow_remote.py -------------------------------------------------------------------------------- /binary/overflowLeak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/binary/overflowLeak.py -------------------------------------------------------------------------------- /binary/shellcode_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/binary/shellcode_gen -------------------------------------------------------------------------------- /binary/shellcode_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/binary/shellcode_gen.c -------------------------------------------------------------------------------- /binary/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/binary/time.c -------------------------------------------------------------------------------- /cheatsheets/binaryCheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/cheatsheets/binaryCheatsheet.md -------------------------------------------------------------------------------- /cheatsheets/opensslCheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/cheatsheets/opensslCheatSheet.md -------------------------------------------------------------------------------- /cheatsheets/powershell_b64_exfil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/cheatsheets/powershell_b64_exfil.txt -------------------------------------------------------------------------------- /cheatsheets/ret2libTutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/cheatsheets/ret2libTutorial.txt -------------------------------------------------------------------------------- /cheatsheets/ret2libTutorialAlt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/cheatsheets/ret2libTutorialAlt.pdf -------------------------------------------------------------------------------- /cheatsheets/sshThruProxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/cheatsheets/sshThruProxy.md -------------------------------------------------------------------------------- /dotfiles/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/dotfiles/bashrc -------------------------------------------------------------------------------- /dotfiles/tmux.conf: -------------------------------------------------------------------------------- 1 | set -g default-terminal "screen-256color" 2 | -------------------------------------------------------------------------------- /dotfiles/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/dotfiles/vimrc -------------------------------------------------------------------------------- /install_scripts/suricata-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/install_scripts/suricata-install.sh -------------------------------------------------------------------------------- /misc/README.md: -------------------------------------------------------------------------------- 1 | Misc stuff and Proof of Concepts. NOT FOR REAL USE! 2 | -------------------------------------------------------------------------------- /misc/shreddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/misc/shreddit.py -------------------------------------------------------------------------------- /misc/sms_bomber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/misc/sms_bomber.py -------------------------------------------------------------------------------- /misc/xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/misc/xor.py -------------------------------------------------------------------------------- /os_hardening/linux/checkCrontab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/linux/checkCrontab.sh -------------------------------------------------------------------------------- /os_hardening/linux/checkPackages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/linux/checkPackages.sh -------------------------------------------------------------------------------- /os_hardening/linux/debian_sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/linux/debian_sources.list -------------------------------------------------------------------------------- /os_hardening/linux/gitMonDir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/linux/gitMonDir.sh -------------------------------------------------------------------------------- /os_hardening/linux/integrity-checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/linux/integrity-checks.md -------------------------------------------------------------------------------- /os_hardening/linux/iptables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/linux/iptables.sh -------------------------------------------------------------------------------- /os_hardening/linux/minimon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/linux/minimon.sh -------------------------------------------------------------------------------- /os_hardening/linux/monpanel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/linux/monpanel.sh -------------------------------------------------------------------------------- /os_hardening/linux/procmon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/linux/procmon.sh -------------------------------------------------------------------------------- /os_hardening/linux/rootkitBreaker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/linux/rootkitBreaker.sh -------------------------------------------------------------------------------- /os_hardening/linux/ubuntu_sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/linux/ubuntu_sources.list -------------------------------------------------------------------------------- /os_hardening/paloAlto/firstSteps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/paloAlto/firstSteps.md -------------------------------------------------------------------------------- /os_hardening/windows/Get-WindowsUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/windows/Get-WindowsUpdates.ps1 -------------------------------------------------------------------------------- /os_hardening/windows/complianceHIPAA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/windows/complianceHIPAA.ps1 -------------------------------------------------------------------------------- /os_hardening/windows/lockDownClient.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/os_hardening/windows/lockDownClient.bat -------------------------------------------------------------------------------- /post_exploit/cats.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/post_exploit/cats.ps1 -------------------------------------------------------------------------------- /post_exploit/invoke-cats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/post_exploit/invoke-cats.txt -------------------------------------------------------------------------------- /post_exploit/linuxPasswordDump.sh: -------------------------------------------------------------------------------- 1 | #moved to github.com/huntergregal/mimipenguin 2 | -------------------------------------------------------------------------------- /post_exploit/partyTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/post_exploit/partyTime.py -------------------------------------------------------------------------------- /shells/godshell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/shells/godshell.php -------------------------------------------------------------------------------- /shells/phppng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/shells/phppng.png -------------------------------------------------------------------------------- /shells/simple_shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/shells/simple_shell.php -------------------------------------------------------------------------------- /shells/xsspng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/shells/xsspng.png -------------------------------------------------------------------------------- /web/old_stuff/CSRF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/web/old_stuff/CSRF.html -------------------------------------------------------------------------------- /web/old_stuff/CSRF_uploadFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/web/old_stuff/CSRF_uploadFile.html -------------------------------------------------------------------------------- /web/old_stuff/cookie_pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/web/old_stuff/cookie_pump.py -------------------------------------------------------------------------------- /web/old_stuff/sqlifilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/web/old_stuff/sqlifilter.php -------------------------------------------------------------------------------- /web/old_stuff/stealer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/web/old_stuff/stealer.php -------------------------------------------------------------------------------- /web/old_stuff/xss_CSRF_same-originBypass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/web/old_stuff/xss_CSRF_same-originBypass.html -------------------------------------------------------------------------------- /web/rebind/rebind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/web/rebind/rebind.html -------------------------------------------------------------------------------- /web/rebind/rebinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/web/rebind/rebinder.py -------------------------------------------------------------------------------- /web/xss/serve_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/web/xss/serve_payload.py -------------------------------------------------------------------------------- /web/xss/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/web/xss/test.html -------------------------------------------------------------------------------- /web/xss/xss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huntergregal/tools/HEAD/web/xss/xss.js --------------------------------------------------------------------------------