├── CONTRIBUTING.md ├── LICENSE.md ├── OPSEC.md ├── OSINT.md ├── README.md ├── cloud ├── aws │ ├── authenticated-enumeration.md │ ├── lateral-movement.md │ ├── persistence.md │ ├── post-exploitation.md │ ├── privilege-escalation.md │ └── readme.md ├── azure │ ├── Authenticated-enumeration.md │ ├── General-information.md │ ├── customqueries.json │ ├── defense-evasion.md │ ├── lateral-movement.md │ ├── persistence.md │ ├── post-exploitation.md │ ├── privilege-escalation.md │ └── readme.md ├── gc │ ├── authenticated-enumeration.md │ ├── lateral-movement.md │ ├── persistence.md │ ├── post-exploitation.md │ ├── privilege-escalation.md │ └── readme.md ├── initial-access-attacks.md └── readme.md ├── cobalt-strike.md ├── coding ├── cplusplus │ ├── cheatsheet.md │ └── readme.md ├── csharp │ ├── cheatsheet.md │ └── readme.md ├── malware_development.md ├── payloads.md ├── projects │ ├── Basics │ │ ├── implantDLL │ │ │ ├── compile.bat │ │ │ └── implantDLL.cpp │ │ ├── implantPE │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ │ ├── implant_data │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ │ ├── implant_rdata │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ │ ├── implant_src │ │ │ ├── compile.bat │ │ │ ├── implant.cpp │ │ │ ├── resources.h │ │ │ └── resources.rc │ │ ├── implant_text │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ │ └── implant_text2 │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ ├── Code_Injection │ │ ├── AsyncCalls │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ │ ├── EarlyBird │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ │ ├── MapView │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ │ ├── Remote_Process │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ │ ├── Remote_Process_DLL │ │ │ ├── compileDLL.bat │ │ │ ├── compileInjector.bat │ │ │ ├── implantDLL.cpp │ │ │ └── injectDLL.cpp │ │ ├── Remote_Process_Variatons │ │ │ ├── PEstructs.h │ │ │ ├── aesencryptfile.py │ │ │ ├── aesencryptstring.py │ │ │ ├── compile.bat │ │ │ ├── favicon.ico │ │ │ ├── helpers.cpp │ │ │ ├── helpers.h │ │ │ ├── implant.cpp │ │ │ ├── implant.exe │ │ │ ├── msgbox64.bin │ │ │ ├── resources.h │ │ │ ├── resources.o │ │ │ ├── resources.rc │ │ │ └── resources.res │ │ └── ThreadContext │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ ├── Dropper_AES_Favicon_Explorer_NoImports │ │ ├── PEstructs.h │ │ ├── aesencryptfile.py │ │ ├── aesencryptstring.py │ │ ├── compile.bat │ │ ├── helpers.cpp │ │ ├── helpers.h │ │ ├── implant.cpp │ │ ├── resources.h │ │ └── resources.rc │ ├── Dropper_AES_Favicon_Explorer_PayloadControl │ │ ├── PEstructs.h │ │ ├── aesencryptfile.py │ │ ├── aesencryptstring.py │ │ ├── compile.bat │ │ ├── helpers.cpp │ │ ├── helpers.h │ │ ├── implant.cpp │ │ ├── resources.h │ │ └── resources.rc │ ├── Dropper_AES_Favicon_MapView_Explorer │ │ ├── PEstructs.h │ │ ├── aesencryptfile.py │ │ ├── aesencryptstring.py │ │ ├── compile.bat │ │ ├── helpers.cpp │ │ ├── helpers.h │ │ ├── implant.cpp │ │ ├── resources.h │ │ ├── resources.o │ │ ├── resources.rc │ │ └── resources.res │ ├── Dropper_AES_Favicon_Notepad │ │ ├── aesencryptfile.py │ │ ├── aesencryptstring.py │ │ ├── compile.bat │ │ ├── implant.cpp │ │ ├── resources.h │ │ └── resources.rc │ ├── Dropper_AES_Reflected_DLL_MapView_Explorer │ │ ├── DLL │ │ │ ├── aesencrypt.py │ │ │ ├── compileDLL.bat │ │ │ └── implantDLL.cpp │ │ ├── PEstructs.h │ │ ├── aesencryptstring.py │ │ ├── compile.bat │ │ ├── helpers.cpp │ │ ├── helpers.h │ │ ├── implant.cpp │ │ └── sRDI │ │ │ ├── .gitignore │ │ │ ├── DotNet │ │ │ ├── App.config │ │ │ ├── DotNet.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── FunctionTest │ │ │ ├── FunctionTest.cpp │ │ │ ├── FunctionTest.vcxproj │ │ │ ├── FunctionTest.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ │ ├── LICENSE │ │ │ ├── Native │ │ │ ├── Loader.cpp │ │ │ ├── Native.vcxproj │ │ │ ├── Native.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ │ ├── PowerShell │ │ │ ├── ConvertTo-Shellcode.ps1 │ │ │ └── Invoke-Shellcode.ps1 │ │ │ ├── Python │ │ │ ├── ConvertToShellcode.py │ │ │ ├── Python.pyproj │ │ │ └── ShellcodeRDI.py │ │ │ ├── README.md │ │ │ ├── ShellcodeRDI.sln │ │ │ ├── ShellcodeRDI │ │ │ ├── GetProcAddressWithHash.h │ │ │ ├── ShellcodeRDI.c │ │ │ ├── ShellcodeRDI.vcxproj │ │ │ ├── ShellcodeRDI.vcxproj.filters │ │ │ └── function_link_order.txt │ │ │ ├── TestDLL │ │ │ ├── Resource.rc │ │ │ ├── TestDLL.vcxproj │ │ │ ├── TestDLL.vcxproj.filters │ │ │ ├── dllmain.cpp │ │ │ └── resource.h │ │ │ ├── bin │ │ │ └── .gitignore │ │ │ └── lib │ │ │ ├── PowerShell │ │ │ ├── Get-FunctionHash.ps1 │ │ │ ├── Get-LibSymbols.ps1 │ │ │ ├── Get-ObjDump.format.ps1xml │ │ │ ├── Get-PEHeader.ps1 │ │ │ └── Out-Shellcode.ps1 │ │ │ └── Python │ │ │ ├── EncodeBlobs.py │ │ │ └── FunctionToHash.py │ ├── Dropper_XOR_Favicon_Notepad │ │ ├── compile.bat │ │ ├── implant.cpp │ │ ├── resources.h │ │ ├── resources.rc │ │ ├── xorencrypt.py │ │ └── xorencryptfavicon.py │ ├── Encoding_Encryption │ │ ├── AES │ │ │ ├── aesencrypt.py │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ │ ├── Base64 │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ │ └── Xor │ │ │ ├── compile.bat │ │ │ ├── implant.cpp │ │ │ ├── xorencrypt.py │ │ │ └── xorenryptfavicon.py │ ├── Hooking │ │ ├── Detours │ │ │ ├── compile.bat │ │ │ ├── detours │ │ │ │ ├── .gitignore │ │ │ │ ├── CREDITS.TXT │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── samples │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.TXT │ │ │ │ │ ├── comeasy │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── comeasy.cpp │ │ │ │ │ │ ├── wrotei.cpp │ │ │ │ │ │ └── wrotei.rc │ │ │ │ │ ├── commem │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── commem.cpp │ │ │ │ │ ├── common.mak │ │ │ │ │ ├── cping │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ReadMe.Txt │ │ │ │ │ │ ├── cping.cpp │ │ │ │ │ │ ├── cping.dat │ │ │ │ │ │ └── iping.idl │ │ │ │ │ ├── disas │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── arm.asm │ │ │ │ │ │ ├── disas.cpp │ │ │ │ │ │ ├── ia64.asm │ │ │ │ │ │ ├── unk.cpp │ │ │ │ │ │ ├── x64.asm │ │ │ │ │ │ └── x86.cpp │ │ │ │ │ ├── dtest │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── NORMAL_IA64.TXT │ │ │ │ │ │ ├── NORMAL_X64.TXT │ │ │ │ │ │ ├── NORMAL_X86.TXT │ │ │ │ │ │ ├── dtarge.cpp │ │ │ │ │ │ ├── dtarge.h │ │ │ │ │ │ ├── dtarge.rc │ │ │ │ │ │ └── dtest.cpp │ │ │ │ │ ├── dumpe │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── dumpe.cpp │ │ │ │ │ ├── dumpi │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── dumpi.cpp │ │ │ │ │ ├── dynamic_alloc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── x64.asm │ │ │ │ │ │ └── x86.asm │ │ │ │ │ ├── echo │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── echofx.cpp │ │ │ │ │ │ ├── echofx.rc │ │ │ │ │ │ ├── echonul.cpp │ │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── einst │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── edll1x.cpp │ │ │ │ │ │ ├── edll2x.cpp │ │ │ │ │ │ ├── edll3x.cpp │ │ │ │ │ │ └── einst.cpp │ │ │ │ │ ├── excep │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── excep.cpp │ │ │ │ │ │ ├── firstexc.cpp │ │ │ │ │ │ └── firstexc.h │ │ │ │ │ ├── findfunc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── extend.cpp │ │ │ │ │ │ ├── extend.rc │ │ │ │ │ │ ├── findfunc.cpp │ │ │ │ │ │ ├── symtest.cpp │ │ │ │ │ │ ├── target.cpp │ │ │ │ │ │ ├── target.h │ │ │ │ │ │ └── target.rc │ │ │ │ │ ├── impmunge │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── impmunge.cpp │ │ │ │ │ ├── member │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── member.cpp │ │ │ │ │ ├── opengl │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ogldet.cpp │ │ │ │ │ │ ├── ogldet.rc │ │ │ │ │ │ └── testogl.cpp │ │ │ │ │ ├── region │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── region.cpp │ │ │ │ │ ├── setdll │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── setdll.cpp │ │ │ │ │ ├── simple │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── simple.cpp │ │ │ │ │ │ ├── simple.rc │ │ │ │ │ │ └── sleep5.cpp │ │ │ │ │ ├── slept │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── NORMAL_IA64.TXT │ │ │ │ │ │ ├── NORMAL_X64.TXT │ │ │ │ │ │ ├── NORMAL_X86.TXT │ │ │ │ │ │ ├── dslept.cpp │ │ │ │ │ │ ├── dslept.rc │ │ │ │ │ │ ├── sleepbed.cpp │ │ │ │ │ │ ├── sleepnew.cpp │ │ │ │ │ │ ├── sleepold.cpp │ │ │ │ │ │ ├── slept.cpp │ │ │ │ │ │ ├── slept.h │ │ │ │ │ │ ├── slept.rc │ │ │ │ │ │ └── verify.cpp │ │ │ │ │ ├── syelog │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── sltest.cpp │ │ │ │ │ │ ├── sltestp.cpp │ │ │ │ │ │ ├── syelog.cpp │ │ │ │ │ │ ├── syelog.h │ │ │ │ │ │ └── syelogd.cpp │ │ │ │ │ ├── talloc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── NORMAL_IA64.TXT │ │ │ │ │ │ ├── NORMAL_X64.TXT │ │ │ │ │ │ ├── talloc.cpp │ │ │ │ │ │ ├── tdll1x.cpp │ │ │ │ │ │ ├── tdll2x.cpp │ │ │ │ │ │ ├── tdll3x.cpp │ │ │ │ │ │ ├── tdll4x.cpp │ │ │ │ │ │ ├── tdll5x.cpp │ │ │ │ │ │ ├── tdll6x.cpp │ │ │ │ │ │ ├── tdll7x.cpp │ │ │ │ │ │ ├── tdll8x.cpp │ │ │ │ │ │ └── tdll9x.cpp │ │ │ │ │ ├── traceapi │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── _win32.cpp │ │ │ │ │ │ ├── testapi.cpp │ │ │ │ │ │ ├── trcapi.cpp │ │ │ │ │ │ └── trcapi.rc │ │ │ │ │ ├── tracebld │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── tracebld.cpp │ │ │ │ │ │ ├── tracebld.h │ │ │ │ │ │ ├── trcbld.cpp │ │ │ │ │ │ └── trcbld.rc │ │ │ │ │ ├── tracelnk │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── trclnk.cpp │ │ │ │ │ │ └── trclnk.rc │ │ │ │ │ ├── tracemem │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── trcmem.cpp │ │ │ │ │ │ └── trcmem.rc │ │ │ │ │ ├── tracereg │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── trcreg.cpp │ │ │ │ │ │ └── trcreg.rc │ │ │ │ │ ├── traceser │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── trcser.cpp │ │ │ │ │ │ └── trcser.rc │ │ │ │ │ ├── tracessl │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── trcssl.cpp │ │ │ │ │ │ └── trcssl.rc │ │ │ │ │ ├── tracetcp │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── trctcp.cpp │ │ │ │ │ │ └── trctcp.rc │ │ │ │ │ ├── tryman │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── managed.cs │ │ │ │ │ │ ├── size.cpp │ │ │ │ │ │ ├── tryman.cpp │ │ │ │ │ │ ├── tstman.cpp │ │ │ │ │ │ └── tstman.rc │ │ │ │ │ └── withdll │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── withdll.cpp │ │ │ │ └── system.mak │ │ │ ├── hookem.cpp │ │ │ └── hookme.cpp │ │ ├── IAT │ │ │ ├── compile.bat │ │ │ ├── hookem.cpp │ │ │ └── hookme.cpp │ │ └── InLine_Patching │ │ │ ├── compile.bat │ │ │ ├── hookem.cpp │ │ │ └── hookme.cpp │ ├── ReflectiveCode │ │ ├── ReflectiveDLL_Loader │ │ │ ├── ReflectiveDLLInjection.h │ │ │ ├── ReflectiveLoader.c │ │ │ ├── ReflectiveLoader.h │ │ │ ├── aesencrypt.py │ │ │ ├── compileDLL.bat │ │ │ ├── implant │ │ │ │ ├── compile.bat │ │ │ │ └── implant.cpp │ │ │ └── implantDLL.cpp │ │ └── Shellcode_ReflectiveDLL_Loader │ │ │ ├── aesencrypt.py │ │ │ ├── compileDLL.bat │ │ │ ├── implant │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ │ │ ├── implantDLL.cpp │ │ │ └── sRDI │ │ │ ├── .gitignore │ │ │ ├── DotNet │ │ │ ├── App.config │ │ │ ├── DotNet.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── FunctionTest │ │ │ ├── FunctionTest.cpp │ │ │ ├── FunctionTest.vcxproj │ │ │ ├── FunctionTest.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ │ ├── LICENSE │ │ │ ├── Native │ │ │ ├── Loader.cpp │ │ │ ├── Native.vcxproj │ │ │ ├── Native.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ │ ├── PowerShell │ │ │ ├── ConvertTo-Shellcode.ps1 │ │ │ └── Invoke-Shellcode.ps1 │ │ │ ├── Python │ │ │ ├── ConvertToShellcode.py │ │ │ ├── Python.pyproj │ │ │ └── ShellcodeRDI.py │ │ │ ├── README.md │ │ │ ├── ShellcodeRDI.sln │ │ │ ├── ShellcodeRDI │ │ │ ├── GetProcAddressWithHash.h │ │ │ ├── ShellcodeRDI.c │ │ │ ├── ShellcodeRDI.vcxproj │ │ │ ├── ShellcodeRDI.vcxproj.filters │ │ │ └── function_link_order.txt │ │ │ ├── TestDLL │ │ │ ├── Resource.rc │ │ │ ├── TestDLL.vcxproj │ │ │ ├── TestDLL.vcxproj.filters │ │ │ ├── dllmain.cpp │ │ │ └── resource.h │ │ │ ├── bin │ │ │ └── .gitignore │ │ │ └── lib │ │ │ ├── PowerShell │ │ │ ├── Get-FunctionHash.ps1 │ │ │ ├── Get-LibSymbols.ps1 │ │ │ ├── Get-ObjDump.format.ps1xml │ │ │ ├── Get-PEHeader.ps1 │ │ │ └── Out-Shellcode.ps1 │ │ │ └── Python │ │ │ ├── EncodeBlobs.py │ │ │ └── FunctionToHash.py │ ├── VeraCryptPasswordStealer │ │ ├── VCmigrate │ │ │ ├── aesencryptfile.py │ │ │ ├── compile.bat │ │ │ └── vcmigrate.cpp │ │ ├── VCpersist │ │ │ ├── compile.bat │ │ │ └── vcpesrsist.cpp │ │ ├── VCsniff │ │ │ ├── VCsniff.cpp │ │ │ ├── compile.bat │ │ │ ├── detours.h │ │ │ ├── detours │ │ │ │ ├── .gitignore │ │ │ │ ├── CREDITS.TXT │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── samples │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.TXT │ │ │ │ │ ├── comeasy │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── comeasy.cpp │ │ │ │ │ │ ├── wrotei.cpp │ │ │ │ │ │ └── wrotei.rc │ │ │ │ │ ├── commem │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── commem.cpp │ │ │ │ │ ├── common.mak │ │ │ │ │ ├── cping │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ReadMe.Txt │ │ │ │ │ │ ├── cping.cpp │ │ │ │ │ │ ├── cping.dat │ │ │ │ │ │ └── iping.idl │ │ │ │ │ ├── disas │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── arm.asm │ │ │ │ │ │ ├── disas.cpp │ │ │ │ │ │ ├── ia64.asm │ │ │ │ │ │ ├── unk.cpp │ │ │ │ │ │ ├── x64.asm │ │ │ │ │ │ └── x86.cpp │ │ │ │ │ ├── dtest │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── NORMAL_IA64.TXT │ │ │ │ │ │ ├── NORMAL_X64.TXT │ │ │ │ │ │ ├── NORMAL_X86.TXT │ │ │ │ │ │ ├── dtarge.cpp │ │ │ │ │ │ ├── dtarge.h │ │ │ │ │ │ ├── dtarge.rc │ │ │ │ │ │ └── dtest.cpp │ │ │ │ │ ├── dumpe │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── dumpe.cpp │ │ │ │ │ ├── dumpi │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── dumpi.cpp │ │ │ │ │ ├── dynamic_alloc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── x64.asm │ │ │ │ │ │ └── x86.asm │ │ │ │ │ ├── echo │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── echofx.cpp │ │ │ │ │ │ ├── echofx.rc │ │ │ │ │ │ ├── echonul.cpp │ │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── einst │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── edll1x.cpp │ │ │ │ │ │ ├── edll2x.cpp │ │ │ │ │ │ ├── edll3x.cpp │ │ │ │ │ │ └── einst.cpp │ │ │ │ │ ├── excep │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── excep.cpp │ │ │ │ │ │ ├── firstexc.cpp │ │ │ │ │ │ └── firstexc.h │ │ │ │ │ ├── findfunc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── extend.cpp │ │ │ │ │ │ ├── extend.rc │ │ │ │ │ │ ├── findfunc.cpp │ │ │ │ │ │ ├── symtest.cpp │ │ │ │ │ │ ├── target.cpp │ │ │ │ │ │ ├── target.h │ │ │ │ │ │ └── target.rc │ │ │ │ │ ├── impmunge │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── impmunge.cpp │ │ │ │ │ ├── member │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── member.cpp │ │ │ │ │ ├── opengl │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ogldet.cpp │ │ │ │ │ │ ├── ogldet.rc │ │ │ │ │ │ └── testogl.cpp │ │ │ │ │ ├── region │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── region.cpp │ │ │ │ │ ├── setdll │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── setdll.cpp │ │ │ │ │ ├── simple │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── simple.cpp │ │ │ │ │ │ ├── simple.rc │ │ │ │ │ │ └── sleep5.cpp │ │ │ │ │ ├── slept │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── NORMAL_IA64.TXT │ │ │ │ │ │ ├── NORMAL_X64.TXT │ │ │ │ │ │ ├── NORMAL_X86.TXT │ │ │ │ │ │ ├── dslept.cpp │ │ │ │ │ │ ├── dslept.rc │ │ │ │ │ │ ├── sleepbed.cpp │ │ │ │ │ │ ├── sleepnew.cpp │ │ │ │ │ │ ├── sleepold.cpp │ │ │ │ │ │ ├── slept.cpp │ │ │ │ │ │ ├── slept.h │ │ │ │ │ │ ├── slept.rc │ │ │ │ │ │ └── verify.cpp │ │ │ │ │ ├── syelog │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── sltest.cpp │ │ │ │ │ │ ├── sltestp.cpp │ │ │ │ │ │ ├── syelog.cpp │ │ │ │ │ │ ├── syelog.h │ │ │ │ │ │ └── syelogd.cpp │ │ │ │ │ ├── talloc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── NORMAL_IA64.TXT │ │ │ │ │ │ ├── NORMAL_X64.TXT │ │ │ │ │ │ ├── talloc.cpp │ │ │ │ │ │ ├── tdll1x.cpp │ │ │ │ │ │ ├── tdll2x.cpp │ │ │ │ │ │ ├── tdll3x.cpp │ │ │ │ │ │ ├── tdll4x.cpp │ │ │ │ │ │ ├── tdll5x.cpp │ │ │ │ │ │ ├── tdll6x.cpp │ │ │ │ │ │ ├── tdll7x.cpp │ │ │ │ │ │ ├── tdll8x.cpp │ │ │ │ │ │ └── tdll9x.cpp │ │ │ │ │ ├── traceapi │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── _win32.cpp │ │ │ │ │ │ ├── testapi.cpp │ │ │ │ │ │ ├── trcapi.cpp │ │ │ │ │ │ └── trcapi.rc │ │ │ │ │ ├── tracebld │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── tracebld.cpp │ │ │ │ │ │ ├── tracebld.h │ │ │ │ │ │ ├── trcbld.cpp │ │ │ │ │ │ └── trcbld.rc │ │ │ │ │ ├── tracelnk │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── trclnk.cpp │ │ │ │ │ │ └── trclnk.rc │ │ │ │ │ ├── tracemem │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── trcmem.cpp │ │ │ │ │ │ └── trcmem.rc │ │ │ │ │ ├── tracereg │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── trcreg.cpp │ │ │ │ │ │ └── trcreg.rc │ │ │ │ │ ├── traceser │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── trcser.cpp │ │ │ │ │ │ └── trcser.rc │ │ │ │ │ ├── tracessl │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── trcssl.cpp │ │ │ │ │ │ └── trcssl.rc │ │ │ │ │ ├── tracetcp │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── trctcp.cpp │ │ │ │ │ │ └── trctcp.rc │ │ │ │ │ ├── tryman │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── managed.cs │ │ │ │ │ │ ├── size.cpp │ │ │ │ │ │ ├── tryman.cpp │ │ │ │ │ │ ├── tstman.cpp │ │ │ │ │ │ └── tstman.rc │ │ │ │ │ └── withdll │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── withdll.cpp │ │ │ │ └── system.mak │ │ │ └── detver.h │ │ └── sRDI │ │ │ ├── .gitignore │ │ │ ├── DotNet │ │ │ ├── App.config │ │ │ ├── DotNet.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── FunctionTest │ │ │ ├── FunctionTest.cpp │ │ │ ├── FunctionTest.vcxproj │ │ │ ├── FunctionTest.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ │ ├── LICENSE │ │ │ ├── Native │ │ │ ├── Loader.cpp │ │ │ ├── Native.vcxproj │ │ │ ├── Native.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ │ ├── PowerShell │ │ │ ├── ConvertTo-Shellcode.ps1 │ │ │ └── Invoke-Shellcode.ps1 │ │ │ ├── Python │ │ │ ├── ConvertToShellcode.py │ │ │ ├── Python.pyproj │ │ │ └── ShellcodeRDI.py │ │ │ ├── README.md │ │ │ ├── ShellcodeRDI.sln │ │ │ ├── ShellcodeRDI │ │ │ ├── GetProcAddressWithHash.h │ │ │ ├── ShellcodeRDI.c │ │ │ ├── ShellcodeRDI.vcxproj │ │ │ ├── ShellcodeRDI.vcxproj.filters │ │ │ └── function_link_order.txt │ │ │ ├── TestDLL │ │ │ ├── Resource.rc │ │ │ ├── TestDLL.vcxproj │ │ │ ├── TestDLL.vcxproj.filters │ │ │ ├── dllmain.cpp │ │ │ └── resource.h │ │ │ ├── bin │ │ │ └── .gitignore │ │ │ └── lib │ │ │ ├── PowerShell │ │ │ ├── Get-FunctionHash.ps1 │ │ │ ├── Get-LibSymbols.ps1 │ │ │ ├── Get-ObjDump.format.ps1xml │ │ │ ├── Get-PEHeader.ps1 │ │ │ └── Out-Shellcode.ps1 │ │ │ └── Python │ │ │ ├── EncodeBlobs.py │ │ │ └── FunctionToHash.py │ ├── Windows_Security │ │ ├── .gitignore │ │ ├── Debug │ │ │ ├── SecurityHelper.idb │ │ │ └── SecurityHelper.pdb │ │ ├── Security.sln │ │ ├── SecurityHelper │ │ │ ├── Debug │ │ │ │ ├── SecurityHelper.lib.recipe │ │ │ │ ├── SecurityHelper.log │ │ │ │ └── SecurityHelper.tlog │ │ │ │ │ ├── CL.command.1.tlog │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ ├── Lib-link.read.1.tlog │ │ │ │ │ ├── Lib-link.write.1.tlog │ │ │ │ │ ├── Lib.command.1.tlog │ │ │ │ │ └── SecurityHelper.lastbuildstate │ │ │ ├── SecurityHelper.cpp │ │ │ ├── SecurityHelper.h │ │ │ ├── SecurityHelper.vcxproj │ │ │ ├── SecurityHelper.vcxproj.filters │ │ │ ├── SecurityHelper.vcxproj.user │ │ │ ├── framework.h │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ └── x64 │ │ │ │ ├── Debug │ │ │ │ ├── SecurityHelper.lib.recipe │ │ │ │ ├── SecurityHelper.log │ │ │ │ └── SecurityHelper.tlog │ │ │ │ │ ├── CL.command.1.tlog │ │ │ │ │ ├── CL.read.1.tlog │ │ │ │ │ ├── CL.write.1.tlog │ │ │ │ │ ├── Lib-link.read.1.tlog │ │ │ │ │ ├── Lib-link.write.1.tlog │ │ │ │ │ ├── Lib.command.1.tlog │ │ │ │ │ └── SecurityHelper.lastbuildstate │ │ │ │ └── Release │ │ │ │ ├── SecurityHelper.lib.recipe │ │ │ │ ├── SecurityHelper.log │ │ │ │ └── SecurityHelper.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── Lib-link.read.1.tlog │ │ │ │ ├── Lib-link.write.1.tlog │ │ │ │ ├── Lib.command.1.tlog │ │ │ │ └── SecurityHelper.lastbuildstate │ │ ├── elevate │ │ │ ├── elevate.cpp │ │ │ ├── elevate.vcxproj │ │ │ ├── elevate.vcxproj.filters │ │ │ ├── elevate.vcxproj.user │ │ │ └── x64 │ │ │ │ └── Release │ │ │ │ ├── elevate.exe.recipe │ │ │ │ ├── elevate.iobj │ │ │ │ ├── elevate.ipdb │ │ │ │ ├── elevate.log │ │ │ │ ├── elevate.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── elevate.lastbuildstate │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ └── link.write.1.tlog │ │ │ │ └── vc142.pdb │ │ ├── imp │ │ │ ├── imp.cpp │ │ │ ├── imp.vcxproj │ │ │ ├── imp.vcxproj.filters │ │ │ ├── imp.vcxproj.user │ │ │ └── x64 │ │ │ │ └── Release │ │ │ │ ├── imp.exe.recipe │ │ │ │ ├── imp.iobj │ │ │ │ ├── imp.ipdb │ │ │ │ ├── imp.log │ │ │ │ ├── imp.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── imp.lastbuildstate │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ └── link.write.1.tlog │ │ │ │ └── vc142.pdb │ │ ├── runas │ │ │ ├── runas.cpp │ │ │ ├── runas.vcxproj │ │ │ ├── runas.vcxproj.filters │ │ │ ├── runas.vcxproj.user │ │ │ └── x64 │ │ │ │ └── Release │ │ │ │ ├── runas.exe.recipe │ │ │ │ ├── runas.iobj │ │ │ │ ├── runas.ipdb │ │ │ │ ├── runas.log │ │ │ │ ├── runas.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ ├── link.write.1.tlog │ │ │ │ └── runas.lastbuildstate │ │ │ │ └── vc142.pdb │ │ ├── token │ │ │ ├── token.cpp │ │ │ ├── token.vcxproj │ │ │ ├── token.vcxproj.filters │ │ │ ├── token.vcxproj.user │ │ │ └── x64 │ │ │ │ └── Release │ │ │ │ ├── token.exe.recipe │ │ │ │ ├── token.iobj │ │ │ │ ├── token.ipdb │ │ │ │ ├── token.log │ │ │ │ ├── token.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ ├── link.write.1.tlog │ │ │ │ └── token.lastbuildstate │ │ │ │ └── vc142.pdb │ │ └── wellknownsids │ │ │ ├── wellknownsids.cpp │ │ │ ├── wellknownsids.vcxproj │ │ │ ├── wellknownsids.vcxproj.filters │ │ │ ├── wellknownsids.vcxproj.user │ │ │ └── x64 │ │ │ ├── Debug │ │ │ ├── vc142.idb │ │ │ ├── vc142.pdb │ │ │ ├── wellknownsids.log │ │ │ └── wellknownsids.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── link-cvtres.read.1.tlog │ │ │ │ ├── link-cvtres.write.1.tlog │ │ │ │ ├── link-rc.read.1.tlog │ │ │ │ ├── link-rc.write.1.tlog │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ ├── link.write.1.tlog │ │ │ │ ├── unsuccessfulbuild │ │ │ │ └── wellknownsids.lastbuildstate │ │ │ └── Release │ │ │ ├── vc142.pdb │ │ │ ├── wellknownsids.exe.recipe │ │ │ ├── wellknownsids.iobj │ │ │ ├── wellknownsids.ipdb │ │ │ ├── wellknownsids.log │ │ │ └── wellknownsids.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ └── wellknownsids.lastbuildstate │ └── WoW64 │ │ ├── aesencryptstring.py │ │ ├── compile.bat │ │ ├── execute64.bin │ │ ├── implant.cpp │ │ └── wownative.bin └── readme.md ├── covenant.md ├── defense-evasion ├── Application-Allowlisting.md ├── Driver-Attacks.md ├── Endpoint-Detection-Response.md ├── Evading-Static-Detection.md ├── General.md ├── LSASS.md ├── Microsoft-Defender-and-Firewall.md ├── PowerShell.md ├── README.md ├── Sysmon.md └── Windbg.md ├── hashcracking.md ├── infrastructure ├── bufferoverflow.md ├── bufferoverflow │ ├── exploit.py │ └── fuzzing.py ├── enumeration.md ├── exploitation.md ├── pivoting.md ├── privesc_linux.md ├── privesc_windows.md └── readme.md ├── metasploit.md ├── misc.md ├── python_dependancies.md ├── web.md ├── windows-ad ├── Domain-Enumeration.md ├── Domain-Persistence.md ├── Domain-Privilege-Escalation.md ├── Host-Persistence.md ├── Host-Reconnaissance.md ├── Initial-Access.md ├── Lateral-Movement.md ├── Post-Exploitation.md ├── linux_ad.md ├── readme.md └── relaying.md └── windows_security.md /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OPSEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/OPSEC.md -------------------------------------------------------------------------------- /OSINT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/OSINT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/README.md -------------------------------------------------------------------------------- /cloud/aws/authenticated-enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/aws/authenticated-enumeration.md -------------------------------------------------------------------------------- /cloud/aws/lateral-movement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/aws/lateral-movement.md -------------------------------------------------------------------------------- /cloud/aws/persistence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/aws/persistence.md -------------------------------------------------------------------------------- /cloud/aws/post-exploitation.md: -------------------------------------------------------------------------------- 1 | # Post exploitation 2 | ## Data harvesting 3 | -------------------------------------------------------------------------------- /cloud/aws/privilege-escalation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/aws/privilege-escalation.md -------------------------------------------------------------------------------- /cloud/aws/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/aws/readme.md -------------------------------------------------------------------------------- /cloud/azure/Authenticated-enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/azure/Authenticated-enumeration.md -------------------------------------------------------------------------------- /cloud/azure/General-information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/azure/General-information.md -------------------------------------------------------------------------------- /cloud/azure/customqueries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/azure/customqueries.json -------------------------------------------------------------------------------- /cloud/azure/defense-evasion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/azure/defense-evasion.md -------------------------------------------------------------------------------- /cloud/azure/lateral-movement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/azure/lateral-movement.md -------------------------------------------------------------------------------- /cloud/azure/persistence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/azure/persistence.md -------------------------------------------------------------------------------- /cloud/azure/post-exploitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/azure/post-exploitation.md -------------------------------------------------------------------------------- /cloud/azure/privilege-escalation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/azure/privilege-escalation.md -------------------------------------------------------------------------------- /cloud/azure/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/azure/readme.md -------------------------------------------------------------------------------- /cloud/gc/authenticated-enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/gc/authenticated-enumeration.md -------------------------------------------------------------------------------- /cloud/gc/lateral-movement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/gc/lateral-movement.md -------------------------------------------------------------------------------- /cloud/gc/persistence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/gc/persistence.md -------------------------------------------------------------------------------- /cloud/gc/post-exploitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/gc/post-exploitation.md -------------------------------------------------------------------------------- /cloud/gc/privilege-escalation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/gc/privilege-escalation.md -------------------------------------------------------------------------------- /cloud/gc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/gc/readme.md -------------------------------------------------------------------------------- /cloud/initial-access-attacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/initial-access-attacks.md -------------------------------------------------------------------------------- /cloud/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cloud/readme.md -------------------------------------------------------------------------------- /cobalt-strike.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/cobalt-strike.md -------------------------------------------------------------------------------- /coding/cplusplus/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/cplusplus/cheatsheet.md -------------------------------------------------------------------------------- /coding/cplusplus/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/cplusplus/readme.md -------------------------------------------------------------------------------- /coding/csharp/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/csharp/cheatsheet.md -------------------------------------------------------------------------------- /coding/csharp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/csharp/readme.md -------------------------------------------------------------------------------- /coding/malware_development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/malware_development.md -------------------------------------------------------------------------------- /coding/payloads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/payloads.md -------------------------------------------------------------------------------- /coding/projects/Basics/implantDLL/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implantDLL/compile.bat -------------------------------------------------------------------------------- /coding/projects/Basics/implantDLL/implantDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implantDLL/implantDLL.cpp -------------------------------------------------------------------------------- /coding/projects/Basics/implantPE/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implantPE/compile.bat -------------------------------------------------------------------------------- /coding/projects/Basics/implantPE/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implantPE/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Basics/implant_data/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implant_data/compile.bat -------------------------------------------------------------------------------- /coding/projects/Basics/implant_data/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implant_data/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Basics/implant_rdata/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implant_rdata/compile.bat -------------------------------------------------------------------------------- /coding/projects/Basics/implant_rdata/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implant_rdata/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Basics/implant_src/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implant_src/compile.bat -------------------------------------------------------------------------------- /coding/projects/Basics/implant_src/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implant_src/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Basics/implant_src/resources.h: -------------------------------------------------------------------------------- 1 | #define FAVICON_ICO 100 2 | -------------------------------------------------------------------------------- /coding/projects/Basics/implant_src/resources.rc: -------------------------------------------------------------------------------- 1 | #include "resources.h" 2 | 3 | FAVICON_ICO RCDATA calc.ico 4 | -------------------------------------------------------------------------------- /coding/projects/Basics/implant_text/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implant_text/compile.bat -------------------------------------------------------------------------------- /coding/projects/Basics/implant_text/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implant_text/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Basics/implant_text2/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implant_text2/compile.bat -------------------------------------------------------------------------------- /coding/projects/Basics/implant_text2/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Basics/implant_text2/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Code_Injection/AsyncCalls/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/AsyncCalls/compile.bat -------------------------------------------------------------------------------- /coding/projects/Code_Injection/AsyncCalls/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/AsyncCalls/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Code_Injection/EarlyBird/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/EarlyBird/compile.bat -------------------------------------------------------------------------------- /coding/projects/Code_Injection/EarlyBird/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/EarlyBird/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Code_Injection/MapView/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/MapView/compile.bat -------------------------------------------------------------------------------- /coding/projects/Code_Injection/MapView/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/MapView/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process/compile.bat -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_DLL/compileDLL.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_DLL/compileDLL.bat -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_DLL/compileInjector.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_DLL/compileInjector.bat -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_DLL/implantDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_DLL/implantDLL.cpp -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_DLL/injectDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_DLL/injectDLL.cpp -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/PEstructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_Variatons/PEstructs.h -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/aesencryptfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_Variatons/aesencryptfile.py -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/aesencryptstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_Variatons/aesencryptstring.py -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_Variatons/compile.bat -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_Variatons/favicon.ico -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_Variatons/helpers.cpp -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_Variatons/helpers.h -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_Variatons/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/implant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_Variatons/implant.exe -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/msgbox64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_Variatons/msgbox64.bin -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/resources.h: -------------------------------------------------------------------------------- 1 | #define FAVICON_ICO 100 2 | -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/resources.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_Variatons/resources.o -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_Variatons/resources.rc -------------------------------------------------------------------------------- /coding/projects/Code_Injection/Remote_Process_Variatons/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/Remote_Process_Variatons/resources.res -------------------------------------------------------------------------------- /coding/projects/Code_Injection/ThreadContext/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/ThreadContext/compile.bat -------------------------------------------------------------------------------- /coding/projects/Code_Injection/ThreadContext/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Code_Injection/ThreadContext/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_NoImports/PEstructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_NoImports/PEstructs.h -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_NoImports/aesencryptfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_NoImports/aesencryptfile.py -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_NoImports/aesencryptstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_NoImports/aesencryptstring.py -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_NoImports/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_NoImports/compile.bat -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_NoImports/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_NoImports/helpers.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_NoImports/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_NoImports/helpers.h -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_NoImports/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_NoImports/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_NoImports/resources.h: -------------------------------------------------------------------------------- 1 | #define FAVICON_ICO 100 2 | -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_NoImports/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_NoImports/resources.rc -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/PEstructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/PEstructs.h -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/aesencryptfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/aesencryptfile.py -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/aesencryptstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/aesencryptstring.py -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/compile.bat -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/helpers.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/helpers.h -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/resources.h: -------------------------------------------------------------------------------- 1 | #define FAVICON_ICO 100 2 | -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Explorer_PayloadControl/resources.rc -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_MapView_Explorer/PEstructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_MapView_Explorer/PEstructs.h -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_MapView_Explorer/aesencryptfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_MapView_Explorer/aesencryptfile.py -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_MapView_Explorer/aesencryptstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_MapView_Explorer/aesencryptstring.py -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_MapView_Explorer/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_MapView_Explorer/compile.bat -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_MapView_Explorer/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_MapView_Explorer/helpers.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_MapView_Explorer/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_MapView_Explorer/helpers.h -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_MapView_Explorer/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_MapView_Explorer/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_MapView_Explorer/resources.h: -------------------------------------------------------------------------------- 1 | #define FAVICON_ICO 100 2 | -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_MapView_Explorer/resources.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_MapView_Explorer/resources.o -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_MapView_Explorer/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_MapView_Explorer/resources.rc -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_MapView_Explorer/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_MapView_Explorer/resources.res -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Notepad/aesencryptfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Notepad/aesencryptfile.py -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Notepad/aesencryptstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Notepad/aesencryptstring.py -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Notepad/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Notepad/compile.bat -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Notepad/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Notepad/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Notepad/resources.h: -------------------------------------------------------------------------------- 1 | #define FAVICON_ICO 100 2 | -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Favicon_Notepad/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Favicon_Notepad/resources.rc -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/DLL/aesencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/DLL/aesencrypt.py -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/DLL/compileDLL.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/DLL/compileDLL.bat -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/DLL/implantDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/DLL/implantDLL.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/PEstructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/PEstructs.h -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/aesencryptstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/aesencryptstring.py -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/compile.bat -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/helpers.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/helpers.h -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/.gitignore -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/DotNet/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/DotNet/App.config -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/DotNet/DotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/DotNet/DotNet.csproj -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/DotNet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/DotNet/Program.cs -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/FunctionTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/FunctionTest/stdafx.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/FunctionTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/FunctionTest/stdafx.h -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/FunctionTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/FunctionTest/targetver.h -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/LICENSE -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Native/Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Native/Loader.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Native/Native.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Native/Native.vcxproj -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Native/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Native/stdafx.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Native/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Native/stdafx.h -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Native/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Native/targetver.h -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Python/Python.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Python/Python.pyproj -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Python/ShellcodeRDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/Python/ShellcodeRDI.py -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/README.md -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/ShellcodeRDI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/ShellcodeRDI.sln -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/ShellcodeRDI/function_link_order.txt: -------------------------------------------------------------------------------- 1 | LoadDLL 2 | GetProcAddressWithHash -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/TestDLL/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/TestDLL/Resource.rc -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/TestDLL/TestDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/TestDLL/TestDLL.vcxproj -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/TestDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/TestDLL/dllmain.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/TestDLL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/TestDLL/resource.h -------------------------------------------------------------------------------- /coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_AES_Reflected_DLL_MapView_Explorer/sRDI/bin/.gitignore -------------------------------------------------------------------------------- /coding/projects/Dropper_XOR_Favicon_Notepad/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_XOR_Favicon_Notepad/compile.bat -------------------------------------------------------------------------------- /coding/projects/Dropper_XOR_Favicon_Notepad/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_XOR_Favicon_Notepad/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Dropper_XOR_Favicon_Notepad/resources.h: -------------------------------------------------------------------------------- 1 | #define FAVICON_ICO 100 2 | -------------------------------------------------------------------------------- /coding/projects/Dropper_XOR_Favicon_Notepad/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_XOR_Favicon_Notepad/resources.rc -------------------------------------------------------------------------------- /coding/projects/Dropper_XOR_Favicon_Notepad/xorencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_XOR_Favicon_Notepad/xorencrypt.py -------------------------------------------------------------------------------- /coding/projects/Dropper_XOR_Favicon_Notepad/xorencryptfavicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Dropper_XOR_Favicon_Notepad/xorencryptfavicon.py -------------------------------------------------------------------------------- /coding/projects/Encoding_Encryption/AES/aesencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Encoding_Encryption/AES/aesencrypt.py -------------------------------------------------------------------------------- /coding/projects/Encoding_Encryption/AES/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Encoding_Encryption/AES/compile.bat -------------------------------------------------------------------------------- /coding/projects/Encoding_Encryption/AES/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Encoding_Encryption/AES/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Encoding_Encryption/Base64/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Encoding_Encryption/Base64/compile.bat -------------------------------------------------------------------------------- /coding/projects/Encoding_Encryption/Base64/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Encoding_Encryption/Base64/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Encoding_Encryption/Xor/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Encoding_Encryption/Xor/compile.bat -------------------------------------------------------------------------------- /coding/projects/Encoding_Encryption/Xor/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Encoding_Encryption/Xor/implant.cpp -------------------------------------------------------------------------------- /coding/projects/Encoding_Encryption/Xor/xorencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Encoding_Encryption/Xor/xorencrypt.py -------------------------------------------------------------------------------- /coding/projects/Encoding_Encryption/Xor/xorenryptfavicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Encoding_Encryption/Xor/xorenryptfavicon.py -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/compile.bat -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/.gitignore -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/CREDITS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/CREDITS.TXT -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/LICENSE.md -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/README.md -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/README.TXT -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/comeasy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/comeasy/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/comeasy/comeasy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/comeasy/comeasy.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/comeasy/wrotei.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/comeasy/wrotei.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/comeasy/wrotei.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/comeasy/wrotei.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/commem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/commem/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/commem/commem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/commem/commem.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/common.mak -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/cping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/cping/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/cping/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/cping/ReadMe.Txt -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/cping/cping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/cping/cping.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/cping/cping.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/cping/iping.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/cping/iping.idl -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/disas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/disas/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/disas/arm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/disas/arm.asm -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/disas/disas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/disas/disas.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/disas/ia64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/disas/ia64.asm -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/disas/unk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/disas/unk.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/disas/x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/disas/x64.asm -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/disas/x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/disas/x86.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dtest/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dtest/NORMAL_IA64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dtest/NORMAL_IA64.TXT -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dtest/NORMAL_X64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dtest/NORMAL_X64.TXT -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dtest/NORMAL_X86.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dtest/NORMAL_X86.TXT -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dtest/dtarge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dtest/dtarge.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dtest/dtarge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dtest/dtarge.h -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dtest/dtarge.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dtest/dtarge.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dtest/dtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dtest/dtest.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dumpe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dumpe/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dumpe/dumpe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dumpe/dumpe.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dumpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dumpi/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dumpi/dumpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dumpi/dumpi.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dynamic_alloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dynamic_alloc/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dynamic_alloc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dynamic_alloc/main.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dynamic_alloc/x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dynamic_alloc/x64.asm -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/dynamic_alloc/x86.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/dynamic_alloc/x86.asm -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/echo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/echo/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/echo/echofx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/echo/echofx.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/echo/echofx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/echo/echofx.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/echo/echonul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/echo/echonul.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/echo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/echo/main.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/einst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/einst/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/einst/edll1x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/einst/edll1x.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/einst/edll2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/einst/edll2x.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/einst/edll3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/einst/edll3x.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/einst/einst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/einst/einst.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/excep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/excep/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/excep/excep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/excep/excep.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/excep/firstexc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/excep/firstexc.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/excep/firstexc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/excep/firstexc.h -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/findfunc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/findfunc/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/findfunc/extend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/findfunc/extend.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/findfunc/extend.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/findfunc/extend.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/findfunc/findfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/findfunc/findfunc.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/findfunc/symtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/findfunc/symtest.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/findfunc/target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/findfunc/target.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/findfunc/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/findfunc/target.h -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/findfunc/target.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/findfunc/target.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/impmunge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/impmunge/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/impmunge/impmunge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/impmunge/impmunge.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/member/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/member/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/member/member.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/member/member.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/opengl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/opengl/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/opengl/ogldet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/opengl/ogldet.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/opengl/ogldet.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/opengl/ogldet.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/opengl/testogl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/opengl/testogl.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/region/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/region/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/region/region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/region/region.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/setdll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/setdll/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/setdll/setdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/setdll/setdll.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/simple/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/simple/simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/simple/simple.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/simple/simple.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/simple/simple.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/simple/sleep5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/simple/sleep5.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/slept/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/slept/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/slept/NORMAL_IA64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/slept/NORMAL_IA64.TXT -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/slept/NORMAL_X64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/slept/NORMAL_X64.TXT -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/slept/NORMAL_X86.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/slept/NORMAL_X86.TXT -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/slept/dslept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/slept/dslept.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/slept/dslept.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/slept/dslept.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/slept/sleepbed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/slept/sleepbed.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/slept/sleepnew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/slept/sleepnew.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/slept/sleepold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/slept/sleepold.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/slept/slept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/slept/slept.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/slept/slept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/slept/slept.h -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/slept/slept.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/slept/slept.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/slept/verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/slept/verify.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/syelog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/syelog/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/syelog/sltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/syelog/sltest.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/syelog/sltestp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/syelog/sltestp.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/syelog/syelog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/syelog/syelog.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/syelog/syelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/syelog/syelog.h -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/syelog/syelogd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/syelog/syelogd.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/talloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/talloc/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/talloc/NORMAL_IA64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/talloc/NORMAL_IA64.TXT -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/talloc/NORMAL_X64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/talloc/NORMAL_X64.TXT -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/talloc/talloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/talloc/talloc.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/talloc/tdll1x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/talloc/tdll1x.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/talloc/tdll2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/talloc/tdll2x.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/talloc/tdll3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/talloc/tdll3x.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/talloc/tdll4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/talloc/tdll4x.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/talloc/tdll5x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/talloc/tdll5x.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/talloc/tdll6x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/talloc/tdll6x.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/talloc/tdll7x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/talloc/tdll7x.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/talloc/tdll8x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/talloc/tdll8x.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/talloc/tdll9x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/talloc/tdll9x.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/traceapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/traceapi/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/traceapi/_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/traceapi/_win32.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/traceapi/testapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/traceapi/testapi.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/traceapi/trcapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/traceapi/trcapi.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/traceapi/trcapi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/traceapi/trcapi.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracebld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracebld/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracebld/tracebld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracebld/tracebld.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracebld/tracebld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracebld/tracebld.h -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracebld/trcbld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracebld/trcbld.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracebld/trcbld.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracebld/trcbld.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracelnk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracelnk/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracelnk/trclnk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracelnk/trclnk.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracelnk/trclnk.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracelnk/trclnk.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracemem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracemem/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracemem/trcmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracemem/trcmem.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracemem/trcmem.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracemem/trcmem.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracereg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracereg/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracereg/trcreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracereg/trcreg.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracereg/trcreg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracereg/trcreg.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/traceser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/traceser/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/traceser/trcser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/traceser/trcser.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/traceser/trcser.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/traceser/trcser.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracessl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracessl/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracessl/trcssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracessl/trcssl.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracessl/trcssl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracessl/trcssl.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracetcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracetcp/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracetcp/trctcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracetcp/trctcp.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tracetcp/trctcp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tracetcp/trctcp.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tryman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tryman/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tryman/managed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tryman/managed.cs -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tryman/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tryman/size.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tryman/tryman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tryman/tryman.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tryman/tstman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tryman/tstman.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/tryman/tstman.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/tryman/tstman.rc -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/withdll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/withdll/Makefile -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/samples/withdll/withdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/samples/withdll/withdll.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/detours/system.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/detours/system.mak -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/hookem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/hookem.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/Detours/hookme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/Detours/hookme.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/IAT/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/IAT/compile.bat -------------------------------------------------------------------------------- /coding/projects/Hooking/IAT/hookem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/IAT/hookem.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/IAT/hookme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/IAT/hookme.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/InLine_Patching/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/InLine_Patching/compile.bat -------------------------------------------------------------------------------- /coding/projects/Hooking/InLine_Patching/hookem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/InLine_Patching/hookem.cpp -------------------------------------------------------------------------------- /coding/projects/Hooking/InLine_Patching/hookme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Hooking/InLine_Patching/hookme.cpp -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/ReflectiveDLL_Loader/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/ReflectiveDLL_Loader/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/ReflectiveDLL_Loader/ReflectiveLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/ReflectiveDLL_Loader/ReflectiveLoader.c -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/ReflectiveDLL_Loader/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/ReflectiveDLL_Loader/ReflectiveLoader.h -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/ReflectiveDLL_Loader/aesencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/ReflectiveDLL_Loader/aesencrypt.py -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/ReflectiveDLL_Loader/compileDLL.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/ReflectiveDLL_Loader/compileDLL.bat -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/ReflectiveDLL_Loader/implant/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/ReflectiveDLL_Loader/implant/compile.bat -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/ReflectiveDLL_Loader/implant/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/ReflectiveDLL_Loader/implant/implant.cpp -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/ReflectiveDLL_Loader/implantDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/ReflectiveDLL_Loader/implantDLL.cpp -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/aesencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/aesencrypt.py -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/compileDLL.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/compileDLL.bat -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/implant/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/implant/compile.bat -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/implant/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/implant/implant.cpp -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/implantDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/implantDLL.cpp -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/.gitignore -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/DotNet/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/DotNet/App.config -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/DotNet/DotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/DotNet/DotNet.csproj -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/DotNet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/DotNet/Program.cs -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/FunctionTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/FunctionTest/stdafx.h -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/LICENSE -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/Native/Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/Native/Loader.cpp -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/Native/Native.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/Native/Native.vcxproj -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/Native/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/Native/stdafx.cpp -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/Native/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/Native/stdafx.h -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/Native/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/Native/targetver.h -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/Python/Python.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/Python/Python.pyproj -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/README.md -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/ShellcodeRDI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/ShellcodeRDI.sln -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/ShellcodeRDI/function_link_order.txt: -------------------------------------------------------------------------------- 1 | LoadDLL 2 | GetProcAddressWithHash -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/TestDLL/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/TestDLL/Resource.rc -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/TestDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/TestDLL/dllmain.cpp -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/TestDLL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/TestDLL/resource.h -------------------------------------------------------------------------------- /coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/ReflectiveCode/Shellcode_ReflectiveDLL_Loader/sRDI/bin/.gitignore -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCmigrate/aesencryptfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCmigrate/aesencryptfile.py -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCmigrate/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCmigrate/compile.bat -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCmigrate/vcmigrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCmigrate/vcmigrate.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCpersist/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCpersist/compile.bat -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCpersist/vcpesrsist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCpersist/vcpesrsist.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/VCsniff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/VCsniff.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/compile.bat -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/.gitignore -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/CREDITS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/CREDITS.TXT -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/LICENSE.md -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/README.md -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/README.TXT -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/comeasy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/comeasy/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/comeasy/comeasy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/comeasy/comeasy.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/comeasy/wrotei.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/comeasy/wrotei.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/comeasy/wrotei.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/comeasy/wrotei.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/commem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/commem/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/commem/commem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/commem/commem.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/common.mak -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/cping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/cping/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/cping/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/cping/ReadMe.Txt -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/cping/cping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/cping/cping.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/cping/cping.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/cping/iping.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/cping/iping.idl -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/arm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/arm.asm -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/disas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/disas.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/ia64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/ia64.asm -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/unk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/unk.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/x64.asm -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/disas/x86.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/NORMAL_IA64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/NORMAL_IA64.TXT -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/NORMAL_X64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/NORMAL_X64.TXT -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/NORMAL_X86.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/NORMAL_X86.TXT -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/dtarge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/dtarge.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/dtarge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/dtarge.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/dtarge.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/dtarge.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/dtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dtest/dtest.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dumpe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dumpe/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dumpe/dumpe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dumpe/dumpe.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dumpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dumpi/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dumpi/dumpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dumpi/dumpi.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dynamic_alloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dynamic_alloc/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dynamic_alloc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dynamic_alloc/main.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dynamic_alloc/x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dynamic_alloc/x64.asm -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dynamic_alloc/x86.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/dynamic_alloc/x86.asm -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/echo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/echo/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/echo/echofx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/echo/echofx.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/echo/echofx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/echo/echofx.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/echo/echonul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/echo/echonul.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/echo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/echo/main.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/einst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/einst/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/einst/edll1x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/einst/edll1x.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/einst/edll2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/einst/edll2x.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/einst/edll3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/einst/edll3x.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/einst/einst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/einst/einst.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/excep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/excep/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/excep/excep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/excep/excep.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/excep/firstexc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/excep/firstexc.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/excep/firstexc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/excep/firstexc.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/extend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/extend.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/extend.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/extend.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/findfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/findfunc.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/symtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/symtest.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/target.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/target.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/target.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/findfunc/target.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/impmunge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/impmunge/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/impmunge/impmunge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/impmunge/impmunge.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/member/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/member/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/member/member.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/member/member.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/opengl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/opengl/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/opengl/ogldet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/opengl/ogldet.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/opengl/ogldet.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/opengl/ogldet.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/opengl/testogl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/opengl/testogl.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/region/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/region/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/region/region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/region/region.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/setdll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/setdll/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/setdll/setdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/setdll/setdll.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/simple/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/simple/simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/simple/simple.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/simple/simple.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/simple/simple.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/simple/sleep5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/simple/sleep5.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/NORMAL_IA64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/NORMAL_IA64.TXT -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/NORMAL_X64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/NORMAL_X64.TXT -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/NORMAL_X86.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/NORMAL_X86.TXT -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/dslept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/dslept.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/dslept.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/dslept.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/sleepbed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/sleepbed.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/sleepnew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/sleepnew.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/sleepold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/sleepold.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/slept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/slept.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/slept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/slept.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/slept.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/slept.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/slept/verify.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/syelog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/syelog/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/syelog/sltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/syelog/sltest.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/syelog/sltestp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/syelog/sltestp.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/syelog/syelog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/syelog/syelog.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/syelog/syelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/syelog/syelog.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/syelog/syelogd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/syelog/syelogd.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/NORMAL_IA64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/NORMAL_IA64.TXT -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/NORMAL_X64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/NORMAL_X64.TXT -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/talloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/talloc.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll1x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll1x.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll2x.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll3x.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll4x.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll5x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll5x.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll6x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll6x.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll7x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll7x.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll8x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll8x.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll9x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/talloc/tdll9x.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceapi/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceapi/_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceapi/_win32.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceapi/testapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceapi/testapi.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceapi/trcapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceapi/trcapi.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceapi/trcapi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceapi/trcapi.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracebld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracebld/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracebld/tracebld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracebld/tracebld.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracebld/tracebld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracebld/tracebld.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracebld/trcbld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracebld/trcbld.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracebld/trcbld.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracebld/trcbld.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracelnk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracelnk/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracelnk/trclnk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracelnk/trclnk.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracelnk/trclnk.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracelnk/trclnk.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracemem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracemem/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracemem/trcmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracemem/trcmem.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracemem/trcmem.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracemem/trcmem.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracereg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracereg/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracereg/trcreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracereg/trcreg.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracereg/trcreg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracereg/trcreg.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceser/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceser/trcser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceser/trcser.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceser/trcser.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/traceser/trcser.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracessl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracessl/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracessl/trcssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracessl/trcssl.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracessl/trcssl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracessl/trcssl.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracetcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracetcp/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracetcp/trctcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracetcp/trctcp.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracetcp/trctcp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tracetcp/trctcp.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tryman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tryman/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tryman/managed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tryman/managed.cs -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tryman/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tryman/size.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tryman/tryman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tryman/tryman.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tryman/tstman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tryman/tstman.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tryman/tstman.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/tryman/tstman.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/withdll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/withdll/Makefile -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/withdll/withdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/samples/withdll/withdll.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detours/system.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detours/system.mak -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/VCsniff/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/VCsniff/detver.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/.gitignore -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/DotNet/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/DotNet/App.config -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/DotNet/DotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/DotNet/DotNet.csproj -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/DotNet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/DotNet/Program.cs -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/DotNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/DotNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/FunctionTest/FunctionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/FunctionTest/FunctionTest.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/FunctionTest/FunctionTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/FunctionTest/FunctionTest.vcxproj -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/FunctionTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/FunctionTest/stdafx.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/FunctionTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/FunctionTest/stdafx.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/FunctionTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/FunctionTest/targetver.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/LICENSE -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/Native/Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/Native/Loader.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/Native/Native.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/Native/Native.vcxproj -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/Native/Native.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/Native/Native.vcxproj.filters -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/Native/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/Native/stdafx.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/Native/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/Native/stdafx.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/Native/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/Native/targetver.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/PowerShell/ConvertTo-Shellcode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/PowerShell/ConvertTo-Shellcode.ps1 -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/PowerShell/Invoke-Shellcode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/PowerShell/Invoke-Shellcode.ps1 -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/Python/ConvertToShellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/Python/ConvertToShellcode.py -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/Python/Python.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/Python/Python.pyproj -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/Python/ShellcodeRDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/Python/ShellcodeRDI.py -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/README.md -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/ShellcodeRDI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/ShellcodeRDI.sln -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/ShellcodeRDI/GetProcAddressWithHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/ShellcodeRDI/GetProcAddressWithHash.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/ShellcodeRDI/ShellcodeRDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/ShellcodeRDI/ShellcodeRDI.c -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/ShellcodeRDI/ShellcodeRDI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/ShellcodeRDI/ShellcodeRDI.vcxproj -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/ShellcodeRDI/function_link_order.txt: -------------------------------------------------------------------------------- 1 | LoadDLL 2 | GetProcAddressWithHash -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/TestDLL/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/TestDLL/Resource.rc -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/TestDLL/TestDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/TestDLL/TestDLL.vcxproj -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/TestDLL/TestDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/TestDLL/TestDLL.vcxproj.filters -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/TestDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/TestDLL/dllmain.cpp -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/TestDLL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/TestDLL/resource.h -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/bin/.gitignore -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/lib/PowerShell/Get-FunctionHash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/lib/PowerShell/Get-FunctionHash.ps1 -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/lib/PowerShell/Get-LibSymbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/lib/PowerShell/Get-LibSymbols.ps1 -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/lib/PowerShell/Get-PEHeader.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/lib/PowerShell/Get-PEHeader.ps1 -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/lib/PowerShell/Out-Shellcode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/lib/PowerShell/Out-Shellcode.ps1 -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/lib/Python/EncodeBlobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/lib/Python/EncodeBlobs.py -------------------------------------------------------------------------------- /coding/projects/VeraCryptPasswordStealer/sRDI/lib/Python/FunctionToHash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/VeraCryptPasswordStealer/sRDI/lib/Python/FunctionToHash.py -------------------------------------------------------------------------------- /coding/projects/Windows_Security/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/.gitignore -------------------------------------------------------------------------------- /coding/projects/Windows_Security/Debug/SecurityHelper.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/Debug/SecurityHelper.idb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/Debug/SecurityHelper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/Debug/SecurityHelper.pdb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/Security.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/Security.sln -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/Debug/SecurityHelper.lib.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/Debug/SecurityHelper.lib.recipe -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/Debug/SecurityHelper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/Debug/SecurityHelper.log -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/SecurityHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/SecurityHelper.cpp -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/SecurityHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/SecurityHelper.h -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/SecurityHelper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/SecurityHelper.vcxproj -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/SecurityHelper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/SecurityHelper.vcxproj.filters -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/SecurityHelper.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/SecurityHelper.vcxproj.user -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/framework.h -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/pch.cpp -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/pch.h -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/x64/Debug/SecurityHelper.lib.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/x64/Debug/SecurityHelper.lib.recipe -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/x64/Debug/SecurityHelper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/x64/Debug/SecurityHelper.log -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/x64/Release/SecurityHelper.lib.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/x64/Release/SecurityHelper.lib.recipe -------------------------------------------------------------------------------- /coding/projects/Windows_Security/SecurityHelper/x64/Release/SecurityHelper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/SecurityHelper/x64/Release/SecurityHelper.log -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/elevate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/elevate.cpp -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/elevate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/elevate.vcxproj -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/elevate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/elevate.vcxproj.filters -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/elevate.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/elevate.vcxproj.user -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/x64/Release/elevate.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/x64/Release/elevate.exe.recipe -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/x64/Release/elevate.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/x64/Release/elevate.iobj -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/x64/Release/elevate.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/x64/Release/elevate.ipdb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/x64/Release/elevate.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/x64/Release/elevate.log -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/x64/Release/elevate.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/x64/Release/elevate.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/x64/Release/elevate.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/x64/Release/elevate.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/x64/Release/elevate.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/x64/Release/elevate.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/x64/Release/elevate.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/x64/Release/elevate.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/x64/Release/elevate.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/x64/Release/elevate.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/x64/Release/elevate.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/x64/Release/elevate.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/elevate/x64/Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/elevate/x64/Release/vc142.pdb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/imp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/imp.cpp -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/imp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/imp.vcxproj -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/imp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/imp.vcxproj.filters -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/imp.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/imp.vcxproj.user -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/x64/Release/imp.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/x64/Release/imp.exe.recipe -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/x64/Release/imp.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/x64/Release/imp.iobj -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/x64/Release/imp.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/x64/Release/imp.ipdb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/x64/Release/imp.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/x64/Release/imp.log -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/x64/Release/imp.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/x64/Release/imp.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/x64/Release/imp.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/x64/Release/imp.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/x64/Release/imp.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/x64/Release/imp.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/x64/Release/imp.tlog/imp.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/x64/Release/imp.tlog/imp.lastbuildstate -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/x64/Release/imp.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/x64/Release/imp.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/x64/Release/imp.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/x64/Release/imp.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/x64/Release/imp.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/x64/Release/imp.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/imp/x64/Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/imp/x64/Release/vc142.pdb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/runas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/runas.cpp -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/runas.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/runas.vcxproj -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/runas.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/runas.vcxproj.filters -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/runas.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/runas.vcxproj.user -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/x64/Release/runas.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/x64/Release/runas.exe.recipe -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/x64/Release/runas.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/x64/Release/runas.iobj -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/x64/Release/runas.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/x64/Release/runas.ipdb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/x64/Release/runas.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/x64/Release/runas.log -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/x64/Release/runas.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/x64/Release/runas.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/x64/Release/runas.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/x64/Release/runas.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/x64/Release/runas.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/x64/Release/runas.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/x64/Release/runas.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/x64/Release/runas.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/x64/Release/runas.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/x64/Release/runas.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/x64/Release/runas.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/x64/Release/runas.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/x64/Release/runas.tlog/runas.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/x64/Release/runas.tlog/runas.lastbuildstate -------------------------------------------------------------------------------- /coding/projects/Windows_Security/runas/x64/Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/runas/x64/Release/vc142.pdb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/token.cpp -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/token.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/token.vcxproj -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/token.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/token.vcxproj.filters -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/token.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/token.vcxproj.user -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/x64/Release/token.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/x64/Release/token.exe.recipe -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/x64/Release/token.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/x64/Release/token.iobj -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/x64/Release/token.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/x64/Release/token.ipdb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/x64/Release/token.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/x64/Release/token.log -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/x64/Release/token.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/x64/Release/token.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/x64/Release/token.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/x64/Release/token.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/x64/Release/token.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/x64/Release/token.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/x64/Release/token.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/x64/Release/token.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/x64/Release/token.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/x64/Release/token.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/x64/Release/token.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/x64/Release/token.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/x64/Release/token.tlog/token.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/x64/Release/token.tlog/token.lastbuildstate -------------------------------------------------------------------------------- /coding/projects/Windows_Security/token/x64/Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/token/x64/Release/vc142.pdb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/wellknownsids/wellknownsids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/wellknownsids/wellknownsids.cpp -------------------------------------------------------------------------------- /coding/projects/Windows_Security/wellknownsids/wellknownsids.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/wellknownsids/wellknownsids.vcxproj -------------------------------------------------------------------------------- /coding/projects/Windows_Security/wellknownsids/wellknownsids.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/wellknownsids/wellknownsids.vcxproj.filters -------------------------------------------------------------------------------- /coding/projects/Windows_Security/wellknownsids/wellknownsids.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/wellknownsids/wellknownsids.vcxproj.user -------------------------------------------------------------------------------- /coding/projects/Windows_Security/wellknownsids/x64/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/wellknownsids/x64/Debug/vc142.idb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/wellknownsids/x64/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/wellknownsids/x64/Debug/vc142.pdb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/wellknownsids/x64/Debug/wellknownsids.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/wellknownsids/x64/Debug/wellknownsids.log -------------------------------------------------------------------------------- /coding/projects/Windows_Security/wellknownsids/x64/Debug/wellknownsids.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coding/projects/Windows_Security/wellknownsids/x64/Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/wellknownsids/x64/Release/vc142.pdb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/wellknownsids/x64/Release/wellknownsids.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/wellknownsids/x64/Release/wellknownsids.exe.recipe -------------------------------------------------------------------------------- /coding/projects/Windows_Security/wellknownsids/x64/Release/wellknownsids.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/wellknownsids/x64/Release/wellknownsids.iobj -------------------------------------------------------------------------------- /coding/projects/Windows_Security/wellknownsids/x64/Release/wellknownsids.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/wellknownsids/x64/Release/wellknownsids.ipdb -------------------------------------------------------------------------------- /coding/projects/Windows_Security/wellknownsids/x64/Release/wellknownsids.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/Windows_Security/wellknownsids/x64/Release/wellknownsids.log -------------------------------------------------------------------------------- /coding/projects/WoW64/aesencryptstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/WoW64/aesencryptstring.py -------------------------------------------------------------------------------- /coding/projects/WoW64/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/WoW64/compile.bat -------------------------------------------------------------------------------- /coding/projects/WoW64/execute64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/WoW64/execute64.bin -------------------------------------------------------------------------------- /coding/projects/WoW64/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/WoW64/implant.cpp -------------------------------------------------------------------------------- /coding/projects/WoW64/wownative.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/projects/WoW64/wownative.bin -------------------------------------------------------------------------------- /coding/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/coding/readme.md -------------------------------------------------------------------------------- /covenant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/covenant.md -------------------------------------------------------------------------------- /defense-evasion/Application-Allowlisting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/defense-evasion/Application-Allowlisting.md -------------------------------------------------------------------------------- /defense-evasion/Driver-Attacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/defense-evasion/Driver-Attacks.md -------------------------------------------------------------------------------- /defense-evasion/Endpoint-Detection-Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/defense-evasion/Endpoint-Detection-Response.md -------------------------------------------------------------------------------- /defense-evasion/Evading-Static-Detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/defense-evasion/Evading-Static-Detection.md -------------------------------------------------------------------------------- /defense-evasion/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/defense-evasion/General.md -------------------------------------------------------------------------------- /defense-evasion/LSASS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/defense-evasion/LSASS.md -------------------------------------------------------------------------------- /defense-evasion/Microsoft-Defender-and-Firewall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/defense-evasion/Microsoft-Defender-and-Firewall.md -------------------------------------------------------------------------------- /defense-evasion/PowerShell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/defense-evasion/PowerShell.md -------------------------------------------------------------------------------- /defense-evasion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/defense-evasion/README.md -------------------------------------------------------------------------------- /defense-evasion/Sysmon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/defense-evasion/Sysmon.md -------------------------------------------------------------------------------- /defense-evasion/Windbg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/defense-evasion/Windbg.md -------------------------------------------------------------------------------- /hashcracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/hashcracking.md -------------------------------------------------------------------------------- /infrastructure/bufferoverflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/infrastructure/bufferoverflow.md -------------------------------------------------------------------------------- /infrastructure/bufferoverflow/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/infrastructure/bufferoverflow/exploit.py -------------------------------------------------------------------------------- /infrastructure/bufferoverflow/fuzzing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/infrastructure/bufferoverflow/fuzzing.py -------------------------------------------------------------------------------- /infrastructure/enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/infrastructure/enumeration.md -------------------------------------------------------------------------------- /infrastructure/exploitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/infrastructure/exploitation.md -------------------------------------------------------------------------------- /infrastructure/pivoting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/infrastructure/pivoting.md -------------------------------------------------------------------------------- /infrastructure/privesc_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/infrastructure/privesc_linux.md -------------------------------------------------------------------------------- /infrastructure/privesc_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/infrastructure/privesc_windows.md -------------------------------------------------------------------------------- /infrastructure/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/infrastructure/readme.md -------------------------------------------------------------------------------- /metasploit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/metasploit.md -------------------------------------------------------------------------------- /misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/misc.md -------------------------------------------------------------------------------- /python_dependancies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/python_dependancies.md -------------------------------------------------------------------------------- /web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/web.md -------------------------------------------------------------------------------- /windows-ad/Domain-Enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/windows-ad/Domain-Enumeration.md -------------------------------------------------------------------------------- /windows-ad/Domain-Persistence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/windows-ad/Domain-Persistence.md -------------------------------------------------------------------------------- /windows-ad/Domain-Privilege-Escalation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/windows-ad/Domain-Privilege-Escalation.md -------------------------------------------------------------------------------- /windows-ad/Host-Persistence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/windows-ad/Host-Persistence.md -------------------------------------------------------------------------------- /windows-ad/Host-Reconnaissance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/windows-ad/Host-Reconnaissance.md -------------------------------------------------------------------------------- /windows-ad/Initial-Access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/windows-ad/Initial-Access.md -------------------------------------------------------------------------------- /windows-ad/Lateral-Movement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/windows-ad/Lateral-Movement.md -------------------------------------------------------------------------------- /windows-ad/Post-Exploitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/windows-ad/Post-Exploitation.md -------------------------------------------------------------------------------- /windows-ad/linux_ad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/windows-ad/linux_ad.md -------------------------------------------------------------------------------- /windows-ad/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/windows-ad/readme.md -------------------------------------------------------------------------------- /windows-ad/relaying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/windows-ad/relaying.md -------------------------------------------------------------------------------- /windows_security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/RedTeaming_CheatSheet/HEAD/windows_security.md --------------------------------------------------------------------------------