├── .gitattributes ├── .gitignore ├── DynamicSys.sln ├── DynamicSys ├── DynamicInvoke.cs ├── DynamicSyscalls.csproj ├── Helper.cs ├── Native.cs └── Properties │ └── AssemblyInfo.cs ├── Examples ├── ProcessHollowing │ ├── App.config │ ├── Helper.cs │ ├── Native.cs │ ├── ProcessHollowing.cs │ ├── ProcessHollowing.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Structs.cs ├── ProcessInjection │ ├── App.config │ ├── Native.cs │ ├── ProcessInjection.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Structs.cs └── ProcessInjection2 │ ├── App.config │ ├── Native.cs │ ├── ProcessInjection2.csproj │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── Structs.cs ├── Hashes.json ├── README.md └── images └── image1.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/.gitignore -------------------------------------------------------------------------------- /DynamicSys.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/DynamicSys.sln -------------------------------------------------------------------------------- /DynamicSys/DynamicInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/DynamicSys/DynamicInvoke.cs -------------------------------------------------------------------------------- /DynamicSys/DynamicSyscalls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/DynamicSys/DynamicSyscalls.csproj -------------------------------------------------------------------------------- /DynamicSys/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/DynamicSys/Helper.cs -------------------------------------------------------------------------------- /DynamicSys/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/DynamicSys/Native.cs -------------------------------------------------------------------------------- /DynamicSys/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/DynamicSys/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/ProcessHollowing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessHollowing/App.config -------------------------------------------------------------------------------- /Examples/ProcessHollowing/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessHollowing/Helper.cs -------------------------------------------------------------------------------- /Examples/ProcessHollowing/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessHollowing/Native.cs -------------------------------------------------------------------------------- /Examples/ProcessHollowing/ProcessHollowing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessHollowing/ProcessHollowing.cs -------------------------------------------------------------------------------- /Examples/ProcessHollowing/ProcessHollowing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessHollowing/ProcessHollowing.csproj -------------------------------------------------------------------------------- /Examples/ProcessHollowing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessHollowing/Program.cs -------------------------------------------------------------------------------- /Examples/ProcessHollowing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessHollowing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/ProcessHollowing/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessHollowing/Structs.cs -------------------------------------------------------------------------------- /Examples/ProcessInjection/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessInjection/App.config -------------------------------------------------------------------------------- /Examples/ProcessInjection/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessInjection/Native.cs -------------------------------------------------------------------------------- /Examples/ProcessInjection/ProcessInjection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessInjection/ProcessInjection.csproj -------------------------------------------------------------------------------- /Examples/ProcessInjection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessInjection/Program.cs -------------------------------------------------------------------------------- /Examples/ProcessInjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessInjection/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/ProcessInjection/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessInjection/Structs.cs -------------------------------------------------------------------------------- /Examples/ProcessInjection2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessInjection2/App.config -------------------------------------------------------------------------------- /Examples/ProcessInjection2/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessInjection2/Native.cs -------------------------------------------------------------------------------- /Examples/ProcessInjection2/ProcessInjection2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessInjection2/ProcessInjection2.csproj -------------------------------------------------------------------------------- /Examples/ProcessInjection2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessInjection2/Program.cs -------------------------------------------------------------------------------- /Examples/ProcessInjection2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessInjection2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/ProcessInjection2/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Examples/ProcessInjection2/Structs.cs -------------------------------------------------------------------------------- /Hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/Hashes.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/README.md -------------------------------------------------------------------------------- /images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shrfnt77/DynamicSyscalls/HEAD/images/image1.png --------------------------------------------------------------------------------