├── README.md ├── shellcodeReplace.sln └── shellcodeReplace ├── replace.cpp ├── replace.h ├── shellcodeLoader.cpp ├── shellcodeReplace.vcxproj ├── shellcodeReplace.vcxproj.filters ├── shellcodeReplace.vcxproj.user ├── transfer.cpp ├── transfer.h ├── undoReplace.cpp ├── undoReplace.h └── x64 ├── Debug ├── replace.obj ├── shellcodeLoader.obj ├── shellcodeReplace.Build.CppClean.log ├── shellcodeReplace.exe.recipe ├── shellcodeReplace.ilk ├── shellcodeReplace.log ├── shellcodeReplace.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── shellcodeReplace.lastbuildstate ├── shellcodeReplace.vcxproj.FileListAbsolute.txt ├── transfer.obj ├── undoReplace.obj ├── vc143.idb └── vc143.pdb └── Release ├── replace.obj ├── shellcodeLoader.obj ├── shellcodeReplace.Build.CppClean.log ├── shellcodeReplace.exe.recipe ├── shellcodeReplace.iobj ├── shellcodeReplace.ipdb ├── shellcodeReplace.log ├── shellcodeReplace.tlog ├── CL.command.1.tlog ├── CL.read.1.tlog ├── CL.write.1.tlog ├── link.command.1.tlog ├── link.read.1.tlog ├── link.write.1.tlog └── shellcodeReplace.lastbuildstate ├── shellcodeReplace.vcxproj.FileListAbsolute.txt ├── transfer.obj ├── undoReplace.obj └── vc143.pdb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/README.md -------------------------------------------------------------------------------- /shellcodeReplace.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace.sln -------------------------------------------------------------------------------- /shellcodeReplace/replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/replace.cpp -------------------------------------------------------------------------------- /shellcodeReplace/replace.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | void replaceShellcode(); -------------------------------------------------------------------------------- /shellcodeReplace/shellcodeLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/shellcodeLoader.cpp -------------------------------------------------------------------------------- /shellcodeReplace/shellcodeReplace.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/shellcodeReplace.vcxproj -------------------------------------------------------------------------------- /shellcodeReplace/shellcodeReplace.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/shellcodeReplace.vcxproj.filters -------------------------------------------------------------------------------- /shellcodeReplace/shellcodeReplace.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/shellcodeReplace.vcxproj.user -------------------------------------------------------------------------------- /shellcodeReplace/transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/transfer.cpp -------------------------------------------------------------------------------- /shellcodeReplace/transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/transfer.h -------------------------------------------------------------------------------- /shellcodeReplace/undoReplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/undoReplace.cpp -------------------------------------------------------------------------------- /shellcodeReplace/undoReplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/undoReplace.h -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/replace.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/replace.obj -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/shellcodeLoader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/shellcodeLoader.obj -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/shellcodeReplace.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/shellcodeReplace.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/shellcodeReplace.exe.recipe -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/shellcodeReplace.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/shellcodeReplace.ilk -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/shellcodeReplace.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/shellcodeReplace.log -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/shellcodeReplace.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/shellcodeReplace.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/shellcodeReplace.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/shellcodeReplace.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/shellcodeReplace.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/shellcodeReplace.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/shellcodeReplace.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/shellcodeReplace.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/shellcodeReplace.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/shellcodeReplace.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/shellcodeReplace.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/shellcodeReplace.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/shellcodeReplace.tlog/shellcodeReplace.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/shellcodeReplace.tlog/shellcodeReplace.lastbuildstate -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/shellcodeReplace.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/transfer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/transfer.obj -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/undoReplace.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/undoReplace.obj -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/vc143.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/vc143.idb -------------------------------------------------------------------------------- /shellcodeReplace/x64/Debug/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Debug/vc143.pdb -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/replace.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/replace.obj -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeLoader.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/shellcodeLoader.obj -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeReplace.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeReplace.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/shellcodeReplace.exe.recipe -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeReplace.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/shellcodeReplace.iobj -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeReplace.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/shellcodeReplace.ipdb -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeReplace.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/shellcodeReplace.log -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeReplace.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/shellcodeReplace.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeReplace.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/shellcodeReplace.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeReplace.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/shellcodeReplace.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeReplace.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/shellcodeReplace.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeReplace.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/shellcodeReplace.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeReplace.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/shellcodeReplace.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeReplace.tlog/shellcodeReplace.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/shellcodeReplace.tlog/shellcodeReplace.lastbuildstate -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/shellcodeReplace.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/transfer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/transfer.obj -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/undoReplace.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/undoReplace.obj -------------------------------------------------------------------------------- /shellcodeReplace/x64/Release/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4nbird/shellcode_entropy_less/HEAD/shellcodeReplace/x64/Release/vc143.pdb --------------------------------------------------------------------------------