├── .gitignore ├── C ├── brute_pass │ ├── brut3.c │ ├── hash.asm │ ├── makefile │ └── readme.txt ├── mypacker │ ├── Makefile │ ├── hello.c │ ├── loaddll.c │ ├── mypacker.py │ ├── obstrings.py │ ├── runpe.cpp │ ├── runpeinc.asm │ ├── strings.txt │ ├── v2 │ │ ├── Makefile │ │ ├── bbcypher.asm │ │ ├── dllmgt.asm │ │ ├── hashname.py │ │ ├── hello.c │ │ ├── macro.asm │ │ ├── nop.asm │ │ ├── obfpe.py │ │ ├── peexec.asm │ │ ├── runpe.asm │ │ ├── runpe.ico │ │ └── runpe.rc │ ├── v3 │ │ ├── Makefile │ │ ├── bbcypher.asm │ │ ├── dllmgt.asm │ │ ├── hashname.py │ │ ├── hello.c │ │ ├── macro.asm │ │ ├── nop.asm │ │ ├── obfpe.py │ │ ├── peexec.asm │ │ ├── runpe.asm │ │ ├── runpe.ico │ │ ├── runpe.rc │ │ ├── runpesrc.asm │ │ └── structure.asm │ └── v4 │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── PaulYmorphe.py │ │ ├── Readme.txt │ │ ├── bbcypher.asm │ │ ├── dllmgt.asm │ │ ├── hashname.py │ │ ├── hello.c │ │ ├── macro.asm │ │ ├── obfpe.py │ │ ├── peexec.asm │ │ ├── runpe.asm │ │ ├── runpe.ico │ │ └── runpe.rc ├── tecamac │ └── bst.c └── usefonc │ ├── Makefile │ ├── hello.cpp │ ├── query.txt │ ├── usefonc.asm │ └── usefonc.cpp ├── Docs ├── radare2_rc.pdf └── radare2_rc.tex ├── README.md ├── aslr ├── asm ├── evilnop │ ├── Makefile │ ├── Readme.txt │ ├── nop.asm │ ├── nop.exe │ ├── nop2.exe │ ├── nop3.exe │ ├── nop4.exe │ ├── nop5.exe │ ├── nop6.exe │ ├── nop7.exe │ ├── nop8.exe │ └── nop9.exe └── hellostealth │ ├── Makefile │ ├── dllmgt.asm │ ├── hashname.py │ ├── macro.asm │ ├── nop.asm │ └── nop.exe ├── bdoor ├── cmdnopol.zip └── reverse_shell.php ├── binpatch.py ├── cleanup.sh ├── configs ├── bashrc ├── gdbinit ├── mc │ ├── ini │ └── panels.ini ├── minirc.dfl ├── rc_ssh ├── tmux.conf └── vimrc ├── cprint.py ├── crytporacle.py ├── cyril_strings.sh ├── decrottePE.py ├── dir2json.py ├── disitool.py ├── entro.py ├── f5discovery.py ├── filetyperipper.py ├── findas.sh ├── findword.py ├── forensic ├── juicy_logs4j.py ├── quantcast-top.txt.gz ├── update_volatility.sh ├── update_yara.sh └── yaraconcat.py ├── git-archive-all.sh ├── har2curlloader.py ├── httpgrab.py ├── httpsvrgar.py ├── httpsvrgar.txt ├── machouillemacro.py ├── malwares ├── backends_detect │ ├── isitkeybase.py │ ├── isitpony.py │ └── readme.txt ├── dcod_zeustr.py ├── de_duke.py ├── decode_msfshellcode.py ├── duke_tsk_tobin.py ├── runshellcode │ ├── Makefile │ ├── runshellcode.c │ └── runshellcode.exe ├── tools_rat.txt ├── un_predator.py ├── unpack_kovterdrop.py └── unpack_runpe.py ├── mzclean.py ├── newpy.py ├── noproxy.sh ├── ntfs_attr.sh ├── ollylink.py ├── parse_msf.py ├── pe2cert.sh ├── peentro.py ├── pescanner.py ├── phpeval.py ├── prettyvba.py ├── rape_string.sh ├── regescape.py ├── ripurl.py ├── ropval.py ├── spoof_tftp_bckp.py ├── strxor.py ├── test_portsec.py ├── xlentro.py ├── xor.py └── xphp.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /C/brute_pass/brut3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/brute_pass/brut3.c -------------------------------------------------------------------------------- /C/brute_pass/hash.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/brute_pass/hash.asm -------------------------------------------------------------------------------- /C/brute_pass/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/brute_pass/makefile -------------------------------------------------------------------------------- /C/brute_pass/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/brute_pass/readme.txt -------------------------------------------------------------------------------- /C/mypacker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/Makefile -------------------------------------------------------------------------------- /C/mypacker/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/hello.c -------------------------------------------------------------------------------- /C/mypacker/loaddll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/loaddll.c -------------------------------------------------------------------------------- /C/mypacker/mypacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/mypacker.py -------------------------------------------------------------------------------- /C/mypacker/obstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/obstrings.py -------------------------------------------------------------------------------- /C/mypacker/runpe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/runpe.cpp -------------------------------------------------------------------------------- /C/mypacker/runpeinc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/runpeinc.asm -------------------------------------------------------------------------------- /C/mypacker/strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/strings.txt -------------------------------------------------------------------------------- /C/mypacker/v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v2/Makefile -------------------------------------------------------------------------------- /C/mypacker/v2/bbcypher.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v2/bbcypher.asm -------------------------------------------------------------------------------- /C/mypacker/v2/dllmgt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v2/dllmgt.asm -------------------------------------------------------------------------------- /C/mypacker/v2/hashname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v2/hashname.py -------------------------------------------------------------------------------- /C/mypacker/v2/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v2/hello.c -------------------------------------------------------------------------------- /C/mypacker/v2/macro.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v2/macro.asm -------------------------------------------------------------------------------- /C/mypacker/v2/nop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v2/nop.asm -------------------------------------------------------------------------------- /C/mypacker/v2/obfpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v2/obfpe.py -------------------------------------------------------------------------------- /C/mypacker/v2/peexec.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v2/peexec.asm -------------------------------------------------------------------------------- /C/mypacker/v2/runpe.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v2/runpe.asm -------------------------------------------------------------------------------- /C/mypacker/v2/runpe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v2/runpe.ico -------------------------------------------------------------------------------- /C/mypacker/v2/runpe.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v2/runpe.rc -------------------------------------------------------------------------------- /C/mypacker/v3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/Makefile -------------------------------------------------------------------------------- /C/mypacker/v3/bbcypher.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/bbcypher.asm -------------------------------------------------------------------------------- /C/mypacker/v3/dllmgt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/dllmgt.asm -------------------------------------------------------------------------------- /C/mypacker/v3/hashname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/hashname.py -------------------------------------------------------------------------------- /C/mypacker/v3/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/hello.c -------------------------------------------------------------------------------- /C/mypacker/v3/macro.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/macro.asm -------------------------------------------------------------------------------- /C/mypacker/v3/nop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/nop.asm -------------------------------------------------------------------------------- /C/mypacker/v3/obfpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/obfpe.py -------------------------------------------------------------------------------- /C/mypacker/v3/peexec.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/peexec.asm -------------------------------------------------------------------------------- /C/mypacker/v3/runpe.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/runpe.asm -------------------------------------------------------------------------------- /C/mypacker/v3/runpe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/runpe.ico -------------------------------------------------------------------------------- /C/mypacker/v3/runpe.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/runpe.rc -------------------------------------------------------------------------------- /C/mypacker/v3/runpesrc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/runpesrc.asm -------------------------------------------------------------------------------- /C/mypacker/v3/structure.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v3/structure.asm -------------------------------------------------------------------------------- /C/mypacker/v4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/.gitignore -------------------------------------------------------------------------------- /C/mypacker/v4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/Makefile -------------------------------------------------------------------------------- /C/mypacker/v4/PaulYmorphe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/PaulYmorphe.py -------------------------------------------------------------------------------- /C/mypacker/v4/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/Readme.txt -------------------------------------------------------------------------------- /C/mypacker/v4/bbcypher.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/bbcypher.asm -------------------------------------------------------------------------------- /C/mypacker/v4/dllmgt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/dllmgt.asm -------------------------------------------------------------------------------- /C/mypacker/v4/hashname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/hashname.py -------------------------------------------------------------------------------- /C/mypacker/v4/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/hello.c -------------------------------------------------------------------------------- /C/mypacker/v4/macro.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/macro.asm -------------------------------------------------------------------------------- /C/mypacker/v4/obfpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/obfpe.py -------------------------------------------------------------------------------- /C/mypacker/v4/peexec.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/peexec.asm -------------------------------------------------------------------------------- /C/mypacker/v4/runpe.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/runpe.asm -------------------------------------------------------------------------------- /C/mypacker/v4/runpe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/runpe.ico -------------------------------------------------------------------------------- /C/mypacker/v4/runpe.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/mypacker/v4/runpe.rc -------------------------------------------------------------------------------- /C/tecamac/bst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/tecamac/bst.c -------------------------------------------------------------------------------- /C/usefonc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/usefonc/Makefile -------------------------------------------------------------------------------- /C/usefonc/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/usefonc/hello.cpp -------------------------------------------------------------------------------- /C/usefonc/query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/usefonc/query.txt -------------------------------------------------------------------------------- /C/usefonc/usefonc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/usefonc/usefonc.asm -------------------------------------------------------------------------------- /C/usefonc/usefonc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/C/usefonc/usefonc.cpp -------------------------------------------------------------------------------- /Docs/radare2_rc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/Docs/radare2_rc.pdf -------------------------------------------------------------------------------- /Docs/radare2_rc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/Docs/radare2_rc.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/README.md -------------------------------------------------------------------------------- /aslr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/aslr -------------------------------------------------------------------------------- /asm/evilnop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/evilnop/Makefile -------------------------------------------------------------------------------- /asm/evilnop/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/evilnop/Readme.txt -------------------------------------------------------------------------------- /asm/evilnop/nop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/evilnop/nop.asm -------------------------------------------------------------------------------- /asm/evilnop/nop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/evilnop/nop.exe -------------------------------------------------------------------------------- /asm/evilnop/nop2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/evilnop/nop2.exe -------------------------------------------------------------------------------- /asm/evilnop/nop3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/evilnop/nop3.exe -------------------------------------------------------------------------------- /asm/evilnop/nop4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/evilnop/nop4.exe -------------------------------------------------------------------------------- /asm/evilnop/nop5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/evilnop/nop5.exe -------------------------------------------------------------------------------- /asm/evilnop/nop6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/evilnop/nop6.exe -------------------------------------------------------------------------------- /asm/evilnop/nop7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/evilnop/nop7.exe -------------------------------------------------------------------------------- /asm/evilnop/nop8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/evilnop/nop8.exe -------------------------------------------------------------------------------- /asm/evilnop/nop9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/evilnop/nop9.exe -------------------------------------------------------------------------------- /asm/hellostealth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/hellostealth/Makefile -------------------------------------------------------------------------------- /asm/hellostealth/dllmgt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/hellostealth/dllmgt.asm -------------------------------------------------------------------------------- /asm/hellostealth/hashname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/hellostealth/hashname.py -------------------------------------------------------------------------------- /asm/hellostealth/macro.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/hellostealth/macro.asm -------------------------------------------------------------------------------- /asm/hellostealth/nop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/hellostealth/nop.asm -------------------------------------------------------------------------------- /asm/hellostealth/nop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/asm/hellostealth/nop.exe -------------------------------------------------------------------------------- /bdoor/cmdnopol.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/bdoor/cmdnopol.zip -------------------------------------------------------------------------------- /bdoor/reverse_shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/bdoor/reverse_shell.php -------------------------------------------------------------------------------- /binpatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/binpatch.py -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/cleanup.sh -------------------------------------------------------------------------------- /configs/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/configs/bashrc -------------------------------------------------------------------------------- /configs/gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/configs/gdbinit -------------------------------------------------------------------------------- /configs/mc/ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/configs/mc/ini -------------------------------------------------------------------------------- /configs/mc/panels.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/configs/mc/panels.ini -------------------------------------------------------------------------------- /configs/minirc.dfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/configs/minirc.dfl -------------------------------------------------------------------------------- /configs/rc_ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/configs/rc_ssh -------------------------------------------------------------------------------- /configs/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/configs/tmux.conf -------------------------------------------------------------------------------- /configs/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/configs/vimrc -------------------------------------------------------------------------------- /cprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/cprint.py -------------------------------------------------------------------------------- /crytporacle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/crytporacle.py -------------------------------------------------------------------------------- /cyril_strings.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | egrep --color -o '([а-яА-Я ]+)' $1 3 | -------------------------------------------------------------------------------- /decrottePE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/decrottePE.py -------------------------------------------------------------------------------- /dir2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/dir2json.py -------------------------------------------------------------------------------- /disitool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/disitool.py -------------------------------------------------------------------------------- /entro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/entro.py -------------------------------------------------------------------------------- /f5discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/f5discovery.py -------------------------------------------------------------------------------- /filetyperipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/filetyperipper.py -------------------------------------------------------------------------------- /findas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/findas.sh -------------------------------------------------------------------------------- /findword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/findword.py -------------------------------------------------------------------------------- /forensic/juicy_logs4j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/forensic/juicy_logs4j.py -------------------------------------------------------------------------------- /forensic/quantcast-top.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/forensic/quantcast-top.txt.gz -------------------------------------------------------------------------------- /forensic/update_volatility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/forensic/update_volatility.sh -------------------------------------------------------------------------------- /forensic/update_yara.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/forensic/update_yara.sh -------------------------------------------------------------------------------- /forensic/yaraconcat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/forensic/yaraconcat.py -------------------------------------------------------------------------------- /git-archive-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/git-archive-all.sh -------------------------------------------------------------------------------- /har2curlloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/har2curlloader.py -------------------------------------------------------------------------------- /httpgrab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/httpgrab.py -------------------------------------------------------------------------------- /httpsvrgar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/httpsvrgar.py -------------------------------------------------------------------------------- /httpsvrgar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/httpsvrgar.txt -------------------------------------------------------------------------------- /machouillemacro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/machouillemacro.py -------------------------------------------------------------------------------- /malwares/backends_detect/isitkeybase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/backends_detect/isitkeybase.py -------------------------------------------------------------------------------- /malwares/backends_detect/isitpony.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/backends_detect/isitpony.py -------------------------------------------------------------------------------- /malwares/backends_detect/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/backends_detect/readme.txt -------------------------------------------------------------------------------- /malwares/dcod_zeustr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/dcod_zeustr.py -------------------------------------------------------------------------------- /malwares/de_duke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/de_duke.py -------------------------------------------------------------------------------- /malwares/decode_msfshellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/decode_msfshellcode.py -------------------------------------------------------------------------------- /malwares/duke_tsk_tobin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/duke_tsk_tobin.py -------------------------------------------------------------------------------- /malwares/runshellcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/runshellcode/Makefile -------------------------------------------------------------------------------- /malwares/runshellcode/runshellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/runshellcode/runshellcode.c -------------------------------------------------------------------------------- /malwares/runshellcode/runshellcode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/runshellcode/runshellcode.exe -------------------------------------------------------------------------------- /malwares/tools_rat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/tools_rat.txt -------------------------------------------------------------------------------- /malwares/un_predator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/un_predator.py -------------------------------------------------------------------------------- /malwares/unpack_kovterdrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/unpack_kovterdrop.py -------------------------------------------------------------------------------- /malwares/unpack_runpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/malwares/unpack_runpe.py -------------------------------------------------------------------------------- /mzclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/mzclean.py -------------------------------------------------------------------------------- /newpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/newpy.py -------------------------------------------------------------------------------- /noproxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/noproxy.sh -------------------------------------------------------------------------------- /ntfs_attr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/ntfs_attr.sh -------------------------------------------------------------------------------- /ollylink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/ollylink.py -------------------------------------------------------------------------------- /parse_msf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/parse_msf.py -------------------------------------------------------------------------------- /pe2cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/pe2cert.sh -------------------------------------------------------------------------------- /peentro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/peentro.py -------------------------------------------------------------------------------- /pescanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/pescanner.py -------------------------------------------------------------------------------- /phpeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/phpeval.py -------------------------------------------------------------------------------- /prettyvba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/prettyvba.py -------------------------------------------------------------------------------- /rape_string.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/rape_string.sh -------------------------------------------------------------------------------- /regescape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/regescape.py -------------------------------------------------------------------------------- /ripurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/ripurl.py -------------------------------------------------------------------------------- /ropval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/ropval.py -------------------------------------------------------------------------------- /spoof_tftp_bckp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/spoof_tftp_bckp.py -------------------------------------------------------------------------------- /strxor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/strxor.py -------------------------------------------------------------------------------- /test_portsec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/test_portsec.py -------------------------------------------------------------------------------- /xlentro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/xlentro.py -------------------------------------------------------------------------------- /xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/xor.py -------------------------------------------------------------------------------- /xphp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Th4nat0s/Chall_Tools/HEAD/xphp.py --------------------------------------------------------------------------------