├── APC_Inj_Any ├── Payload.csproj └── template ├── APC_Inj_New ├── Payload.csproj └── template ├── Alpha ├── decrypt.txt └── encrypt.txt ├── NOPSled ├── decrypt.txt └── encrypt.txt ├── NSGenCS.py ├── PE2CS.exe ├── PE_Load ├── Payload.csproj └── template ├── Proc_DLL ├── Payload.csproj └── template ├── README.md ├── ShellcodeTemplate ├── reverse.csproj └── template ├── ShellcodeTemplate4Alpha ├── reverse.csproj ├── reverse.csproj.bak └── template ├── Thread_Hijack ├── Payload.csproj └── template ├── Troubleshooting.md ├── msgbox.cs ├── reverse ├── decrypt.txt └── encrypt.txt └── xor ├── decrypt.txt └── encrypt.txt /APC_Inj_Any/Payload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/APC_Inj_Any/Payload.csproj -------------------------------------------------------------------------------- /APC_Inj_Any/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/APC_Inj_Any/template -------------------------------------------------------------------------------- /APC_Inj_New/Payload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/APC_Inj_New/Payload.csproj -------------------------------------------------------------------------------- /APC_Inj_New/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/APC_Inj_New/template -------------------------------------------------------------------------------- /Alpha/decrypt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/Alpha/decrypt.txt -------------------------------------------------------------------------------- /Alpha/encrypt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/Alpha/encrypt.txt -------------------------------------------------------------------------------- /NOPSled/decrypt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/NOPSled/decrypt.txt -------------------------------------------------------------------------------- /NOPSled/encrypt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/NOPSled/encrypt.txt -------------------------------------------------------------------------------- /NSGenCS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/NSGenCS.py -------------------------------------------------------------------------------- /PE2CS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/PE2CS.exe -------------------------------------------------------------------------------- /PE_Load/Payload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/PE_Load/Payload.csproj -------------------------------------------------------------------------------- /PE_Load/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/PE_Load/template -------------------------------------------------------------------------------- /Proc_DLL/Payload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/Proc_DLL/Payload.csproj -------------------------------------------------------------------------------- /Proc_DLL/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/Proc_DLL/template -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/README.md -------------------------------------------------------------------------------- /ShellcodeTemplate/reverse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/ShellcodeTemplate/reverse.csproj -------------------------------------------------------------------------------- /ShellcodeTemplate/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/ShellcodeTemplate/template -------------------------------------------------------------------------------- /ShellcodeTemplate4Alpha/reverse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/ShellcodeTemplate4Alpha/reverse.csproj -------------------------------------------------------------------------------- /ShellcodeTemplate4Alpha/reverse.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/ShellcodeTemplate4Alpha/reverse.csproj.bak -------------------------------------------------------------------------------- /ShellcodeTemplate4Alpha/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/ShellcodeTemplate4Alpha/template -------------------------------------------------------------------------------- /Thread_Hijack/Payload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/Thread_Hijack/Payload.csproj -------------------------------------------------------------------------------- /Thread_Hijack/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/Thread_Hijack/template -------------------------------------------------------------------------------- /Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/Troubleshooting.md -------------------------------------------------------------------------------- /msgbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/msgbox.cs -------------------------------------------------------------------------------- /reverse/decrypt.txt: -------------------------------------------------------------------------------- 1 | Array.Reverse(buf); -------------------------------------------------------------------------------- /reverse/encrypt.txt: -------------------------------------------------------------------------------- 1 | Array.Reverse(buf); -------------------------------------------------------------------------------- /xor/decrypt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/xor/decrypt.txt -------------------------------------------------------------------------------- /xor/encrypt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3hbb/NSGenCS/HEAD/xor/encrypt.txt --------------------------------------------------------------------------------