├── .gitignore ├── BadChars ├── BadCharConverter.py ├── Converter.py └── bad-chars-lookup-table.py ├── Converters ├── asm2hex.py ├── bin2hex.py ├── hex2bin.py └── shellcode2bin.py ├── Encoders ├── XORCrypter.py ├── XORFuscate │ ├── decoder.asm │ ├── egg.bin │ ├── gethex.py │ ├── shellcode │ ├── shellcode.bin │ └── xorfuscator.py ├── customencoder.py ├── eax_sub_encoder.py ├── encshell.py └── xorshellcode.py ├── Exploits ├── AllPlayer-5.6.2 │ └── exploit.py ├── DEP-ASLR-ROP │ ├── EFWS │ │ └── fuzz.py │ └── M3U │ │ ├── exploit-save.py │ │ └── exploit.py ├── Ken │ └── exploit.py ├── M3U │ ├── .DS_Store │ └── exploit.py ├── QuickZip │ └── exploit.py ├── Triologic │ └── exploit.py └── VulnServer │ ├── GMON │ └── exploit.py │ ├── GTER-Omelette │ └── exploit.py │ ├── GTER │ ├── exploit.py │ └── store.py │ └── TRUN │ └── exploit.py ├── Notes ├── backdoornotes.txt └── xornotes.txt ├── Payloads ├── shellcode ├── winbind.py ├── wincmd.py ├── winexec.py ├── winrev.py ├── winreverse.py ├── winrevshell.py ├── winshellexec.py └── winsystem.py ├── README.md ├── Scripts ├── badchars.py ├── calc_memory.sh ├── find-safe-address.py ├── jmpcalc.py ├── mona2.py ├── mona3.py └── two-comp.py └── Utilities ├── asm2hex.py ├── egghunter.py ├── find-pop-pop-ret.py ├── find-safe-address.py ├── findptr.py ├── memory-space-calc.py ├── mona-modules-helper.py ├── mona-modules.txt ├── port-converter.py └── shellcode2bin.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /BadChars/BadCharConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/BadChars/BadCharConverter.py -------------------------------------------------------------------------------- /BadChars/Converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/BadChars/Converter.py -------------------------------------------------------------------------------- /BadChars/bad-chars-lookup-table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/BadChars/bad-chars-lookup-table.py -------------------------------------------------------------------------------- /Converters/asm2hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Converters/asm2hex.py -------------------------------------------------------------------------------- /Converters/bin2hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Converters/bin2hex.py -------------------------------------------------------------------------------- /Converters/hex2bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Converters/hex2bin.py -------------------------------------------------------------------------------- /Converters/shellcode2bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Converters/shellcode2bin.py -------------------------------------------------------------------------------- /Encoders/XORCrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Encoders/XORCrypter.py -------------------------------------------------------------------------------- /Encoders/XORFuscate/decoder.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Encoders/XORFuscate/decoder.asm -------------------------------------------------------------------------------- /Encoders/XORFuscate/egg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Encoders/XORFuscate/egg.bin -------------------------------------------------------------------------------- /Encoders/XORFuscate/gethex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Encoders/XORFuscate/gethex.py -------------------------------------------------------------------------------- /Encoders/XORFuscate/shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Encoders/XORFuscate/shellcode -------------------------------------------------------------------------------- /Encoders/XORFuscate/shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Encoders/XORFuscate/shellcode.bin -------------------------------------------------------------------------------- /Encoders/XORFuscate/xorfuscator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Encoders/XORFuscate/xorfuscator.py -------------------------------------------------------------------------------- /Encoders/customencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Encoders/customencoder.py -------------------------------------------------------------------------------- /Encoders/eax_sub_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Encoders/eax_sub_encoder.py -------------------------------------------------------------------------------- /Encoders/encshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Encoders/encshell.py -------------------------------------------------------------------------------- /Encoders/xorshellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Encoders/xorshellcode.py -------------------------------------------------------------------------------- /Exploits/AllPlayer-5.6.2/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/AllPlayer-5.6.2/exploit.py -------------------------------------------------------------------------------- /Exploits/DEP-ASLR-ROP/EFWS/fuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/DEP-ASLR-ROP/EFWS/fuzz.py -------------------------------------------------------------------------------- /Exploits/DEP-ASLR-ROP/M3U/exploit-save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/DEP-ASLR-ROP/M3U/exploit-save.py -------------------------------------------------------------------------------- /Exploits/DEP-ASLR-ROP/M3U/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/DEP-ASLR-ROP/M3U/exploit.py -------------------------------------------------------------------------------- /Exploits/Ken/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/Ken/exploit.py -------------------------------------------------------------------------------- /Exploits/M3U/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/M3U/.DS_Store -------------------------------------------------------------------------------- /Exploits/M3U/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/M3U/exploit.py -------------------------------------------------------------------------------- /Exploits/QuickZip/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/QuickZip/exploit.py -------------------------------------------------------------------------------- /Exploits/Triologic/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/Triologic/exploit.py -------------------------------------------------------------------------------- /Exploits/VulnServer/GMON/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/VulnServer/GMON/exploit.py -------------------------------------------------------------------------------- /Exploits/VulnServer/GTER-Omelette/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/VulnServer/GTER-Omelette/exploit.py -------------------------------------------------------------------------------- /Exploits/VulnServer/GTER/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/VulnServer/GTER/exploit.py -------------------------------------------------------------------------------- /Exploits/VulnServer/GTER/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/VulnServer/GTER/store.py -------------------------------------------------------------------------------- /Exploits/VulnServer/TRUN/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Exploits/VulnServer/TRUN/exploit.py -------------------------------------------------------------------------------- /Notes/backdoornotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Notes/backdoornotes.txt -------------------------------------------------------------------------------- /Notes/xornotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Notes/xornotes.txt -------------------------------------------------------------------------------- /Payloads/shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Payloads/shellcode -------------------------------------------------------------------------------- /Payloads/winbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Payloads/winbind.py -------------------------------------------------------------------------------- /Payloads/wincmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Payloads/wincmd.py -------------------------------------------------------------------------------- /Payloads/winexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Payloads/winexec.py -------------------------------------------------------------------------------- /Payloads/winrev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Payloads/winrev.py -------------------------------------------------------------------------------- /Payloads/winreverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Payloads/winreverse.py -------------------------------------------------------------------------------- /Payloads/winrevshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Payloads/winrevshell.py -------------------------------------------------------------------------------- /Payloads/winshellexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Payloads/winshellexec.py -------------------------------------------------------------------------------- /Payloads/winsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Payloads/winsystem.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/badchars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Scripts/badchars.py -------------------------------------------------------------------------------- /Scripts/calc_memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Scripts/calc_memory.sh -------------------------------------------------------------------------------- /Scripts/find-safe-address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Scripts/find-safe-address.py -------------------------------------------------------------------------------- /Scripts/jmpcalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Scripts/jmpcalc.py -------------------------------------------------------------------------------- /Scripts/mona2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Scripts/mona2.py -------------------------------------------------------------------------------- /Scripts/mona3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Scripts/mona3.py -------------------------------------------------------------------------------- /Scripts/two-comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Scripts/two-comp.py -------------------------------------------------------------------------------- /Utilities/asm2hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Utilities/asm2hex.py -------------------------------------------------------------------------------- /Utilities/egghunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Utilities/egghunter.py -------------------------------------------------------------------------------- /Utilities/find-pop-pop-ret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Utilities/find-pop-pop-ret.py -------------------------------------------------------------------------------- /Utilities/find-safe-address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Utilities/find-safe-address.py -------------------------------------------------------------------------------- /Utilities/findptr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Utilities/findptr.py -------------------------------------------------------------------------------- /Utilities/memory-space-calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Utilities/memory-space-calc.py -------------------------------------------------------------------------------- /Utilities/mona-modules-helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Utilities/mona-modules-helper.py -------------------------------------------------------------------------------- /Utilities/mona-modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Utilities/mona-modules.txt -------------------------------------------------------------------------------- /Utilities/port-converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Utilities/port-converter.py -------------------------------------------------------------------------------- /Utilities/shellcode2bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaidf/OSCE/HEAD/Utilities/shellcode2bin.py --------------------------------------------------------------------------------