├── .gitignore ├── BlockingDLL ├── BlockingDLL.sln ├── BlockingDLLProcessSpawn │ ├── App.config │ ├── BlockingDLLProcessSpawn.cs │ ├── BlockingDLLProcessSpawn.csproj │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ ├── Interop │ │ ├── NativeMethods.cs │ │ ├── Win32Consts.cs │ │ ├── Win32Enums.cs │ │ └── Win32Structs.cs │ ├── Library │ │ ├── Helpers.cs │ │ └── Modules.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DLLInjector │ ├── App.config │ ├── DLLInjector.cs │ ├── DLLInjector.csproj │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ ├── Interop │ │ ├── DelegateTypes.cs │ │ ├── NativeMethods.cs │ │ ├── Win32Enums.cs │ │ └── Win32Structs.cs │ ├── Library │ │ ├── Helpers.cs │ │ └── Modules.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── InjectLib │ ├── InjectLib.vcxproj │ ├── InjectLib.vcxproj.filters │ ├── InjectLib.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── README.md ├── RemoteCodeInjector │ ├── App.config │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ ├── Interop │ │ ├── DelegateTypes.cs │ │ ├── NativeMethods.cs │ │ └── Win32Enums.cs │ ├── Library │ │ ├── Helpers.cs │ │ └── Modules.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RemoteCodeInjector.cs │ └── RemoteCodeInjector.csproj ├── SelfDefend │ ├── App.config │ ├── Interop │ │ ├── NativeMethods.cs │ │ ├── Win32Enums.cs │ │ └── Win32Structs.cs │ ├── Library │ │ └── Helpers.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SelfDefend.cs │ └── SelfDefend.csproj └── figures │ ├── 1-dllinjection.png │ └── 2-processhacker.png ├── CloneProcess ├── CloneProcess.sln ├── README.md ├── RemoteForking │ ├── App.config │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ ├── Interop │ │ ├── NativeMethods.cs │ │ ├── Win32Consts.cs │ │ ├── Win32Enums.cs │ │ └── Win32Structs.cs │ ├── Library │ │ ├── Helpers.cs │ │ ├── Modules.cs │ │ └── Utilities.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RemoteForking.cs │ └── RemoteForking.csproj ├── SnapshotDump │ ├── App.config │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ ├── Interop │ │ ├── NativeMethods.cs │ │ ├── Win32Consts.cs │ │ ├── Win32Enums.cs │ │ └── Win32Structs.cs │ ├── Library │ │ ├── Helpers.cs │ │ ├── Modules.cs │ │ └── Utilities.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SnapshotDump.cs │ └── SnapshotDump.csproj └── figures │ └── RemoteForking.png ├── CommandLineSpoofing ├── CommandLineSpoofing.sln └── CommandLineSpoofing │ ├── App.config │ ├── CommandLineSpoofing.cs │ ├── CommandLineSpoofing.csproj │ ├── Handler │ ├── CommandLineParser.cs │ └── Execute.cs │ ├── Interop │ ├── NativeMethods.cs │ ├── Win32Consts.cs │ ├── Win32Enums.cs │ └── Win32Structs.cs │ ├── Library │ ├── Helpers.cs │ ├── Modules.cs │ ├── PeFile.cs │ └── Utilities.cs │ └── Properties │ └── AssemblyInfo.cs ├── DarkLoadLibrary ├── DarkLibraryLoader │ ├── App.config │ ├── DarkLibraryLoader.cs │ ├── DarkLibraryLoader.csproj │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ ├── Interop │ │ ├── DelegateTypes.cs │ │ ├── NativeMethods.cs │ │ ├── Win32Consts.cs │ │ ├── Win32Enums.cs │ │ └── Win32Structs.cs │ ├── Library │ │ ├── Helpers.cs │ │ ├── Modules.cs │ │ └── Utilities.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DarkLoadLibrary.sln ├── README.md ├── TestLib │ ├── TestLib.vcxproj │ ├── TestLib.vcxproj.filters │ ├── TestLib.vcxproj.user │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h └── figures │ └── DarkLoadLibrary.png ├── GhostlyHollowing ├── GhostlyHollowing.sln └── GhostlyHollowing │ ├── App.config │ ├── GhostlyHollowing.cs │ ├── GhostlyHollowing.csproj │ ├── Handler │ ├── CommandLineParser.cs │ └── Execute.cs │ ├── Interop │ ├── NativeMethods.cs │ ├── Win32Consts.cs │ ├── Win32Enums.cs │ └── Win32Structs.cs │ ├── Library │ ├── Helpers.cs │ ├── Modules.cs │ ├── PeFile.cs │ └── Utilities.cs │ └── Properties │ └── AssemblyInfo.cs ├── LICENSE ├── Misc ├── CalcRor13Hash │ ├── CalcRor13Hash.sln │ └── CalcRor13Hash │ │ ├── App.config │ │ ├── CalcRor13Hash.cs │ │ ├── CalcRor13Hash.csproj │ │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ │ ├── Library │ │ └── Helpers.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── EaDumper │ ├── EaDumper.sln │ └── EaDumper │ │ ├── App.config │ │ ├── EaDumper.cs │ │ ├── EaDumper.csproj │ │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ │ ├── Interop │ │ ├── NativeMethods.cs │ │ ├── Win32Consts.cs │ │ ├── Win32Enums.cs │ │ └── Win32Structs.cs │ │ ├── Library │ │ ├── Helpers.cs │ │ ├── HexDump.cs │ │ └── Modules.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── HandleScanner │ ├── HandleScanner.sln │ └── HandleScanner │ │ ├── App.config │ │ ├── HandleScanner.cs │ │ ├── HandleScanner.csproj │ │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ │ ├── Interop │ │ ├── NativeMethods.cs │ │ ├── Win32Consts.cs │ │ ├── Win32Enums.cs │ │ └── Win32Structs.cs │ │ ├── Library │ │ ├── Globals.cs │ │ ├── Helpers.cs │ │ ├── Modules.cs │ │ └── Utilities.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── HashResolveTester │ ├── HashResolveTester.sln │ └── HashResolveTester │ │ ├── App.config │ │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ │ ├── HashResolveTester.cs │ │ ├── HashResolveTester.csproj │ │ ├── Interop │ │ └── NativeMethods.cs │ │ ├── Library │ │ ├── Helpers.cs │ │ └── Modules.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── PEUtils │ ├── PEUtils.psm1 │ └── README.md ├── PeRipper │ ├── PeRipper.sln │ └── PeRipper │ │ ├── App.config │ │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ │ ├── Interop │ │ ├── Win32Enums.cs │ │ └── Win32Structs.cs │ │ ├── Library │ │ ├── Helpers.cs │ │ ├── HexDump.cs │ │ └── Modules.cs │ │ ├── PeRipper.cs │ │ ├── PeRipper.csproj │ │ └── Properties │ │ └── AssemblyInfo.cs ├── ProcAccessCheck │ ├── ProcAccessCheck.sln │ └── ProcAccessCheck │ │ ├── App.config │ │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ │ ├── Interop │ │ ├── NativeMethods.cs │ │ ├── Win32Consts.cs │ │ ├── Win32Enums.cs │ │ └── Win32Structs.cs │ │ ├── Library │ │ ├── Helpers.cs │ │ ├── Modules.cs │ │ └── Utilities.cs │ │ ├── ProcAccessCheck.cs │ │ ├── ProcAccessCheck.csproj │ │ └── Properties │ │ └── AssemblyInfo.cs └── README.md ├── PPIDSpoofing ├── PPIDSpoofing.sln └── PPIDSpoofing │ ├── App.config │ ├── Handler │ ├── CommandLineParser.cs │ └── Execute.cs │ ├── Interop │ ├── NativeMethods.cs │ ├── Win32Consts.cs │ ├── Win32Enums.cs │ └── Win32Structs.cs │ ├── Library │ ├── Helpers.cs │ └── Modules.cs │ ├── PPIDSpoofing.cs │ ├── PPIDSpoofing.csproj │ └── Properties │ └── AssemblyInfo.cs ├── PhantomDllHollower ├── PhantomDllHollower.sln ├── PhantomDllHollower │ ├── App.config │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ ├── Interop │ │ ├── DelegateTypes.cs │ │ ├── NativeMethods.cs │ │ ├── Win32Consts.cs │ │ ├── Win32Enums.cs │ │ └── Win32Structs.cs │ ├── Library │ │ ├── Helpers.cs │ │ ├── Modules.cs │ │ ├── PeFile.cs │ │ └── Utilities.cs │ ├── PhantomDllHollower.cs │ ├── PhantomDllHollower.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── README.md └── figures │ └── phantom-dll-hollowing.png ├── ProcMemScan ├── ProcMemScan.sln ├── ProcMemScan │ ├── App.config │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ ├── Interop │ │ ├── NativeMethods.cs │ │ ├── Win32Consts.cs │ │ ├── Win32Enums.cs │ │ └── Win32Structs.cs │ ├── Library │ │ ├── Helpers.cs │ │ ├── HexDump.cs │ │ ├── Modules.cs │ │ └── Utilities.cs │ ├── ProcMemScan.cs │ ├── ProcMemScan.csproj │ └── Properties │ │ └── AssemblyInfo.cs └── README.md ├── ProcessDoppelgaenging ├── ProcessDoppelgaenging.sln └── ProcessDoppelgaenging │ ├── App.config │ ├── Handler │ ├── CommandLineParser.cs │ └── Execute.cs │ ├── Interop │ ├── NativeMethods.cs │ ├── Win32Consts.cs │ ├── Win32Enums.cs │ └── Win32Structs.cs │ ├── Library │ ├── Helpers.cs │ ├── Modules.cs │ ├── PeFile.cs │ └── Utilities.cs │ ├── ProcessDoppelgaenging.cs │ ├── ProcessDoppelgaenging.csproj │ └── Properties │ └── AssemblyInfo.cs ├── ProcessGhosting ├── ProcessGhosting.sln └── ProcessGhosting │ ├── App.config │ ├── Handler │ ├── CommandLineParser.cs │ └── Execute.cs │ ├── Interop │ ├── NativeMethods.cs │ ├── Win32Consts.cs │ ├── Win32Enums.cs │ └── Win32Structs.cs │ ├── Library │ ├── Helpers.cs │ ├── Modules.cs │ ├── PeFile.cs │ └── Utilities.cs │ ├── ProcessGhosting.cs │ ├── ProcessGhosting.csproj │ └── Properties │ └── AssemblyInfo.cs ├── ProcessHerpaderping ├── ProcessHerpaderping.sln └── ProcessHerpaderping │ ├── App.config │ ├── Handler │ ├── CommandLineParser.cs │ └── Execute.cs │ ├── Interop │ ├── NativeMethods.cs │ ├── Win32Consts.cs │ ├── Win32Enums.cs │ └── Win32Structs.cs │ ├── Library │ ├── Helpers.cs │ ├── Modules.cs │ ├── PeFile.cs │ └── Utilities.cs │ ├── ProcessHerpaderping.cs │ ├── ProcessHerpaderping.csproj │ └── Properties │ └── AssemblyInfo.cs ├── ProcessHollowing ├── ProcessHollowing.sln └── ProcessHollowing │ ├── App.config │ ├── Handler │ ├── CommandLineParser.cs │ └── Execute.cs │ ├── Interop │ ├── NativeMethods.cs │ ├── Win32Consts.cs │ ├── Win32Enums.cs │ └── Win32Structs.cs │ ├── Library │ ├── Helpers.cs │ ├── Modules.cs │ ├── PeFile.cs │ └── Utilities.cs │ ├── ProcessHollowing.cs │ ├── ProcessHollowing.csproj │ └── Properties │ └── AssemblyInfo.cs ├── ProtectedProcess ├── PPEditor │ ├── PPEditor.sln │ └── PPEditor │ │ ├── PPEditor.cpp │ │ ├── PPEditor.def │ │ ├── PPEditor.h │ │ ├── PPEditor.vcxproj │ │ ├── PPEditor.vcxproj.filters │ │ ├── PPEditor.vcxproj.user │ │ ├── framework.h │ │ ├── helpers.cpp │ │ ├── helpers.h │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── utils.cpp │ │ └── utils.h ├── README.md └── SdDumper │ ├── SdDumper.sln │ └── SdDumper │ ├── App.config │ ├── Handler │ ├── CommandLineParser.cs │ └── Execute.cs │ ├── Interop │ ├── NativeMethods.cs │ ├── Win32Consts.cs │ ├── Win32Enums.cs │ └── Win32Structs.cs │ ├── Library │ ├── Helpers.cs │ ├── Modules.cs │ └── Utilities.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SdDumper.cs │ └── SdDumper.csproj ├── README.md ├── ReflectiveDLLInjection ├── README.md ├── ReflectiveDLLInjection.sln ├── ReflectiveInjector │ ├── App.config │ ├── Handler │ │ ├── CommandLineParser.cs │ │ └── Execute.cs │ ├── Interop │ │ ├── NativeMethods.cs │ │ ├── Win32Consts.cs │ │ ├── Win32Enums.cs │ │ └── Win32Structs.cs │ ├── Library │ │ ├── Helpers.cs │ │ ├── Modules.cs │ │ └── Utilities.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReflectiveInjector.cs │ └── ReflectiveInjector.csproj ├── ReflectiveLib │ ├── ReflectiveLib.cpp │ ├── ReflectiveLib.h │ ├── ReflectiveLib.vcxproj │ ├── ReflectiveLib.vcxproj.filters │ ├── ReflectiveLib.vcxproj.user │ ├── framework.h │ ├── pch.cpp │ └── pch.h └── figures │ ├── inject.png │ └── load.png ├── TransactedHollowing ├── TransactedHollowing.sln └── TransactedHollowing │ ├── App.config │ ├── Handler │ ├── CommandLineParser.cs │ └── Execute.cs │ ├── Interop │ ├── NativeMethods.cs │ ├── Win32Consts.cs │ ├── Win32Enums.cs │ └── Win32Structs.cs │ ├── Library │ ├── Helpers.cs │ ├── Modules.cs │ ├── PeFile.cs │ └── Utilities.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── TransactedHollowing.cs │ └── TransactedHollowing.csproj ├── WmiSpawn ├── README.md ├── WmiSpawn.sln └── WmiSpawn │ ├── App.config │ ├── Handler │ ├── CommandLineParser.cs │ └── Execute.cs │ ├── Interop │ └── Win32Enums.cs │ ├── Library │ ├── Helpers.cs │ └── Modules.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── WmiSpawn.cs │ └── WmiSpawn.csproj └── sRDI ├── README.md ├── ReflectiveLoader ├── ReflectiveLoader.c ├── ReflectiveLoader.h ├── ReflectiveLoader.vcxproj ├── ReflectiveLoader.vcxproj.filters └── ReflectiveLoader.vcxproj.user ├── ShellcodeReflectiveInjector ├── App.config ├── Handler │ ├── CommandLineParser.cs │ └── Execute.cs ├── Interop │ ├── NativeMethods.cs │ ├── Win32Consts.cs │ ├── Win32Enums.cs │ └── Win32Structs.cs ├── Library │ ├── Helpers.cs │ ├── Modules.cs │ ├── Resources.cs │ └── Utilities.cs ├── Properties │ └── AssemblyInfo.cs ├── ShellcodeReflectiveInjector.cs └── ShellcodeReflectiveInjector.csproj ├── TestLib ├── TestLib.vcxproj ├── TestLib.vcxproj.filters ├── TestLib.vcxproj.user ├── dllmain.cpp ├── framework.h ├── pch.cpp └── pch.h ├── figures ├── sRDI-inject.png └── sRDI-load.png └── sRDI.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/.gitignore -------------------------------------------------------------------------------- /BlockingDLL/BlockingDLL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/BlockingDLL.sln -------------------------------------------------------------------------------- /BlockingDLL/BlockingDLLProcessSpawn/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/BlockingDLLProcessSpawn/App.config -------------------------------------------------------------------------------- /BlockingDLL/BlockingDLLProcessSpawn/BlockingDLLProcessSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/BlockingDLLProcessSpawn/BlockingDLLProcessSpawn.cs -------------------------------------------------------------------------------- /BlockingDLL/BlockingDLLProcessSpawn/BlockingDLLProcessSpawn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/BlockingDLLProcessSpawn/BlockingDLLProcessSpawn.csproj -------------------------------------------------------------------------------- /BlockingDLL/BlockingDLLProcessSpawn/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/BlockingDLLProcessSpawn/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /BlockingDLL/BlockingDLLProcessSpawn/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/BlockingDLLProcessSpawn/Handler/Execute.cs -------------------------------------------------------------------------------- /BlockingDLL/BlockingDLLProcessSpawn/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/BlockingDLLProcessSpawn/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /BlockingDLL/BlockingDLLProcessSpawn/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/BlockingDLLProcessSpawn/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /BlockingDLL/BlockingDLLProcessSpawn/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/BlockingDLLProcessSpawn/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /BlockingDLL/BlockingDLLProcessSpawn/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/BlockingDLLProcessSpawn/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /BlockingDLL/BlockingDLLProcessSpawn/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/BlockingDLLProcessSpawn/Library/Helpers.cs -------------------------------------------------------------------------------- /BlockingDLL/BlockingDLLProcessSpawn/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/BlockingDLLProcessSpawn/Library/Modules.cs -------------------------------------------------------------------------------- /BlockingDLL/BlockingDLLProcessSpawn/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/BlockingDLLProcessSpawn/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BlockingDLL/DLLInjector/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/DLLInjector/App.config -------------------------------------------------------------------------------- /BlockingDLL/DLLInjector/DLLInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/DLLInjector/DLLInjector.cs -------------------------------------------------------------------------------- /BlockingDLL/DLLInjector/DLLInjector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/DLLInjector/DLLInjector.csproj -------------------------------------------------------------------------------- /BlockingDLL/DLLInjector/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/DLLInjector/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /BlockingDLL/DLLInjector/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/DLLInjector/Handler/Execute.cs -------------------------------------------------------------------------------- /BlockingDLL/DLLInjector/Interop/DelegateTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/DLLInjector/Interop/DelegateTypes.cs -------------------------------------------------------------------------------- /BlockingDLL/DLLInjector/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/DLLInjector/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /BlockingDLL/DLLInjector/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/DLLInjector/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /BlockingDLL/DLLInjector/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/DLLInjector/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /BlockingDLL/DLLInjector/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/DLLInjector/Library/Helpers.cs -------------------------------------------------------------------------------- /BlockingDLL/DLLInjector/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/DLLInjector/Library/Modules.cs -------------------------------------------------------------------------------- /BlockingDLL/DLLInjector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/DLLInjector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BlockingDLL/InjectLib/InjectLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/InjectLib/InjectLib.vcxproj -------------------------------------------------------------------------------- /BlockingDLL/InjectLib/InjectLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/InjectLib/InjectLib.vcxproj.filters -------------------------------------------------------------------------------- /BlockingDLL/InjectLib/InjectLib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/InjectLib/InjectLib.vcxproj.user -------------------------------------------------------------------------------- /BlockingDLL/InjectLib/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/InjectLib/dllmain.cpp -------------------------------------------------------------------------------- /BlockingDLL/InjectLib/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/InjectLib/framework.h -------------------------------------------------------------------------------- /BlockingDLL/InjectLib/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/InjectLib/pch.cpp -------------------------------------------------------------------------------- /BlockingDLL/InjectLib/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/InjectLib/pch.h -------------------------------------------------------------------------------- /BlockingDLL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/README.md -------------------------------------------------------------------------------- /BlockingDLL/RemoteCodeInjector/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/RemoteCodeInjector/App.config -------------------------------------------------------------------------------- /BlockingDLL/RemoteCodeInjector/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/RemoteCodeInjector/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /BlockingDLL/RemoteCodeInjector/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/RemoteCodeInjector/Handler/Execute.cs -------------------------------------------------------------------------------- /BlockingDLL/RemoteCodeInjector/Interop/DelegateTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/RemoteCodeInjector/Interop/DelegateTypes.cs -------------------------------------------------------------------------------- /BlockingDLL/RemoteCodeInjector/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/RemoteCodeInjector/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /BlockingDLL/RemoteCodeInjector/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/RemoteCodeInjector/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /BlockingDLL/RemoteCodeInjector/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/RemoteCodeInjector/Library/Helpers.cs -------------------------------------------------------------------------------- /BlockingDLL/RemoteCodeInjector/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/RemoteCodeInjector/Library/Modules.cs -------------------------------------------------------------------------------- /BlockingDLL/RemoteCodeInjector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/RemoteCodeInjector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BlockingDLL/RemoteCodeInjector/RemoteCodeInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/RemoteCodeInjector/RemoteCodeInjector.cs -------------------------------------------------------------------------------- /BlockingDLL/RemoteCodeInjector/RemoteCodeInjector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/RemoteCodeInjector/RemoteCodeInjector.csproj -------------------------------------------------------------------------------- /BlockingDLL/SelfDefend/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/SelfDefend/App.config -------------------------------------------------------------------------------- /BlockingDLL/SelfDefend/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/SelfDefend/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /BlockingDLL/SelfDefend/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/SelfDefend/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /BlockingDLL/SelfDefend/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/SelfDefend/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /BlockingDLL/SelfDefend/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/SelfDefend/Library/Helpers.cs -------------------------------------------------------------------------------- /BlockingDLL/SelfDefend/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/SelfDefend/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BlockingDLL/SelfDefend/SelfDefend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/SelfDefend/SelfDefend.cs -------------------------------------------------------------------------------- /BlockingDLL/SelfDefend/SelfDefend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/SelfDefend/SelfDefend.csproj -------------------------------------------------------------------------------- /BlockingDLL/figures/1-dllinjection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/figures/1-dllinjection.png -------------------------------------------------------------------------------- /BlockingDLL/figures/2-processhacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/BlockingDLL/figures/2-processhacker.png -------------------------------------------------------------------------------- /CloneProcess/CloneProcess.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/CloneProcess.sln -------------------------------------------------------------------------------- /CloneProcess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/README.md -------------------------------------------------------------------------------- /CloneProcess/RemoteForking/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/RemoteForking/App.config -------------------------------------------------------------------------------- /CloneProcess/RemoteForking/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/RemoteForking/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /CloneProcess/RemoteForking/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/RemoteForking/Handler/Execute.cs -------------------------------------------------------------------------------- /CloneProcess/RemoteForking/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/RemoteForking/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /CloneProcess/RemoteForking/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/RemoteForking/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /CloneProcess/RemoteForking/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/RemoteForking/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /CloneProcess/RemoteForking/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/RemoteForking/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /CloneProcess/RemoteForking/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/RemoteForking/Library/Helpers.cs -------------------------------------------------------------------------------- /CloneProcess/RemoteForking/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/RemoteForking/Library/Modules.cs -------------------------------------------------------------------------------- /CloneProcess/RemoteForking/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/RemoteForking/Library/Utilities.cs -------------------------------------------------------------------------------- /CloneProcess/RemoteForking/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/RemoteForking/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloneProcess/RemoteForking/RemoteForking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/RemoteForking/RemoteForking.cs -------------------------------------------------------------------------------- /CloneProcess/RemoteForking/RemoteForking.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/RemoteForking/RemoteForking.csproj -------------------------------------------------------------------------------- /CloneProcess/SnapshotDump/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/SnapshotDump/App.config -------------------------------------------------------------------------------- /CloneProcess/SnapshotDump/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/SnapshotDump/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /CloneProcess/SnapshotDump/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/SnapshotDump/Handler/Execute.cs -------------------------------------------------------------------------------- /CloneProcess/SnapshotDump/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/SnapshotDump/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /CloneProcess/SnapshotDump/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/SnapshotDump/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /CloneProcess/SnapshotDump/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/SnapshotDump/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /CloneProcess/SnapshotDump/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/SnapshotDump/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /CloneProcess/SnapshotDump/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/SnapshotDump/Library/Helpers.cs -------------------------------------------------------------------------------- /CloneProcess/SnapshotDump/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/SnapshotDump/Library/Modules.cs -------------------------------------------------------------------------------- /CloneProcess/SnapshotDump/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/SnapshotDump/Library/Utilities.cs -------------------------------------------------------------------------------- /CloneProcess/SnapshotDump/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/SnapshotDump/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CloneProcess/SnapshotDump/SnapshotDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/SnapshotDump/SnapshotDump.cs -------------------------------------------------------------------------------- /CloneProcess/SnapshotDump/SnapshotDump.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/SnapshotDump/SnapshotDump.csproj -------------------------------------------------------------------------------- /CloneProcess/figures/RemoteForking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CloneProcess/figures/RemoteForking.png -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing.sln -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/App.config -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/CommandLineSpoofing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/CommandLineSpoofing.cs -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/CommandLineSpoofing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/CommandLineSpoofing.csproj -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/Handler/Execute.cs -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/Library/Helpers.cs -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/Library/Modules.cs -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/Library/PeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/Library/PeFile.cs -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/Library/Utilities.cs -------------------------------------------------------------------------------- /CommandLineSpoofing/CommandLineSpoofing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/CommandLineSpoofing/CommandLineSpoofing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/App.config -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/DarkLibraryLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/DarkLibraryLoader.cs -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/DarkLibraryLoader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/DarkLibraryLoader.csproj -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/Handler/Execute.cs -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/Interop/DelegateTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/Interop/DelegateTypes.cs -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/Library/Helpers.cs -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/Library/Modules.cs -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/Library/Utilities.cs -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLibraryLoader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLibraryLoader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DarkLoadLibrary/DarkLoadLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/DarkLoadLibrary.sln -------------------------------------------------------------------------------- /DarkLoadLibrary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/README.md -------------------------------------------------------------------------------- /DarkLoadLibrary/TestLib/TestLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/TestLib/TestLib.vcxproj -------------------------------------------------------------------------------- /DarkLoadLibrary/TestLib/TestLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/TestLib/TestLib.vcxproj.filters -------------------------------------------------------------------------------- /DarkLoadLibrary/TestLib/TestLib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/TestLib/TestLib.vcxproj.user -------------------------------------------------------------------------------- /DarkLoadLibrary/TestLib/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/TestLib/dllmain.cpp -------------------------------------------------------------------------------- /DarkLoadLibrary/TestLib/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/TestLib/framework.h -------------------------------------------------------------------------------- /DarkLoadLibrary/TestLib/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/TestLib/pch.cpp -------------------------------------------------------------------------------- /DarkLoadLibrary/TestLib/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/TestLib/pch.h -------------------------------------------------------------------------------- /DarkLoadLibrary/figures/DarkLoadLibrary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/DarkLoadLibrary/figures/DarkLoadLibrary.png -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing.sln -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/App.config -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/GhostlyHollowing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/GhostlyHollowing.cs -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/GhostlyHollowing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/GhostlyHollowing.csproj -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/Handler/Execute.cs -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/Library/Helpers.cs -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/Library/Modules.cs -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/Library/PeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/Library/PeFile.cs -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/Library/Utilities.cs -------------------------------------------------------------------------------- /GhostlyHollowing/GhostlyHollowing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/GhostlyHollowing/GhostlyHollowing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/LICENSE -------------------------------------------------------------------------------- /Misc/CalcRor13Hash/CalcRor13Hash.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/CalcRor13Hash/CalcRor13Hash.sln -------------------------------------------------------------------------------- /Misc/CalcRor13Hash/CalcRor13Hash/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/CalcRor13Hash/CalcRor13Hash/App.config -------------------------------------------------------------------------------- /Misc/CalcRor13Hash/CalcRor13Hash/CalcRor13Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/CalcRor13Hash/CalcRor13Hash/CalcRor13Hash.cs -------------------------------------------------------------------------------- /Misc/CalcRor13Hash/CalcRor13Hash/CalcRor13Hash.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/CalcRor13Hash/CalcRor13Hash/CalcRor13Hash.csproj -------------------------------------------------------------------------------- /Misc/CalcRor13Hash/CalcRor13Hash/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/CalcRor13Hash/CalcRor13Hash/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /Misc/CalcRor13Hash/CalcRor13Hash/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/CalcRor13Hash/CalcRor13Hash/Handler/Execute.cs -------------------------------------------------------------------------------- /Misc/CalcRor13Hash/CalcRor13Hash/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/CalcRor13Hash/CalcRor13Hash/Library/Helpers.cs -------------------------------------------------------------------------------- /Misc/CalcRor13Hash/CalcRor13Hash/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/CalcRor13Hash/CalcRor13Hash/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper.sln -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper/App.config -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper/EaDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper/EaDumper.cs -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper/EaDumper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper/EaDumper.csproj -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper/Handler/Execute.cs -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper/Library/Helpers.cs -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper/Library/HexDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper/Library/HexDump.cs -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper/Library/Modules.cs -------------------------------------------------------------------------------- /Misc/EaDumper/EaDumper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/EaDumper/EaDumper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner.sln -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/App.config -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/HandleScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/HandleScanner.cs -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/HandleScanner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/HandleScanner.csproj -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/Handler/Execute.cs -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/Library/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/Library/Globals.cs -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/Library/Helpers.cs -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/Library/Modules.cs -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/Library/Utilities.cs -------------------------------------------------------------------------------- /Misc/HandleScanner/HandleScanner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HandleScanner/HandleScanner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Misc/HashResolveTester/HashResolveTester.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HashResolveTester/HashResolveTester.sln -------------------------------------------------------------------------------- /Misc/HashResolveTester/HashResolveTester/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HashResolveTester/HashResolveTester/App.config -------------------------------------------------------------------------------- /Misc/HashResolveTester/HashResolveTester/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HashResolveTester/HashResolveTester/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /Misc/HashResolveTester/HashResolveTester/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HashResolveTester/HashResolveTester/Handler/Execute.cs -------------------------------------------------------------------------------- /Misc/HashResolveTester/HashResolveTester/HashResolveTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HashResolveTester/HashResolveTester/HashResolveTester.cs -------------------------------------------------------------------------------- /Misc/HashResolveTester/HashResolveTester/HashResolveTester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HashResolveTester/HashResolveTester/HashResolveTester.csproj -------------------------------------------------------------------------------- /Misc/HashResolveTester/HashResolveTester/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HashResolveTester/HashResolveTester/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /Misc/HashResolveTester/HashResolveTester/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HashResolveTester/HashResolveTester/Library/Helpers.cs -------------------------------------------------------------------------------- /Misc/HashResolveTester/HashResolveTester/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HashResolveTester/HashResolveTester/Library/Modules.cs -------------------------------------------------------------------------------- /Misc/HashResolveTester/HashResolveTester/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/HashResolveTester/HashResolveTester/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Misc/PEUtils/PEUtils.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PEUtils/PEUtils.psm1 -------------------------------------------------------------------------------- /Misc/PEUtils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PEUtils/README.md -------------------------------------------------------------------------------- /Misc/PeRipper/PeRipper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PeRipper/PeRipper.sln -------------------------------------------------------------------------------- /Misc/PeRipper/PeRipper/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PeRipper/PeRipper/App.config -------------------------------------------------------------------------------- /Misc/PeRipper/PeRipper/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PeRipper/PeRipper/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /Misc/PeRipper/PeRipper/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PeRipper/PeRipper/Handler/Execute.cs -------------------------------------------------------------------------------- /Misc/PeRipper/PeRipper/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PeRipper/PeRipper/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /Misc/PeRipper/PeRipper/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PeRipper/PeRipper/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /Misc/PeRipper/PeRipper/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PeRipper/PeRipper/Library/Helpers.cs -------------------------------------------------------------------------------- /Misc/PeRipper/PeRipper/Library/HexDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PeRipper/PeRipper/Library/HexDump.cs -------------------------------------------------------------------------------- /Misc/PeRipper/PeRipper/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PeRipper/PeRipper/Library/Modules.cs -------------------------------------------------------------------------------- /Misc/PeRipper/PeRipper/PeRipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PeRipper/PeRipper/PeRipper.cs -------------------------------------------------------------------------------- /Misc/PeRipper/PeRipper/PeRipper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PeRipper/PeRipper/PeRipper.csproj -------------------------------------------------------------------------------- /Misc/PeRipper/PeRipper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/PeRipper/PeRipper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck.sln -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck/App.config -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck/Handler/Execute.cs -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck/Library/Helpers.cs -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck/Library/Modules.cs -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck/Library/Utilities.cs -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck/ProcAccessCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck/ProcAccessCheck.cs -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck/ProcAccessCheck.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck/ProcAccessCheck.csproj -------------------------------------------------------------------------------- /Misc/ProcAccessCheck/ProcAccessCheck/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/ProcAccessCheck/ProcAccessCheck/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/Misc/README.md -------------------------------------------------------------------------------- /PPIDSpoofing/PPIDSpoofing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PPIDSpoofing/PPIDSpoofing.sln -------------------------------------------------------------------------------- /PPIDSpoofing/PPIDSpoofing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PPIDSpoofing/PPIDSpoofing/App.config -------------------------------------------------------------------------------- /PPIDSpoofing/PPIDSpoofing/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PPIDSpoofing/PPIDSpoofing/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /PPIDSpoofing/PPIDSpoofing/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PPIDSpoofing/PPIDSpoofing/Handler/Execute.cs -------------------------------------------------------------------------------- /PPIDSpoofing/PPIDSpoofing/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PPIDSpoofing/PPIDSpoofing/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /PPIDSpoofing/PPIDSpoofing/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PPIDSpoofing/PPIDSpoofing/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /PPIDSpoofing/PPIDSpoofing/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PPIDSpoofing/PPIDSpoofing/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /PPIDSpoofing/PPIDSpoofing/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PPIDSpoofing/PPIDSpoofing/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /PPIDSpoofing/PPIDSpoofing/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PPIDSpoofing/PPIDSpoofing/Library/Helpers.cs -------------------------------------------------------------------------------- /PPIDSpoofing/PPIDSpoofing/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PPIDSpoofing/PPIDSpoofing/Library/Modules.cs -------------------------------------------------------------------------------- /PPIDSpoofing/PPIDSpoofing/PPIDSpoofing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PPIDSpoofing/PPIDSpoofing/PPIDSpoofing.cs -------------------------------------------------------------------------------- /PPIDSpoofing/PPIDSpoofing/PPIDSpoofing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PPIDSpoofing/PPIDSpoofing/PPIDSpoofing.csproj -------------------------------------------------------------------------------- /PPIDSpoofing/PPIDSpoofing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PPIDSpoofing/PPIDSpoofing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower.sln -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/App.config -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/Handler/Execute.cs -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/Interop/DelegateTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/Interop/DelegateTypes.cs -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/Library/Helpers.cs -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/Library/Modules.cs -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/Library/PeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/Library/PeFile.cs -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/Library/Utilities.cs -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/PhantomDllHollower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/PhantomDllHollower.cs -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/PhantomDllHollower.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/PhantomDllHollower.csproj -------------------------------------------------------------------------------- /PhantomDllHollower/PhantomDllHollower/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/PhantomDllHollower/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PhantomDllHollower/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/README.md -------------------------------------------------------------------------------- /PhantomDllHollower/figures/phantom-dll-hollowing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/PhantomDllHollower/figures/phantom-dll-hollowing.png -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan.sln -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/App.config -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/Handler/Execute.cs -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/Library/Helpers.cs -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/Library/HexDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/Library/HexDump.cs -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/Library/Modules.cs -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/Library/Utilities.cs -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/ProcMemScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/ProcMemScan.cs -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/ProcMemScan.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/ProcMemScan.csproj -------------------------------------------------------------------------------- /ProcMemScan/ProcMemScan/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/ProcMemScan/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProcMemScan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcMemScan/README.md -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging.sln -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/App.config -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/Handler/Execute.cs -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/Library/Helpers.cs -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/Library/Modules.cs -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/Library/PeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/Library/PeFile.cs -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/Library/Utilities.cs -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/ProcessDoppelgaenging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/ProcessDoppelgaenging.cs -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/ProcessDoppelgaenging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/ProcessDoppelgaenging.csproj -------------------------------------------------------------------------------- /ProcessDoppelgaenging/ProcessDoppelgaenging/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessDoppelgaenging/ProcessDoppelgaenging/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting.sln -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/App.config -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/Handler/Execute.cs -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/Library/Helpers.cs -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/Library/Modules.cs -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/Library/PeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/Library/PeFile.cs -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/Library/Utilities.cs -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/ProcessGhosting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/ProcessGhosting.cs -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/ProcessGhosting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/ProcessGhosting.csproj -------------------------------------------------------------------------------- /ProcessGhosting/ProcessGhosting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessGhosting/ProcessGhosting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping.sln -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/App.config -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/Handler/Execute.cs -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/Library/Helpers.cs -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/Library/Modules.cs -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/Library/PeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/Library/PeFile.cs -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/Library/Utilities.cs -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/ProcessHerpaderping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/ProcessHerpaderping.cs -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/ProcessHerpaderping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/ProcessHerpaderping.csproj -------------------------------------------------------------------------------- /ProcessHerpaderping/ProcessHerpaderping/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHerpaderping/ProcessHerpaderping/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing.sln -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/App.config -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/Handler/Execute.cs -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/Library/Helpers.cs -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/Library/Modules.cs -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/Library/PeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/Library/PeFile.cs -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/Library/Utilities.cs -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/ProcessHollowing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/ProcessHollowing.cs -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/ProcessHollowing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/ProcessHollowing.csproj -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProcessHollowing/ProcessHollowing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor.sln -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor/PPEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor/PPEditor.cpp -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor/PPEditor.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor/PPEditor.def -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor/PPEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor/PPEditor.h -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor/PPEditor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor/PPEditor.vcxproj -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor/PPEditor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor/PPEditor.vcxproj.filters -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor/PPEditor.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor/PPEditor.vcxproj.user -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor/framework.h -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor/helpers.cpp -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor/helpers.h -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor/pch.cpp -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor/pch.h -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor/utils.cpp -------------------------------------------------------------------------------- /ProtectedProcess/PPEditor/PPEditor/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/PPEditor/PPEditor/utils.h -------------------------------------------------------------------------------- /ProtectedProcess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/README.md -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper.sln -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper/App.config -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper/Handler/Execute.cs -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper/Library/Helpers.cs -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper/Library/Modules.cs -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper/Library/Utilities.cs -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper/SdDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper/SdDumper.cs -------------------------------------------------------------------------------- /ProtectedProcess/SdDumper/SdDumper/SdDumper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ProtectedProcess/SdDumper/SdDumper/SdDumper.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/README.md -------------------------------------------------------------------------------- /ReflectiveDLLInjection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/README.md -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveDLLInjection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveDLLInjection.sln -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveInjector/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveInjector/App.config -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveInjector/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveInjector/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveInjector/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveInjector/Handler/Execute.cs -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveInjector/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveInjector/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveInjector/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveInjector/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveInjector/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveInjector/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveInjector/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveInjector/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveInjector/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveInjector/Library/Helpers.cs -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveInjector/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveInjector/Library/Modules.cs -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveInjector/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveInjector/Library/Utilities.cs -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveInjector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveInjector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveInjector/ReflectiveInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveInjector/ReflectiveInjector.cs -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveInjector/ReflectiveInjector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveInjector/ReflectiveInjector.csproj -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveLib/ReflectiveLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveLib/ReflectiveLib.cpp -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveLib/ReflectiveLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveLib/ReflectiveLib.h -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveLib/ReflectiveLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveLib/ReflectiveLib.vcxproj -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveLib/ReflectiveLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveLib/ReflectiveLib.vcxproj.filters -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveLib/ReflectiveLib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveLib/ReflectiveLib.vcxproj.user -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveLib/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveLib/framework.h -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveLib/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveLib/pch.cpp -------------------------------------------------------------------------------- /ReflectiveDLLInjection/ReflectiveLib/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/ReflectiveLib/pch.h -------------------------------------------------------------------------------- /ReflectiveDLLInjection/figures/inject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/figures/inject.png -------------------------------------------------------------------------------- /ReflectiveDLLInjection/figures/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/ReflectiveDLLInjection/figures/load.png -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing.sln -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/App.config -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/Handler/Execute.cs -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/Library/Helpers.cs -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/Library/Modules.cs -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/Library/PeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/Library/PeFile.cs -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/Library/Utilities.cs -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/TransactedHollowing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/TransactedHollowing.cs -------------------------------------------------------------------------------- /TransactedHollowing/TransactedHollowing/TransactedHollowing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/TransactedHollowing/TransactedHollowing/TransactedHollowing.csproj -------------------------------------------------------------------------------- /WmiSpawn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/WmiSpawn/README.md -------------------------------------------------------------------------------- /WmiSpawn/WmiSpawn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/WmiSpawn/WmiSpawn.sln -------------------------------------------------------------------------------- /WmiSpawn/WmiSpawn/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/WmiSpawn/WmiSpawn/App.config -------------------------------------------------------------------------------- /WmiSpawn/WmiSpawn/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/WmiSpawn/WmiSpawn/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /WmiSpawn/WmiSpawn/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/WmiSpawn/WmiSpawn/Handler/Execute.cs -------------------------------------------------------------------------------- /WmiSpawn/WmiSpawn/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/WmiSpawn/WmiSpawn/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /WmiSpawn/WmiSpawn/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/WmiSpawn/WmiSpawn/Library/Helpers.cs -------------------------------------------------------------------------------- /WmiSpawn/WmiSpawn/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/WmiSpawn/WmiSpawn/Library/Modules.cs -------------------------------------------------------------------------------- /WmiSpawn/WmiSpawn/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/WmiSpawn/WmiSpawn/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WmiSpawn/WmiSpawn/WmiSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/WmiSpawn/WmiSpawn/WmiSpawn.cs -------------------------------------------------------------------------------- /WmiSpawn/WmiSpawn/WmiSpawn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/WmiSpawn/WmiSpawn/WmiSpawn.csproj -------------------------------------------------------------------------------- /sRDI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/README.md -------------------------------------------------------------------------------- /sRDI/ReflectiveLoader/ReflectiveLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ReflectiveLoader/ReflectiveLoader.c -------------------------------------------------------------------------------- /sRDI/ReflectiveLoader/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ReflectiveLoader/ReflectiveLoader.h -------------------------------------------------------------------------------- /sRDI/ReflectiveLoader/ReflectiveLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ReflectiveLoader/ReflectiveLoader.vcxproj -------------------------------------------------------------------------------- /sRDI/ReflectiveLoader/ReflectiveLoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ReflectiveLoader/ReflectiveLoader.vcxproj.filters -------------------------------------------------------------------------------- /sRDI/ReflectiveLoader/ReflectiveLoader.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ReflectiveLoader/ReflectiveLoader.vcxproj.user -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/App.config -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/Handler/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/Handler/CommandLineParser.cs -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/Handler/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/Handler/Execute.cs -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/Interop/Win32Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/Interop/Win32Consts.cs -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/Interop/Win32Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/Interop/Win32Enums.cs -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/Interop/Win32Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/Interop/Win32Structs.cs -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/Library/Helpers.cs -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/Library/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/Library/Modules.cs -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/Library/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/Library/Resources.cs -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/Library/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/Library/Utilities.cs -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/ShellcodeReflectiveInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/ShellcodeReflectiveInjector.cs -------------------------------------------------------------------------------- /sRDI/ShellcodeReflectiveInjector/ShellcodeReflectiveInjector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/ShellcodeReflectiveInjector/ShellcodeReflectiveInjector.csproj -------------------------------------------------------------------------------- /sRDI/TestLib/TestLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/TestLib/TestLib.vcxproj -------------------------------------------------------------------------------- /sRDI/TestLib/TestLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/TestLib/TestLib.vcxproj.filters -------------------------------------------------------------------------------- /sRDI/TestLib/TestLib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/TestLib/TestLib.vcxproj.user -------------------------------------------------------------------------------- /sRDI/TestLib/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/TestLib/dllmain.cpp -------------------------------------------------------------------------------- /sRDI/TestLib/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/TestLib/framework.h -------------------------------------------------------------------------------- /sRDI/TestLib/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/TestLib/pch.cpp -------------------------------------------------------------------------------- /sRDI/TestLib/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/TestLib/pch.h -------------------------------------------------------------------------------- /sRDI/figures/sRDI-inject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/figures/sRDI-inject.png -------------------------------------------------------------------------------- /sRDI/figures/sRDI-load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/figures/sRDI-load.png -------------------------------------------------------------------------------- /sRDI/sRDI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daem0nc0re/TangledWinExec/HEAD/sRDI/sRDI.sln --------------------------------------------------------------------------------