├── .gitignore ├── DotNet ├── App.config ├── DotNet.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── FunctionTest ├── FunctionTest.cpp ├── FunctionTest.vcxproj ├── FunctionTest.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── LICENSE ├── Native ├── Loader.cpp ├── Native.vcxproj ├── Native.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── PowerShell ├── ConvertTo-Shellcode.ps1 └── Invoke-Shellcode.ps1 ├── Python ├── ConvertToShellcode.py ├── Python.pyproj └── ShellcodeRDI.py ├── README.md ├── ShellcodeRDI.sln ├── ShellcodeRDI ├── GetProcAddressWithHash.h ├── ShellcodeRDI.c ├── ShellcodeRDI.vcxproj ├── ShellcodeRDI.vcxproj.filters └── function_link_order.txt ├── TestDLL ├── Resource.rc ├── TestDLL.vcxproj ├── TestDLL.vcxproj.filters ├── dllmain.cpp └── resource.h ├── bin └── .gitignore └── lib ├── PowerShell ├── Get-FunctionHash.ps1 ├── Get-LibSymbols.ps1 ├── Get-ObjDump.format.ps1xml ├── Get-PEHeader.ps1 └── Out-Shellcode.ps1 └── Python ├── EncodeBlobs.py └── FunctionToHash.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/.gitignore -------------------------------------------------------------------------------- /DotNet/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/DotNet/App.config -------------------------------------------------------------------------------- /DotNet/DotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/DotNet/DotNet.csproj -------------------------------------------------------------------------------- /DotNet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/DotNet/Program.cs -------------------------------------------------------------------------------- /DotNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/DotNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FunctionTest/FunctionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/FunctionTest/FunctionTest.cpp -------------------------------------------------------------------------------- /FunctionTest/FunctionTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/FunctionTest/FunctionTest.vcxproj -------------------------------------------------------------------------------- /FunctionTest/FunctionTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/FunctionTest/FunctionTest.vcxproj.filters -------------------------------------------------------------------------------- /FunctionTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/FunctionTest/stdafx.cpp -------------------------------------------------------------------------------- /FunctionTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/FunctionTest/stdafx.h -------------------------------------------------------------------------------- /FunctionTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/FunctionTest/targetver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/LICENSE -------------------------------------------------------------------------------- /Native/Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/Native/Loader.cpp -------------------------------------------------------------------------------- /Native/Native.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/Native/Native.vcxproj -------------------------------------------------------------------------------- /Native/Native.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/Native/Native.vcxproj.filters -------------------------------------------------------------------------------- /Native/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/Native/stdafx.cpp -------------------------------------------------------------------------------- /Native/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/Native/stdafx.h -------------------------------------------------------------------------------- /Native/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/Native/targetver.h -------------------------------------------------------------------------------- /PowerShell/ConvertTo-Shellcode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/PowerShell/ConvertTo-Shellcode.ps1 -------------------------------------------------------------------------------- /PowerShell/Invoke-Shellcode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/PowerShell/Invoke-Shellcode.ps1 -------------------------------------------------------------------------------- /Python/ConvertToShellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/Python/ConvertToShellcode.py -------------------------------------------------------------------------------- /Python/Python.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/Python/Python.pyproj -------------------------------------------------------------------------------- /Python/ShellcodeRDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/Python/ShellcodeRDI.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/README.md -------------------------------------------------------------------------------- /ShellcodeRDI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/ShellcodeRDI.sln -------------------------------------------------------------------------------- /ShellcodeRDI/GetProcAddressWithHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/ShellcodeRDI/GetProcAddressWithHash.h -------------------------------------------------------------------------------- /ShellcodeRDI/ShellcodeRDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/ShellcodeRDI/ShellcodeRDI.c -------------------------------------------------------------------------------- /ShellcodeRDI/ShellcodeRDI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/ShellcodeRDI/ShellcodeRDI.vcxproj -------------------------------------------------------------------------------- /ShellcodeRDI/ShellcodeRDI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/ShellcodeRDI/ShellcodeRDI.vcxproj.filters -------------------------------------------------------------------------------- /ShellcodeRDI/function_link_order.txt: -------------------------------------------------------------------------------- 1 | LoadDLL 2 | GetProcAddressWithHash -------------------------------------------------------------------------------- /TestDLL/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/TestDLL/Resource.rc -------------------------------------------------------------------------------- /TestDLL/TestDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/TestDLL/TestDLL.vcxproj -------------------------------------------------------------------------------- /TestDLL/TestDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/TestDLL/TestDLL.vcxproj.filters -------------------------------------------------------------------------------- /TestDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/TestDLL/dllmain.cpp -------------------------------------------------------------------------------- /TestDLL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/TestDLL/resource.h -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/bin/.gitignore -------------------------------------------------------------------------------- /lib/PowerShell/Get-FunctionHash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/lib/PowerShell/Get-FunctionHash.ps1 -------------------------------------------------------------------------------- /lib/PowerShell/Get-LibSymbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/lib/PowerShell/Get-LibSymbols.ps1 -------------------------------------------------------------------------------- /lib/PowerShell/Get-ObjDump.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/lib/PowerShell/Get-ObjDump.format.ps1xml -------------------------------------------------------------------------------- /lib/PowerShell/Get-PEHeader.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/lib/PowerShell/Get-PEHeader.ps1 -------------------------------------------------------------------------------- /lib/PowerShell/Out-Shellcode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/lib/PowerShell/Out-Shellcode.ps1 -------------------------------------------------------------------------------- /lib/Python/EncodeBlobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/lib/Python/EncodeBlobs.py -------------------------------------------------------------------------------- /lib/Python/FunctionToHash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoxgas/sRDI/HEAD/lib/Python/FunctionToHash.py --------------------------------------------------------------------------------