├── .github └── workflows │ └── documentation.yaml ├── .gitignore ├── Doxyfile ├── LICENSE ├── README.md ├── SharpHellsGate.sln ├── SharpHellsGate ├── HellsGate.cs ├── Module │ ├── MemoryUtil.cs │ └── SystemModule.cs ├── Program.cs ├── SharpHellsGate.csproj ├── Util.cs └── Win32 │ ├── DFunctions.cs │ ├── Macros.cs │ └── Structures.cs └── hells-gate.pdf /.github/workflows/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/.github/workflows/documentation.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/README.md -------------------------------------------------------------------------------- /SharpHellsGate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/SharpHellsGate.sln -------------------------------------------------------------------------------- /SharpHellsGate/HellsGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/SharpHellsGate/HellsGate.cs -------------------------------------------------------------------------------- /SharpHellsGate/Module/MemoryUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/SharpHellsGate/Module/MemoryUtil.cs -------------------------------------------------------------------------------- /SharpHellsGate/Module/SystemModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/SharpHellsGate/Module/SystemModule.cs -------------------------------------------------------------------------------- /SharpHellsGate/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/SharpHellsGate/Program.cs -------------------------------------------------------------------------------- /SharpHellsGate/SharpHellsGate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/SharpHellsGate/SharpHellsGate.csproj -------------------------------------------------------------------------------- /SharpHellsGate/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/SharpHellsGate/Util.cs -------------------------------------------------------------------------------- /SharpHellsGate/Win32/DFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/SharpHellsGate/Win32/DFunctions.cs -------------------------------------------------------------------------------- /SharpHellsGate/Win32/Macros.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/SharpHellsGate/Win32/Macros.cs -------------------------------------------------------------------------------- /SharpHellsGate/Win32/Structures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/SharpHellsGate/Win32/Structures.cs -------------------------------------------------------------------------------- /hells-gate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am0nsec/SharpHellsGate/HEAD/hells-gate.pdf --------------------------------------------------------------------------------