├── .gitignore ├── DreamWalkers.py ├── README.md ├── bin ├── goodClr.dll └── memorymodule_exe_x64.h ├── common ├── PEstructs.h ├── instance.h ├── peb.h └── winapi.h ├── compile.bat ├── dotnetLoader ├── AssemblyManager.cpp ├── AssemblyManager.hpp ├── AssemblyStore.cpp ├── AssemblyStore.hpp ├── DotnetExec.cpp ├── DotnetExec.hpp ├── HostControl.cpp ├── HostControl.hpp ├── HostMalloc.cpp ├── HostMalloc.hpp ├── MemoryManager.cpp ├── MemoryManager.hpp ├── bin │ └── .gitignore ├── compile.bat └── mscorlib.tlh ├── exe2h ├── bin │ └── .gitignore ├── compile.bat ├── exe2h.c ├── mmap-windows.c └── mmap.h ├── images ├── CleanStack.png ├── WithoutMS.png ├── WithoutRtlAddFunctionTable.png └── WithoutSpoofing.png ├── memoryModule ├── Structs.h ├── bin │ └── .gitignore ├── compile.bat ├── helpers.c ├── helpers.h ├── memoryModule.c ├── memoryModule.h ├── order.txt └── test.asm ├── shellcodeTester ├── bin │ └── .gitignore ├── compile.bat └── shellcodeTester.cpp ├── testDll ├── bin │ └── .gitignore ├── compile.bat ├── implantDLL.cpp └── implantDLL.def └── testExe ├── bin └── .gitignore ├── compile.bat └── implant.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/.gitignore -------------------------------------------------------------------------------- /DreamWalkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/DreamWalkers.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/README.md -------------------------------------------------------------------------------- /bin/goodClr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/bin/goodClr.dll -------------------------------------------------------------------------------- /bin/memorymodule_exe_x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/bin/memorymodule_exe_x64.h -------------------------------------------------------------------------------- /common/PEstructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/common/PEstructs.h -------------------------------------------------------------------------------- /common/instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/common/instance.h -------------------------------------------------------------------------------- /common/peb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/common/peb.h -------------------------------------------------------------------------------- /common/winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/common/winapi.h -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/compile.bat -------------------------------------------------------------------------------- /dotnetLoader/AssemblyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/AssemblyManager.cpp -------------------------------------------------------------------------------- /dotnetLoader/AssemblyManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/AssemblyManager.hpp -------------------------------------------------------------------------------- /dotnetLoader/AssemblyStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/AssemblyStore.cpp -------------------------------------------------------------------------------- /dotnetLoader/AssemblyStore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/AssemblyStore.hpp -------------------------------------------------------------------------------- /dotnetLoader/DotnetExec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/DotnetExec.cpp -------------------------------------------------------------------------------- /dotnetLoader/DotnetExec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/DotnetExec.hpp -------------------------------------------------------------------------------- /dotnetLoader/HostControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/HostControl.cpp -------------------------------------------------------------------------------- /dotnetLoader/HostControl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/HostControl.hpp -------------------------------------------------------------------------------- /dotnetLoader/HostMalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/HostMalloc.cpp -------------------------------------------------------------------------------- /dotnetLoader/HostMalloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/HostMalloc.hpp -------------------------------------------------------------------------------- /dotnetLoader/MemoryManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/MemoryManager.cpp -------------------------------------------------------------------------------- /dotnetLoader/MemoryManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/MemoryManager.hpp -------------------------------------------------------------------------------- /dotnetLoader/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dotnetLoader/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/compile.bat -------------------------------------------------------------------------------- /dotnetLoader/mscorlib.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/dotnetLoader/mscorlib.tlh -------------------------------------------------------------------------------- /exe2h/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exe2h/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/exe2h/compile.bat -------------------------------------------------------------------------------- /exe2h/exe2h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/exe2h/exe2h.c -------------------------------------------------------------------------------- /exe2h/mmap-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/exe2h/mmap-windows.c -------------------------------------------------------------------------------- /exe2h/mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/exe2h/mmap.h -------------------------------------------------------------------------------- /images/CleanStack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/images/CleanStack.png -------------------------------------------------------------------------------- /images/WithoutMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/images/WithoutMS.png -------------------------------------------------------------------------------- /images/WithoutRtlAddFunctionTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/images/WithoutRtlAddFunctionTable.png -------------------------------------------------------------------------------- /images/WithoutSpoofing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/images/WithoutSpoofing.png -------------------------------------------------------------------------------- /memoryModule/Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/memoryModule/Structs.h -------------------------------------------------------------------------------- /memoryModule/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /memoryModule/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/memoryModule/compile.bat -------------------------------------------------------------------------------- /memoryModule/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/memoryModule/helpers.c -------------------------------------------------------------------------------- /memoryModule/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/memoryModule/helpers.h -------------------------------------------------------------------------------- /memoryModule/memoryModule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/memoryModule/memoryModule.c -------------------------------------------------------------------------------- /memoryModule/memoryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/memoryModule/memoryModule.h -------------------------------------------------------------------------------- /memoryModule/order.txt: -------------------------------------------------------------------------------- 1 | Loader -------------------------------------------------------------------------------- /memoryModule/test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/memoryModule/test.asm -------------------------------------------------------------------------------- /shellcodeTester/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shellcodeTester/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/shellcodeTester/compile.bat -------------------------------------------------------------------------------- /shellcodeTester/shellcodeTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/shellcodeTester/shellcodeTester.cpp -------------------------------------------------------------------------------- /testDll/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testDll/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/testDll/compile.bat -------------------------------------------------------------------------------- /testDll/implantDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/testDll/implantDLL.cpp -------------------------------------------------------------------------------- /testDll/implantDLL.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/testDll/implantDLL.def -------------------------------------------------------------------------------- /testExe/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testExe/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/testExe/compile.bat -------------------------------------------------------------------------------- /testExe/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/DreamWalkers/HEAD/testExe/implant.cpp --------------------------------------------------------------------------------