├── .gitignore ├── Licence ├── README.md ├── Shellcode_Generator_Demo ├── ShellCode2BOF │ ├── BOF.c │ ├── BOF.obj │ ├── ShellCode2BOF.cpp │ ├── ShellCode2BOF.exe │ ├── ShellCode2BOF.vcxproj │ ├── ShellCode2BOF.vcxproj.filters │ ├── ShellCode2BOF.vcxproj.user │ └── beacon.h ├── Shellcode_Generator_Demo.sln ├── Shellcode_Generator_Demo │ ├── Shellcode_Generator_Demo.c │ ├── Shellcode_Generator_Demo.vcxproj │ ├── Shellcode_Generator_Demo.vcxproj.filters │ ├── Shellcode_Generator_Demo.vcxproj.user │ ├── beacon.c │ ├── beacon.h │ └── demo.c └── runShellcode │ ├── runShellcode.cpp │ ├── runShellcode.vcxproj │ ├── runShellcode.vcxproj.filters │ └── runShellcode.vcxproj.user ├── example ├── regOperate.bin ├── regOperate.idb └── regOperate.txt ├── ida_shellcode_generator.py └── res ├── bof.gif ├── bypass_360.gif ├── img1.jpg ├── img2.jpg ├── img3.jpg └── screenshots.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /Licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Licence -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/README.md -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/ShellCode2BOF/BOF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/ShellCode2BOF/BOF.c -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/ShellCode2BOF/BOF.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/ShellCode2BOF/BOF.obj -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/ShellCode2BOF/ShellCode2BOF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/ShellCode2BOF/ShellCode2BOF.cpp -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/ShellCode2BOF/ShellCode2BOF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/ShellCode2BOF/ShellCode2BOF.exe -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/ShellCode2BOF/ShellCode2BOF.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/ShellCode2BOF/ShellCode2BOF.vcxproj -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/ShellCode2BOF/ShellCode2BOF.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/ShellCode2BOF/ShellCode2BOF.vcxproj.filters -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/ShellCode2BOF/ShellCode2BOF.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/ShellCode2BOF/ShellCode2BOF.vcxproj.user -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/ShellCode2BOF/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/ShellCode2BOF/beacon.h -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/Shellcode_Generator_Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/Shellcode_Generator_Demo.sln -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/Shellcode_Generator_Demo/Shellcode_Generator_Demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/Shellcode_Generator_Demo/Shellcode_Generator_Demo.c -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/Shellcode_Generator_Demo/Shellcode_Generator_Demo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/Shellcode_Generator_Demo/Shellcode_Generator_Demo.vcxproj -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/Shellcode_Generator_Demo/Shellcode_Generator_Demo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/Shellcode_Generator_Demo/Shellcode_Generator_Demo.vcxproj.filters -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/Shellcode_Generator_Demo/Shellcode_Generator_Demo.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/Shellcode_Generator_Demo/Shellcode_Generator_Demo.vcxproj.user -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/Shellcode_Generator_Demo/beacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/Shellcode_Generator_Demo/beacon.c -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/Shellcode_Generator_Demo/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/Shellcode_Generator_Demo/beacon.h -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/Shellcode_Generator_Demo/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/Shellcode_Generator_Demo/demo.c -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/runShellcode/runShellcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/runShellcode/runShellcode.cpp -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/runShellcode/runShellcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/runShellcode/runShellcode.vcxproj -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/runShellcode/runShellcode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/runShellcode/runShellcode.vcxproj.filters -------------------------------------------------------------------------------- /Shellcode_Generator_Demo/runShellcode/runShellcode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/Shellcode_Generator_Demo/runShellcode/runShellcode.vcxproj.user -------------------------------------------------------------------------------- /example/regOperate.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/example/regOperate.bin -------------------------------------------------------------------------------- /example/regOperate.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/example/regOperate.idb -------------------------------------------------------------------------------- /example/regOperate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/example/regOperate.txt -------------------------------------------------------------------------------- /ida_shellcode_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/ida_shellcode_generator.py -------------------------------------------------------------------------------- /res/bof.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/res/bof.gif -------------------------------------------------------------------------------- /res/bypass_360.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/res/bypass_360.gif -------------------------------------------------------------------------------- /res/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/res/img1.jpg -------------------------------------------------------------------------------- /res/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/res/img2.jpg -------------------------------------------------------------------------------- /res/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/res/img3.jpg -------------------------------------------------------------------------------- /res/screenshots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-Maoku/Shellcode_Generator/HEAD/res/screenshots.gif --------------------------------------------------------------------------------