├── Assembly ├── Linx86-64 │ ├── Readme.md │ ├── call_program │ │ ├── call_me │ │ ├── call_me.asm │ │ ├── call_me.assembly │ │ └── call_me.o │ ├── execve │ │ ├── Readme.md │ │ ├── beautify.py │ │ ├── call_me │ │ ├── call_me.asm │ │ ├── call_me.assembly │ │ ├── call_me.o │ │ ├── call_me.so │ │ ├── dump.txt │ │ ├── system.bin │ │ ├── system.c │ │ └── system_O3.bin │ ├── fork_execve │ │ ├── Readme.md │ │ ├── beautify.py │ │ ├── call_me │ │ ├── call_me.asm │ │ ├── call_me.assembly │ │ ├── call_me.o │ │ ├── dump.txt │ │ ├── how-to │ │ ├── system.bin │ │ ├── system.c │ │ └── useful.txt │ ├── fork_execve_shell │ │ ├── Readme.md │ │ ├── beautify.py │ │ ├── call_me │ │ ├── call_me.asm │ │ ├── call_me.assembly │ │ ├── call_me.o │ │ ├── dump.txt │ │ ├── how-to │ │ ├── system.bin │ │ ├── system.c │ │ └── useful.txt │ ├── hello_world │ │ ├── hello │ │ ├── hello.o │ │ └── hello_world.asm │ ├── print_args │ │ ├── print_args │ │ ├── print_args.asm │ │ ├── print_args.assembly │ │ └── print_args.o │ └── push_ret │ │ ├── test │ │ ├── test.asm │ │ ├── test.assembly │ │ ├── test.bin │ │ └── test.o ├── Readme.md ├── Winx32 │ ├── Readme.md │ ├── hellow.asm │ ├── hellow.exe │ ├── hellow.lst │ └── hellow.obj └── Winx64 │ ├── Readme.md │ ├── asm_1 │ ├── hello-win.asm │ ├── hello-win.exe │ ├── hello-win.obj │ ├── hello64.asm │ ├── hello64.fas │ ├── hello64.lst │ ├── hello64.obj │ ├── make │ ├── test.exe │ └── test64.exe │ ├── asm_2 │ ├── hello.asm │ ├── hello.exe │ ├── hello.lst │ ├── hello_new.assembly │ ├── hello_new.exe │ └── hello_new.obj │ ├── call_stack │ ├── Readme.md │ ├── main_clean.cpp │ ├── main_clean.exe │ ├── main_dirty.cpp │ ├── payload.asm │ └── ramp.asm │ └── payloads │ ├── 1.popcalc │ ├── popcalc.asm │ ├── popcalc.exe │ └── popcalc.o │ ├── 2.cmd │ ├── new_cmd.asm │ ├── new_cmd.exe │ └── new_cmd.o │ ├── 3.powershell_multi_command │ ├── new_powershell.asm │ ├── new_powershell.exe │ └── new_powershell.o │ ├── 4.changable_api │ ├── Readme.md │ ├── any_api.asm │ ├── any_api.exe │ └── any_api.o │ ├── 5.ZeroTotal │ ├── Readme.md │ └── calc │ │ └── calc_binja.bin │ ├── 6.meterpreter │ ├── Readme.md │ └── meterpreter_stageless.bin │ └── Readme.md ├── C# ├── CreateProcess │ ├── CreateProcess.sln │ ├── CreateProcess │ │ ├── CreateProcess.csproj │ │ ├── Program.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── CreateProcess.deps.json │ │ │ │ ├── CreateProcess.dll │ │ │ │ ├── CreateProcess.exe │ │ │ │ ├── CreateProcess.pdb │ │ │ │ ├── CreateProcess.runtimeconfig.dev.json │ │ │ │ └── CreateProcess.runtimeconfig.json │ │ └── obj │ │ │ ├── CreateProcess.csproj.nuget.dgspec.json │ │ │ ├── CreateProcess.csproj.nuget.g.props │ │ │ ├── CreateProcess.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── CreateProcess.AssemblyInfo.cs │ │ │ │ ├── CreateProcess.AssemblyInfoInputs.cache │ │ │ │ ├── CreateProcess.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── CreateProcess.assets.cache │ │ │ │ ├── CreateProcess.csproj.AssemblyReference.cache │ │ │ │ ├── CreateProcess.csproj.CoreCompileInputs.cache │ │ │ │ ├── CreateProcess.csproj.FileListAbsolute.txt │ │ │ │ ├── CreateProcess.dll │ │ │ │ ├── CreateProcess.genruntimeconfig.cache │ │ │ │ ├── CreateProcess.pdb │ │ │ │ └── apphost.exe │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── Readme.md ├── DInvoke │ ├── CreateProcess_DInvoke │ │ ├── ConsoleApp1 │ │ │ ├── ConsoleApp1.sln │ │ │ └── ConsoleApp1 │ │ │ │ ├── ConsoleApp1.csproj │ │ │ │ ├── Program.cs │ │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ ├── ConsoleApp1.deps.json │ │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ │ ├── ConsoleApp1.exe │ │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ │ ├── ConsoleApp1.runtimeconfig.dev.json │ │ │ │ │ ├── ConsoleApp1.runtimeconfig.json │ │ │ │ │ ├── DInvoke.dll │ │ │ │ │ └── DInvoke.pdb │ │ │ │ └── obj │ │ │ │ ├── ConsoleApp1.csproj.nuget.dgspec.json │ │ │ │ ├── ConsoleApp1.csproj.nuget.g.props │ │ │ │ ├── ConsoleApp1.csproj.nuget.g.targets │ │ │ │ ├── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ ├── ConsoleApp1.AssemblyInfo.cs │ │ │ │ │ ├── ConsoleApp1.AssemblyInfoInputs.cache │ │ │ │ │ ├── ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ │ ├── ConsoleApp1.assets.cache │ │ │ │ │ ├── ConsoleApp1.csproj.AssemblyReference.cache │ │ │ │ │ ├── ConsoleApp1.csproj.CopyComplete │ │ │ │ │ ├── ConsoleApp1.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── ConsoleApp1.csproj.FileListAbsolute.txt │ │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ │ ├── ConsoleApp1.genruntimeconfig.cache │ │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ │ └── apphost.exe │ │ │ │ ├── project.assets.json │ │ │ │ └── project.nuget.cache │ │ └── Readme.md │ ├── MessageBoxW_DIvoke │ │ ├── MessageBoxW_DIvoke.sln │ │ └── MessageBoxW_DIvoke │ │ │ ├── MessageBoxW_DInvoke.csproj │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── DInvoke.dll │ │ │ │ ├── DInvoke.pdb │ │ │ │ ├── MessageBoxW_DInvoke.deps.json │ │ │ │ ├── MessageBoxW_DInvoke.dll │ │ │ │ ├── MessageBoxW_DInvoke.exe │ │ │ │ ├── MessageBoxW_DInvoke.pdb │ │ │ │ ├── MessageBoxW_DInvoke.runtimeconfig.dev.json │ │ │ │ └── MessageBoxW_DInvoke.runtimeconfig.json │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── DInvoke.dll │ │ │ │ ├── MessageBoxW_DInvoke.AssemblyInfo.cs │ │ │ │ ├── MessageBoxW_DInvoke.AssemblyInfoInputs.cache │ │ │ │ ├── MessageBoxW_DInvoke.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── MessageBoxW_DInvoke.assets.cache │ │ │ │ ├── MessageBoxW_DInvoke.csproj.AssemblyReference.cache │ │ │ │ ├── MessageBoxW_DInvoke.csproj.CopyComplete │ │ │ │ ├── MessageBoxW_DInvoke.csproj.CoreCompileInputs.cache │ │ │ │ ├── MessageBoxW_DInvoke.csproj.FileListAbsolute.txt │ │ │ │ ├── MessageBoxW_DInvoke.dll │ │ │ │ ├── MessageBoxW_DInvoke.genruntimeconfig.cache │ │ │ │ ├── MessageBoxW_DInvoke.pdb │ │ │ │ ├── MessageBoxW_DIvoke.AssemblyInfo.cs │ │ │ │ ├── MessageBoxW_DIvoke.AssemblyInfoInputs.cache │ │ │ │ ├── MessageBoxW_DIvoke.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── MessageBoxW_DIvoke.assets.cache │ │ │ │ ├── MessageBoxW_DIvoke.csproj.AssemblyReference.cache │ │ │ │ └── apphost.exe │ │ │ ├── MessageBoxW_DInvoke.csproj.nuget.dgspec.json │ │ │ ├── MessageBoxW_DInvoke.csproj.nuget.g.props │ │ │ ├── MessageBoxW_DInvoke.csproj.nuget.g.targets │ │ │ ├── MessageBoxW_DIvoke.csproj.nuget.dgspec.json │ │ │ ├── MessageBoxW_DIvoke.csproj.nuget.g.props │ │ │ ├── MessageBoxW_DIvoke.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── Readme.md │ └── Syscalls_DInvoke │ │ ├── ConsoleApp1 │ │ ├── ConsoleApp1.sln │ │ └── ConsoleApp1 │ │ │ ├── ConsoleApp1.csproj │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ConsoleApp1.deps.json │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.exe │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ ├── ConsoleApp1.runtimeconfig.dev.json │ │ │ │ ├── ConsoleApp1.runtimeconfig.json │ │ │ │ ├── DInvoke.dll │ │ │ │ └── DInvoke.pdb │ │ │ └── obj │ │ │ ├── ConsoleApp1.csproj.nuget.dgspec.json │ │ │ ├── ConsoleApp1.csproj.nuget.g.props │ │ │ ├── ConsoleApp1.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ConsoleApp1.AssemblyInfo.cs │ │ │ │ ├── ConsoleApp1.AssemblyInfoInputs.cache │ │ │ │ ├── ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── ConsoleApp1.assets.cache │ │ │ │ ├── ConsoleApp1.csproj.AssemblyReference.cache │ │ │ │ ├── ConsoleApp1.csproj.CopyComplete │ │ │ │ ├── ConsoleApp1.csproj.CoreCompileInputs.cache │ │ │ │ ├── ConsoleApp1.csproj.FileListAbsolute.txt │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.genruntimeconfig.cache │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ └── apphost.exe │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ │ └── Readme.md ├── HookBypass │ ├── ConsoleApp1 │ │ ├── ConsoleApp1.sln │ │ └── ConsoleApp1 │ │ │ ├── ConsoleApp1.csproj │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ConsoleApp1.deps.json │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.exe │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ ├── ConsoleApp1.runtimeconfig.dev.json │ │ │ │ ├── ConsoleApp1.runtimeconfig.json │ │ │ │ ├── DInvoke.dll │ │ │ │ └── DInvoke.pdb │ │ │ └── obj │ │ │ ├── ConsoleApp1.csproj.nuget.dgspec.json │ │ │ ├── ConsoleApp1.csproj.nuget.g.props │ │ │ ├── ConsoleApp1.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ConsoleApp1.AssemblyInfo.cs │ │ │ │ ├── ConsoleApp1.AssemblyInfoInputs.cache │ │ │ │ ├── ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── ConsoleApp1.assets.cache │ │ │ │ ├── ConsoleApp1.csproj.AssemblyReference.cache │ │ │ │ ├── ConsoleApp1.csproj.CopyComplete │ │ │ │ ├── ConsoleApp1.csproj.CoreCompileInputs.cache │ │ │ │ ├── ConsoleApp1.csproj.FileListAbsolute.txt │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.genruntimeconfig.cache │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ └── apphost.exe │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── Readme.md ├── Ordinal │ ├── Readme.md │ ├── message_box_ordinal.sln │ └── message_box_ordinal │ │ ├── Program.cs │ │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── message_box_ordinal.deps.json │ │ │ ├── message_box_ordinal.dll │ │ │ ├── message_box_ordinal.exe │ │ │ ├── message_box_ordinal.pdb │ │ │ ├── message_box_ordinal.runtimeconfig.dev.json │ │ │ └── message_box_ordinal.runtimeconfig.json │ │ ├── message_box_ordinal.csproj │ │ └── obj │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── apphost.exe │ │ │ ├── message_box_ordinal.AssemblyInfo.cs │ │ │ ├── message_box_ordinal.AssemblyInfoInputs.cache │ │ │ ├── message_box_ordinal.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── message_box_ordinal.assets.cache │ │ │ ├── message_box_ordinal.csproj.CoreCompileInputs.cache │ │ │ ├── message_box_ordinal.csproj.FileListAbsolute.txt │ │ │ ├── message_box_ordinal.dll │ │ │ ├── message_box_ordinal.genruntimeconfig.cache │ │ │ └── message_box_ordinal.pdb │ │ ├── message_box_ordinal.csproj.nuget.dgspec.json │ │ ├── message_box_ordinal.csproj.nuget.g.props │ │ ├── message_box_ordinal.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── PInvoke │ ├── PInvoke.sln │ ├── PInvoke │ │ ├── PInvoke.csproj │ │ ├── Program.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── PInvoke.deps.json │ │ │ │ ├── PInvoke.dll │ │ │ │ ├── PInvoke.exe │ │ │ │ ├── PInvoke.pdb │ │ │ │ ├── PInvoke.runtimeconfig.dev.json │ │ │ │ └── PInvoke.runtimeconfig.json │ │ └── obj │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── PInvoke.AssemblyInfo.cs │ │ │ │ ├── PInvoke.AssemblyInfoInputs.cache │ │ │ │ ├── PInvoke.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── PInvoke.assets.cache │ │ │ │ ├── PInvoke.csproj.AssemblyReference.cache │ │ │ │ ├── PInvoke.csproj.CoreCompileInputs.cache │ │ │ │ ├── PInvoke.csproj.FileListAbsolute.txt │ │ │ │ ├── PInvoke.dll │ │ │ │ ├── PInvoke.genruntimeconfig.cache │ │ │ │ ├── PInvoke.pdb │ │ │ │ └── apphost.exe │ │ │ ├── PInvoke.csproj.nuget.dgspec.json │ │ │ ├── PInvoke.csproj.nuget.g.props │ │ │ ├── PInvoke.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── Readme.md ├── ProcessInjection │ ├── ProcessInjection_CreateRemoteThread │ │ └── ConsoleApp1 │ │ │ ├── ConsoleApp1.sln │ │ │ └── ConsoleApp1 │ │ │ ├── ConsoleApp1.csproj │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ConsoleApp1.deps.json │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.exe │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ ├── ConsoleApp1.runtimeconfig.dev.json │ │ │ │ └── ConsoleApp1.runtimeconfig.json │ │ │ └── obj │ │ │ ├── ConsoleApp1.csproj.nuget.dgspec.json │ │ │ ├── ConsoleApp1.csproj.nuget.g.props │ │ │ ├── ConsoleApp1.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ConsoleApp1.AssemblyInfo.cs │ │ │ │ ├── ConsoleApp1.AssemblyInfoInputs.cache │ │ │ │ ├── ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── ConsoleApp1.assets.cache │ │ │ │ ├── ConsoleApp1.csproj.CoreCompileInputs.cache │ │ │ │ ├── ConsoleApp1.csproj.FileListAbsolute.txt │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.genruntimeconfig.cache │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ └── apphost.exe │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── ProcessInjection_CreateThread │ │ └── ConsoleApp1 │ │ │ ├── ConsoleApp1.sln │ │ │ └── ConsoleApp1 │ │ │ ├── ConsoleApp1.csproj │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ConsoleApp1.deps.json │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.exe │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ ├── ConsoleApp1.runtimeconfig.dev.json │ │ │ │ └── ConsoleApp1.runtimeconfig.json │ │ │ └── obj │ │ │ ├── ConsoleApp1.csproj.nuget.dgspec.json │ │ │ ├── ConsoleApp1.csproj.nuget.g.props │ │ │ ├── ConsoleApp1.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ConsoleApp1.AssemblyInfo.cs │ │ │ │ ├── ConsoleApp1.AssemblyInfoInputs.cache │ │ │ │ ├── ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── ConsoleApp1.assets.cache │ │ │ │ ├── ConsoleApp1.csproj.CoreCompileInputs.cache │ │ │ │ ├── ConsoleApp1.csproj.FileListAbsolute.txt │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.genruntimeconfig.cache │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ └── apphost.exe │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── ProcessInjection_NtMapViewOfSection │ │ └── ConsoleApp1 │ │ │ ├── ConsoleApp1.sln │ │ │ └── ConsoleApp1 │ │ │ ├── ConsoleApp1.csproj │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ConsoleApp1.deps.json │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.exe │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ ├── ConsoleApp1.runtimeconfig.dev.json │ │ │ │ └── ConsoleApp1.runtimeconfig.json │ │ │ └── obj │ │ │ ├── ConsoleApp1.csproj.nuget.dgspec.json │ │ │ ├── ConsoleApp1.csproj.nuget.g.props │ │ │ ├── ConsoleApp1.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ConsoleApp1.AssemblyInfo.cs │ │ │ │ ├── ConsoleApp1.AssemblyInfoInputs.cache │ │ │ │ ├── ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── ConsoleApp1.assets.cache │ │ │ │ ├── ConsoleApp1.csproj.CoreCompileInputs.cache │ │ │ │ ├── ConsoleApp1.csproj.FileListAbsolute.txt │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.genruntimeconfig.cache │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ └── apphost.exe │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── ProcessInjection_QueueUserAPC │ │ └── ConsoleApp1 │ │ │ ├── ConsoleApp1.sln │ │ │ └── ConsoleApp1 │ │ │ ├── ConsoleApp1.csproj │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ConsoleApp1.deps.json │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.exe │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ ├── ConsoleApp1.runtimeconfig.dev.json │ │ │ │ └── ConsoleApp1.runtimeconfig.json │ │ │ └── obj │ │ │ ├── ConsoleApp1.csproj.nuget.dgspec.json │ │ │ ├── ConsoleApp1.csproj.nuget.g.props │ │ │ ├── ConsoleApp1.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ConsoleApp1.AssemblyInfo.cs │ │ │ │ ├── ConsoleApp1.AssemblyInfoInputs.cache │ │ │ │ ├── ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── ConsoleApp1.assets.cache │ │ │ │ ├── ConsoleApp1.csproj.CoreCompileInputs.cache │ │ │ │ ├── ConsoleApp1.csproj.FileListAbsolute.txt │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.genruntimeconfig.cache │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ └── apphost.exe │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── Readme.md └── Readme.md ├── C ├── Readme.md ├── code_exec │ ├── Readme.md │ ├── system.bin │ └── system.c ├── custom_payload │ ├── Readme.md │ ├── beautify.py │ ├── call_me │ ├── call_me.asm │ ├── call_me.assembly │ ├── call_me.o │ ├── call_me_2.bak │ ├── dump.txt │ ├── how-to │ ├── system.bin │ ├── system.c │ └── useful.txt ├── meterpreter │ ├── Readme.md │ ├── meterpreter_re_me.exe │ ├── meterpreter_re_me_x64.c │ ├── meterpreter_re_me_x86.c │ ├── patchmeup_meterpreter.c │ └── patchmeup_meterpreter.exe └── undetectable │ ├── compile.bat │ ├── keylogger.h │ ├── undetectable.c │ └── undetectable.exe ├── Certs ├── Certificate-Steve S.pdf ├── Machine_Learning_for_Red_Teams_Steve S - 2024-06-05.pdf ├── Malware Development Advanced - Vol.1-certificate.pdf ├── Malware Development Advanced - Vol.2-certificate.pdf ├── RTMLS_2024-06-14.pdf ├── Readme.md ├── Red-Team-Ops-Completion.jpg ├── Red-Team-Ops-II-Completion.jpg ├── Sektor7_Malware Development Essentials-certificate.pdf ├── Sektor7_Malware Development Intermediate-certificate.pdf ├── Sektor7_Windows Evasion-certificate.pdf ├── THM-JrPenTester.png ├── THM-Offensive_Pentesting.png ├── THM-Red_Team_Learning_Path.png ├── Udemy_Linux-PEAS.jpg ├── Udemy_RE-Exploit-Dev.jpg ├── Udemy_RE-Malware-Net-Java.jpg ├── Udemy_RE-Radare2.jpg ├── Udemy_RE-Windows-GUI.jpg ├── Udemy_Windows-PEAS.jpg ├── Udemy_build_undetectable_malware_in_c.jpg ├── VHL_Advanced+_Certificate.pdf ├── VHL_Basic_Certificate.pdf ├── ZPS_DevOps_For_Pentesters.jpg ├── certificate-bof-development-tradecraft-683848388a4f81dac50a9eec.pdf └── zps_initial_access_cert.jpg ├── Cpp ├── BYOdll │ ├── version1 │ │ ├── Readme.md │ │ ├── beautify.py │ │ ├── compile.bat │ │ ├── implant.cpp │ │ └── implant.exe │ ├── version2 │ │ ├── Readme.md │ │ ├── aesencrypt.py │ │ ├── compile.bat │ │ ├── implant.cpp │ │ └── implant.exe │ └── version3 │ │ ├── Readme.md │ │ ├── compile.bat │ │ └── implant.cpp ├── Readme.md ├── badAsm │ ├── badAsm.exe │ ├── badAsm.exe.stackdump │ ├── badAsm_better.exe │ ├── badAsm_rx.exe │ ├── main.cpp │ ├── main_better.cpp │ └── main_rx.cpp ├── bad_fn_ptr │ ├── bad_fn_ptr.sln │ ├── bad_fn_ptr │ │ ├── bad_fn_ptr.cpp │ │ ├── bad_fn_ptr.vcxproj │ │ ├── bad_fn_ptr.vcxproj.filters │ │ ├── bad_fn_ptr.vcxproj.user │ │ └── x64 │ │ │ └── Debug │ │ │ ├── bad_fn_ptr.exe.recipe │ │ │ ├── bad_fn_ptr.log │ │ │ ├── bad_fn_ptr.obj │ │ │ ├── bad_fn_ptr.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── bad_fn_ptr.lastbuildstate │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ └── link.write.2u.tlog │ │ │ ├── vc143.idb │ │ │ └── vc143.pdb │ └── x64 │ │ └── Debug │ │ ├── bad_fn_ptr.exe │ │ ├── bad_fn_ptr.exp │ │ ├── bad_fn_ptr.lib │ │ └── bad_fn_ptr.pdb ├── call_stack │ ├── compile.bat │ ├── main_clean.cpp │ ├── main_clean.exe │ ├── main_dirty.cpp │ ├── main_dirty.exe │ ├── payload.asm │ ├── payload.o │ ├── ramp.asm │ └── ramp.o ├── clean_stacks │ ├── baseline.cpp │ ├── baseline.exe │ ├── implant.cpp │ ├── implant.exe │ ├── implant_backup_1.cpp │ ├── implant_backup_2.cpp │ ├── payload.asm │ ├── payload.o │ ├── ramp.asm │ └── ramp.o ├── create_process │ ├── CreateProcess.cpp │ ├── CreateProcess.exe │ └── Readme.md ├── crypter │ ├── compile.bat │ ├── crypter.exe │ ├── main.cpp │ ├── main.obj │ ├── out.txt │ └── test.txt ├── deceiving_defender │ ├── BigStackBypass │ │ ├── build_the_sleigh.py │ │ ├── compile.bat │ │ ├── implant.cpp │ │ ├── implant.exe │ │ ├── meterpreter │ │ │ ├── Readme.md │ │ │ ├── beautify.py │ │ │ ├── build_the_sleigh.py │ │ │ ├── compile.bat │ │ │ └── implant.cpp │ │ ├── sleight.txt │ │ ├── vt-results-2022-12-28.png │ │ ├── vt_results.txt │ │ └── windows-wallpaper.jpg │ ├── Readme.md │ ├── name_bypass │ │ ├── Readme.md │ │ ├── compile.bat │ │ ├── implant.cpp │ │ └── implant.exe │ └── one │ │ ├── compile.bat │ │ ├── implant.cpp │ │ ├── implant.exe │ │ └── implant.obj ├── embedding_payloads │ ├── Readme.md │ ├── x64 │ │ ├── calc_x64.bin │ │ ├── compile.bat │ │ ├── even_better_x64.exe │ │ ├── even_better_x64_PATCHED.exe │ │ ├── even_better_x64_PATCHED_goto_MAIN.exe │ │ ├── even_better_x64_reloc.exe │ │ ├── good.cpp │ │ ├── good_x64.exe │ │ └── test.c │ └── x86 │ │ ├── calc_payload_32.bin │ │ ├── compile.bat │ │ ├── even_better.exe │ │ ├── even_better_ansi.exe │ │ ├── good.cpp │ │ ├── good.exe │ │ ├── good.obj │ │ ├── good_no_names.exe │ │ ├── good_w_names.exe │ │ ├── x86_broken_log.txt │ │ └── x86_working_log.txt ├── hidden_mimikatz │ ├── Readme.md │ ├── mimikatz.exe │ └── wrapper │ │ ├── aesencrypt.py │ │ ├── compile.bat │ │ ├── favicon.ico │ │ ├── mimikatz.cpp │ │ ├── mimikatz.exe │ │ ├── mimikatz.obj │ │ ├── resources.h │ │ ├── resources.o │ │ ├── resources.rc │ │ ├── resources.res │ │ └── shellcode.bin ├── making_malware │ ├── Readme.md │ ├── implantv1 │ │ ├── beautify.py │ │ ├── compile.bat │ │ ├── implant.obj │ │ ├── implantv1.cpp │ │ ├── implantv1.exe │ │ ├── implantv1.obj │ │ └── xorencrypt.py │ ├── implantv2 │ │ ├── aesencrypt.py │ │ ├── compile.bat │ │ ├── implant.exe │ │ ├── implantv2.cpp │ │ ├── implantv2.cpp.bak │ │ ├── implantv2.obj │ │ ├── reverseDLL.bin │ │ ├── reverseDLL.txt │ │ └── reverseDLL │ │ │ ├── Python │ │ │ ├── ConvertToShellcode.py │ │ │ ├── Python.pyproj │ │ │ ├── ShellcodeRDI.py │ │ │ ├── ShellcodeRDI.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── ShellcodeRDI.cpython-311.pyc │ │ │ │ └── ShellcodeRDI.cpython-38.pyc │ │ │ └── reverseDLL.txt │ │ │ ├── compileDLL.bat │ │ │ ├── reverse.bin │ │ │ ├── reverse.dll │ │ │ ├── reverseDLL.bin │ │ │ └── reverseDLL.cpp │ ├── implantv3 │ │ ├── Main.cpp │ │ ├── Readme.md │ │ └── x64 │ │ │ └── Release │ │ │ ├── implant.exe │ │ │ └── implantv3.pdb │ ├── misc │ │ ├── mm#1 │ │ │ └── Main.cpp │ │ ├── mm#2 │ │ │ ├── Main.cpp │ │ │ └── Readme.md │ │ └── readme.md │ └── revshell │ │ ├── beautify.py │ │ ├── compile.bat │ │ ├── payload.out │ │ ├── reverse.cpp │ │ ├── reverse.exe │ │ ├── reverse.obj │ │ ├── reverseDLL.bin │ │ ├── reverseDLL.txt │ │ ├── reverseDLL │ │ ├── Python │ │ │ ├── ConvertToShellcode.py │ │ │ ├── Python.pyproj │ │ │ ├── ShellcodeRDI.py │ │ │ ├── ShellcodeRDI.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── ShellcodeRDI.cpython-311.pyc │ │ │ │ └── ShellcodeRDI.cpython-38.pyc │ │ │ └── reverseDLL.txt │ │ ├── compileDLL.bat │ │ ├── reverse.dll │ │ ├── reverseDLL.bin │ │ └── reverseDLL.cpp │ │ ├── reverseEXE.bin │ │ └── reverseEXE.txt ├── message_box │ ├── Readme.md │ ├── message_box.cpp │ └── message_box.exe ├── recursion_off_the_disk │ ├── ROTD │ │ ├── ROTD.exe │ │ ├── ROTD.pdb │ │ ├── ROTD_orig.exe │ │ ├── compile.bat │ │ ├── favicon.ico │ │ ├── resources.h │ │ ├── resources.o │ │ ├── resources.rc │ │ ├── resources.res │ │ ├── reverse_shell.bin │ │ ├── rotd.cpp │ │ ├── rotd.obj │ │ └── xorencrypt.py │ ├── Readme.md │ └── reverse_shell │ │ ├── compile.bat │ │ ├── reverse_shell.cpp │ │ ├── reverse_shell.exe │ │ └── reverse_shell.obj ├── rsrc_injection │ ├── Readme.md │ ├── compile.bat │ ├── favicon.ico │ ├── implant.cpp │ ├── implant.exe │ ├── implant.obj │ ├── msgbox64.bin │ ├── resources.h │ ├── resources.o │ ├── resources.rc │ ├── resources.res │ └── xorencrypt.py └── rsrc_injection_shell │ ├── Readme.md │ ├── compile.bat │ ├── favicon.ico │ ├── implant.cpp │ ├── implant.exe │ ├── implant.obj │ ├── implant_noemul.exe │ ├── resources.h │ ├── resources.o │ ├── resources.rc │ ├── resources.res │ ├── reverse_shell │ ├── compile.bat │ ├── reverse_shell.cpp │ ├── reverse_shell.exe │ ├── reverse_shell.obj │ └── shell.bin │ ├── shell.bin │ └── xorencrypt.py ├── LICENSE.md ├── Powershell ├── Readme.md └── amsi-patch.ps1 ├── Presentations ├── .placeholder └── Building Skynet_as_submitted.pptx ├── Python ├── PushingP │ ├── pushingpayloads.py │ └── pushingpayloadsv3.py ├── Readme.md ├── smuggler │ ├── OUT │ │ └── test.txt │ ├── Readme.md │ ├── in.txt │ ├── out.txt │ ├── smuggler.py │ └── test.txt └── utilities │ ├── Readme.md │ ├── aesencrypt.py │ ├── beautify.py │ └── xorencrypt.py ├── Readme.md └── Rust ├── CreateProcessA ├── Cargo.toml ├── Readme.md └── main.rs ├── Readme.md ├── peruns_fart ├── Cargo.toml ├── Readme.md └── main.rs ├── rust_implantv1 ├── implant_rust.exe └── main.rs ├── rust_implantv2 ├── Cargo.toml ├── Readme.md ├── main.rs └── rusty_implant.exe ├── rust_implantv3 ├── Cargo.toml ├── Readme.md ├── main.rs └── rusty_implantv3.exe ├── rust_implantv4 ├── Cargo.toml ├── Readme.md ├── main.rs └── rusty_implantv4.exe └── rusty_calc ├── Cargo.toml ├── Readme.md ├── main-original.rs └── main.rs /Assembly/Linx86-64/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/Readme.md -------------------------------------------------------------------------------- /Assembly/Linx86-64/call_program/call_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/call_program/call_me -------------------------------------------------------------------------------- /Assembly/Linx86-64/call_program/call_me.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/call_program/call_me.asm -------------------------------------------------------------------------------- /Assembly/Linx86-64/call_program/call_me.assembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/call_program/call_me.assembly -------------------------------------------------------------------------------- /Assembly/Linx86-64/call_program/call_me.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/call_program/call_me.o -------------------------------------------------------------------------------- /Assembly/Linx86-64/execve/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/execve/Readme.md -------------------------------------------------------------------------------- /Assembly/Linx86-64/execve/beautify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/execve/beautify.py -------------------------------------------------------------------------------- /Assembly/Linx86-64/execve/call_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/execve/call_me -------------------------------------------------------------------------------- /Assembly/Linx86-64/execve/call_me.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/execve/call_me.asm -------------------------------------------------------------------------------- /Assembly/Linx86-64/execve/call_me.assembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/execve/call_me.assembly -------------------------------------------------------------------------------- /Assembly/Linx86-64/execve/call_me.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/execve/call_me.o -------------------------------------------------------------------------------- /Assembly/Linx86-64/execve/call_me.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/execve/call_me.so -------------------------------------------------------------------------------- /Assembly/Linx86-64/execve/dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/execve/dump.txt -------------------------------------------------------------------------------- /Assembly/Linx86-64/execve/system.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/execve/system.bin -------------------------------------------------------------------------------- /Assembly/Linx86-64/execve/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/execve/system.c -------------------------------------------------------------------------------- /Assembly/Linx86-64/execve/system_O3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/execve/system_O3.bin -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve/Readme.md -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve/beautify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve/beautify.py -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve/call_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve/call_me -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve/call_me.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve/call_me.asm -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve/call_me.assembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve/call_me.assembly -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve/call_me.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve/call_me.o -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve/dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve/dump.txt -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve/how-to: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve/how-to -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve/system.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve/system.bin -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve/system.c -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve/useful.txt: -------------------------------------------------------------------------------- 1 | hexdump -s 0x1139 ./payload.bin -v -e '16/1 "%02x" "\n"' -n 200 2 | -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve_shell/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve_shell/Readme.md -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve_shell/beautify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve_shell/beautify.py -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve_shell/call_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve_shell/call_me -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve_shell/call_me.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve_shell/call_me.asm -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve_shell/call_me.assembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve_shell/call_me.assembly -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve_shell/call_me.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve_shell/call_me.o -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve_shell/dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve_shell/dump.txt -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve_shell/how-to: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve_shell/how-to -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve_shell/system.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve_shell/system.bin -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve_shell/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/fork_execve_shell/system.c -------------------------------------------------------------------------------- /Assembly/Linx86-64/fork_execve_shell/useful.txt: -------------------------------------------------------------------------------- 1 | hexdump -s 0x1139 ./payload.bin -v -e '16/1 "%02x" "\n"' -n 200 2 | -------------------------------------------------------------------------------- /Assembly/Linx86-64/hello_world/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/hello_world/hello -------------------------------------------------------------------------------- /Assembly/Linx86-64/hello_world/hello.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/hello_world/hello.o -------------------------------------------------------------------------------- /Assembly/Linx86-64/hello_world/hello_world.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/hello_world/hello_world.asm -------------------------------------------------------------------------------- /Assembly/Linx86-64/print_args/print_args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/print_args/print_args -------------------------------------------------------------------------------- /Assembly/Linx86-64/print_args/print_args.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/print_args/print_args.asm -------------------------------------------------------------------------------- /Assembly/Linx86-64/print_args/print_args.assembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/print_args/print_args.assembly -------------------------------------------------------------------------------- /Assembly/Linx86-64/print_args/print_args.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/print_args/print_args.o -------------------------------------------------------------------------------- /Assembly/Linx86-64/push_ret/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/push_ret/test -------------------------------------------------------------------------------- /Assembly/Linx86-64/push_ret/test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/push_ret/test.asm -------------------------------------------------------------------------------- /Assembly/Linx86-64/push_ret/test.assembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/push_ret/test.assembly -------------------------------------------------------------------------------- /Assembly/Linx86-64/push_ret/test.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assembly/Linx86-64/push_ret/test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Linx86-64/push_ret/test.o -------------------------------------------------------------------------------- /Assembly/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Readme.md -------------------------------------------------------------------------------- /Assembly/Winx32/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx32/Readme.md -------------------------------------------------------------------------------- /Assembly/Winx32/hellow.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx32/hellow.asm -------------------------------------------------------------------------------- /Assembly/Winx32/hellow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx32/hellow.exe -------------------------------------------------------------------------------- /Assembly/Winx32/hellow.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx32/hellow.lst -------------------------------------------------------------------------------- /Assembly/Winx32/hellow.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx32/hellow.obj -------------------------------------------------------------------------------- /Assembly/Winx64/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/Readme.md -------------------------------------------------------------------------------- /Assembly/Winx64/asm_1/hello-win.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_1/hello-win.asm -------------------------------------------------------------------------------- /Assembly/Winx64/asm_1/hello-win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_1/hello-win.exe -------------------------------------------------------------------------------- /Assembly/Winx64/asm_1/hello-win.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_1/hello-win.obj -------------------------------------------------------------------------------- /Assembly/Winx64/asm_1/hello64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_1/hello64.asm -------------------------------------------------------------------------------- /Assembly/Winx64/asm_1/hello64.fas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_1/hello64.fas -------------------------------------------------------------------------------- /Assembly/Winx64/asm_1/hello64.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_1/hello64.lst -------------------------------------------------------------------------------- /Assembly/Winx64/asm_1/hello64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_1/hello64.obj -------------------------------------------------------------------------------- /Assembly/Winx64/asm_1/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_1/make -------------------------------------------------------------------------------- /Assembly/Winx64/asm_1/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_1/test.exe -------------------------------------------------------------------------------- /Assembly/Winx64/asm_1/test64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_1/test64.exe -------------------------------------------------------------------------------- /Assembly/Winx64/asm_2/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_2/hello.asm -------------------------------------------------------------------------------- /Assembly/Winx64/asm_2/hello.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_2/hello.exe -------------------------------------------------------------------------------- /Assembly/Winx64/asm_2/hello.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_2/hello.lst -------------------------------------------------------------------------------- /Assembly/Winx64/asm_2/hello_new.assembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_2/hello_new.assembly -------------------------------------------------------------------------------- /Assembly/Winx64/asm_2/hello_new.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_2/hello_new.exe -------------------------------------------------------------------------------- /Assembly/Winx64/asm_2/hello_new.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/asm_2/hello_new.obj -------------------------------------------------------------------------------- /Assembly/Winx64/call_stack/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Assembly/Winx64/call_stack/main_clean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/call_stack/main_clean.cpp -------------------------------------------------------------------------------- /Assembly/Winx64/call_stack/main_clean.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/call_stack/main_clean.exe -------------------------------------------------------------------------------- /Assembly/Winx64/call_stack/main_dirty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/call_stack/main_dirty.cpp -------------------------------------------------------------------------------- /Assembly/Winx64/call_stack/payload.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/call_stack/payload.asm -------------------------------------------------------------------------------- /Assembly/Winx64/call_stack/ramp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/call_stack/ramp.asm -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/1.popcalc/popcalc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/1.popcalc/popcalc.asm -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/1.popcalc/popcalc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/1.popcalc/popcalc.exe -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/1.popcalc/popcalc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/1.popcalc/popcalc.o -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/2.cmd/new_cmd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/2.cmd/new_cmd.asm -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/2.cmd/new_cmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/2.cmd/new_cmd.exe -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/2.cmd/new_cmd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/2.cmd/new_cmd.o -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/3.powershell_multi_command/new_powershell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/3.powershell_multi_command/new_powershell.asm -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/3.powershell_multi_command/new_powershell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/3.powershell_multi_command/new_powershell.exe -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/3.powershell_multi_command/new_powershell.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/3.powershell_multi_command/new_powershell.o -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/4.changable_api/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/4.changable_api/Readme.md -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/4.changable_api/any_api.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/4.changable_api/any_api.asm -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/4.changable_api/any_api.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/4.changable_api/any_api.exe -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/4.changable_api/any_api.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/4.changable_api/any_api.o -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/5.ZeroTotal/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/5.ZeroTotal/Readme.md -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/5.ZeroTotal/calc/calc_binja.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/5.ZeroTotal/calc/calc_binja.bin -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/6.meterpreter/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/6.meterpreter/meterpreter_stageless.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/6.meterpreter/meterpreter_stageless.bin -------------------------------------------------------------------------------- /Assembly/Winx64/payloads/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Assembly/Winx64/payloads/Readme.md -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess.sln -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/CreateProcess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/CreateProcess.csproj -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/Program.cs -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/bin/Debug/netcoreapp3.1/CreateProcess.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/bin/Debug/netcoreapp3.1/CreateProcess.deps.json -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/bin/Debug/netcoreapp3.1/CreateProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/bin/Debug/netcoreapp3.1/CreateProcess.dll -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/bin/Debug/netcoreapp3.1/CreateProcess.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/bin/Debug/netcoreapp3.1/CreateProcess.exe -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/bin/Debug/netcoreapp3.1/CreateProcess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/bin/Debug/netcoreapp3.1/CreateProcess.pdb -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/bin/Debug/netcoreapp3.1/CreateProcess.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/bin/Debug/netcoreapp3.1/CreateProcess.runtimeconfig.dev.json -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/bin/Debug/netcoreapp3.1/CreateProcess.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/bin/Debug/netcoreapp3.1/CreateProcess.runtimeconfig.json -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/CreateProcess.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/obj/CreateProcess.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/CreateProcess.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/obj/CreateProcess.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/CreateProcess.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/obj/CreateProcess.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b351b3d00ca3c03e51b59834718911d9c23098dd 2 | -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.assets.cache -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3fadf03217e11926521b06ed9b8085675261cf23 2 | -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.dll -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 3881e9f28961f9ea3c56435a33a20e8625ca3050 2 | -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/CreateProcess.pdb -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/obj/project.assets.json -------------------------------------------------------------------------------- /C#/CreateProcess/CreateProcess/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/CreateProcess/CreateProcess/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/CreateProcess/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1.sln -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.dev.json -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.json -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/DInvoke.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/DInvoke.dll -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/DInvoke.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/DInvoke.pdb -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0cbac02cf6b33ab9449e1ec02e8dbba2474e8080 2 | -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 890e13325aa239a8b4c339ecd90aadc0f11a8268 2 | -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 3b5c6a64568502b382a025d7d63fc56001b8cfc2 2 | -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/project.assets.json -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/CreateProcess_DInvoke/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/DInvoke/CreateProcess_DInvoke/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke.sln -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/MessageBoxW_DInvoke.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/MessageBoxW_DInvoke.csproj -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/Program.cs -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/DInvoke.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/DInvoke.dll -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/DInvoke.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/DInvoke.pdb -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/MessageBoxW_DInvoke.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/MessageBoxW_DInvoke.deps.json -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/MessageBoxW_DInvoke.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/MessageBoxW_DInvoke.dll -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/MessageBoxW_DInvoke.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/MessageBoxW_DInvoke.exe -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/MessageBoxW_DInvoke.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/MessageBoxW_DInvoke.pdb -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/MessageBoxW_DInvoke.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/MessageBoxW_DInvoke.runtimeconfig.dev.json -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/MessageBoxW_DInvoke.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/bin/Debug/netcoreapp3.1/MessageBoxW_DInvoke.runtimeconfig.json -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/DInvoke.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/DInvoke.dll -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 43c8296b4e0a8fdf49a8348a6a774af279b8e8ec 2 | -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.assets.cache -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8080b4b6e0ab0736b80891287505de97fbf66b6c 2 | -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.dll -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 0a28cd972ee4b2cfc5ff5e631d3d6ec2b8dd35a3 2 | -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DInvoke.pdb -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DIvoke.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DIvoke.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DIvoke.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f1d791e42d3bccd1c48106d85910be18dbf5cba6 2 | -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DIvoke.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DIvoke.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DIvoke.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DIvoke.assets.cache -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/MessageBoxW_DIvoke.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/MessageBoxW_DInvoke.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/MessageBoxW_DInvoke.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/MessageBoxW_DInvoke.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/MessageBoxW_DInvoke.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/MessageBoxW_DInvoke.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/MessageBoxW_DInvoke.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/MessageBoxW_DIvoke.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/MessageBoxW_DIvoke.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/MessageBoxW_DIvoke.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/MessageBoxW_DIvoke.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/MessageBoxW_DIvoke.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/MessageBoxW_DIvoke.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/project.assets.json -------------------------------------------------------------------------------- /C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/MessageBoxW_DIvoke/MessageBoxW_DIvoke/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/DInvoke/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1.sln -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.dev.json -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.json -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/DInvoke.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/DInvoke.dll -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/DInvoke.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/DInvoke.pdb -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0cbac02cf6b33ab9449e1ec02e8dbba2474e8080 2 | -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 890e13325aa239a8b4c339ecd90aadc0f11a8268 2 | -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | b31ed79f3e4190b809f1aa8db22f513b40fba58a 2 | -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/project.assets.json -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/DInvoke/Syscalls_DInvoke/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/DInvoke/Syscalls_DInvoke/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1.sln -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.dev.json -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.json -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/DInvoke.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/DInvoke.dll -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/DInvoke.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/DInvoke.pdb -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0cbac02cf6b33ab9449e1ec02e8dbba2474e8080 2 | -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 890e13325aa239a8b4c339ecd90aadc0f11a8268 2 | -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | ee34b10399e914a8aedc3d5bcc7c2cad3704dcb8 2 | -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/project.assets.json -------------------------------------------------------------------------------- /C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/HookBypass/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/HookBypass/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /C#/Ordinal/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal.sln -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/Program.cs -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/bin/Debug/netcoreapp3.1/message_box_ordinal.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/bin/Debug/netcoreapp3.1/message_box_ordinal.deps.json -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/bin/Debug/netcoreapp3.1/message_box_ordinal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/bin/Debug/netcoreapp3.1/message_box_ordinal.dll -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/bin/Debug/netcoreapp3.1/message_box_ordinal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/bin/Debug/netcoreapp3.1/message_box_ordinal.exe -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/bin/Debug/netcoreapp3.1/message_box_ordinal.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/bin/Debug/netcoreapp3.1/message_box_ordinal.pdb -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/bin/Debug/netcoreapp3.1/message_box_ordinal.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/bin/Debug/netcoreapp3.1/message_box_ordinal.runtimeconfig.dev.json -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/bin/Debug/netcoreapp3.1/message_box_ordinal.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/bin/Debug/netcoreapp3.1/message_box_ordinal.runtimeconfig.json -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/message_box_ordinal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/message_box_ordinal.csproj -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 812328a406d511f0cb86ca1de9b6c979e8ce68f5 2 | -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.assets.cache -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 94ce58349191cbc449fdb3720ceffeb425f4bcfd 2 | -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.dll -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 46fa7d9c7209793a53c6eecb31254525cde9465c 2 | -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/obj/Debug/netcoreapp3.1/message_box_ordinal.pdb -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/message_box_ordinal.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/obj/message_box_ordinal.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/message_box_ordinal.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/obj/message_box_ordinal.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/message_box_ordinal.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/obj/message_box_ordinal.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/obj/project.assets.json -------------------------------------------------------------------------------- /C#/Ordinal/message_box_ordinal/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Ordinal/message_box_ordinal/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke.sln -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/PInvoke.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/PInvoke.csproj -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/Program.cs -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/bin/Debug/netcoreapp3.1/PInvoke.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/bin/Debug/netcoreapp3.1/PInvoke.deps.json -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/bin/Debug/netcoreapp3.1/PInvoke.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/bin/Debug/netcoreapp3.1/PInvoke.dll -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/bin/Debug/netcoreapp3.1/PInvoke.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/bin/Debug/netcoreapp3.1/PInvoke.exe -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/bin/Debug/netcoreapp3.1/PInvoke.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/bin/Debug/netcoreapp3.1/PInvoke.pdb -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/bin/Debug/netcoreapp3.1/PInvoke.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/bin/Debug/netcoreapp3.1/PInvoke.runtimeconfig.dev.json -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/bin/Debug/netcoreapp3.1/PInvoke.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/bin/Debug/netcoreapp3.1/PInvoke.runtimeconfig.json -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 9e757931411dfb9bdddde4d3b5e0787e30c22b30 2 | -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.assets.cache -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | fc9c814ed963a5f84495ebe65f08a3299e1d96f2 2 | -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.dll -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 9ef52f5bd7f4cff3d652c0e7935269a83934d959 2 | -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/PInvoke.pdb -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/PInvoke.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/obj/PInvoke.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/PInvoke.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/obj/PInvoke.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/PInvoke.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/obj/PInvoke.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/obj/project.assets.json -------------------------------------------------------------------------------- /C#/PInvoke/PInvoke/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/PInvoke/PInvoke/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/PInvoke/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1.sln -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0cbac02cf6b33ab9449e1ec02e8dbba2474e8080 2 | -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2daac1f55b0f9263d04ca399f0ab1f7cfe7a4d3e 2 | -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 3914a16dc66868dc2364d6ffe4a1fc74b6920dcb 2 | -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/project.assets.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateRemoteThread/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1.sln -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0cbac02cf6b33ab9449e1ec02e8dbba2474e8080 2 | -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2daac1f55b0f9263d04ca399f0ab1f7cfe7a4d3e 2 | -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | e744f908d881bf42cab133eb47ad3549e1832016 2 | -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/project.assets.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_CreateThread/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1.sln -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0cbac02cf6b33ab9449e1ec02e8dbba2474e8080 2 | -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2daac1f55b0f9263d04ca399f0ab1f7cfe7a4d3e 2 | -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | dbc5f2d2dde9ded4efa7a46af73bce5b7462ad86 2 | -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/project.assets.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_NtMapViewOfSection/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1.sln -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.deps.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.exe -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/bin/Debug/netcoreapp3.1/ConsoleApp1.runtimeconfig.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0cbac02cf6b33ab9449e1ec02e8dbba2474e8080 2 | -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.assets.cache -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2daac1f55b0f9263d04ca399f0ab1f7cfe7a4d3e 2 | -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | a20789d862bd7d7720a906d34c758f8b54de7636 2 | -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/project.assets.json -------------------------------------------------------------------------------- /C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/ProcessInjection/ProcessInjection_QueueUserAPC/ConsoleApp1/ConsoleApp1/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/ProcessInjection/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /C#/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C#/Readme.md -------------------------------------------------------------------------------- /C/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /C/code_exec/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /C/code_exec/system.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/code_exec/system.bin -------------------------------------------------------------------------------- /C/code_exec/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/code_exec/system.c -------------------------------------------------------------------------------- /C/custom_payload/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/custom_payload/Readme.md -------------------------------------------------------------------------------- /C/custom_payload/beautify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/custom_payload/beautify.py -------------------------------------------------------------------------------- /C/custom_payload/call_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/custom_payload/call_me -------------------------------------------------------------------------------- /C/custom_payload/call_me.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/custom_payload/call_me.asm -------------------------------------------------------------------------------- /C/custom_payload/call_me.assembly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/custom_payload/call_me.assembly -------------------------------------------------------------------------------- /C/custom_payload/call_me.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/custom_payload/call_me.o -------------------------------------------------------------------------------- /C/custom_payload/call_me_2.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/custom_payload/call_me_2.bak -------------------------------------------------------------------------------- /C/custom_payload/dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/custom_payload/dump.txt -------------------------------------------------------------------------------- /C/custom_payload/how-to: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/custom_payload/how-to -------------------------------------------------------------------------------- /C/custom_payload/system.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/custom_payload/system.bin -------------------------------------------------------------------------------- /C/custom_payload/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/custom_payload/system.c -------------------------------------------------------------------------------- /C/custom_payload/useful.txt: -------------------------------------------------------------------------------- 1 | hexdump -s 0x1139 ./payload.bin -v -e '16/1 "%02x" "\n"' -n 200 2 | -------------------------------------------------------------------------------- /C/meterpreter/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/meterpreter/Readme.md -------------------------------------------------------------------------------- /C/meterpreter/meterpreter_re_me.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/meterpreter/meterpreter_re_me.exe -------------------------------------------------------------------------------- /C/meterpreter/meterpreter_re_me_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/meterpreter/meterpreter_re_me_x64.c -------------------------------------------------------------------------------- /C/meterpreter/meterpreter_re_me_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/meterpreter/meterpreter_re_me_x86.c -------------------------------------------------------------------------------- /C/meterpreter/patchmeup_meterpreter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/meterpreter/patchmeup_meterpreter.c -------------------------------------------------------------------------------- /C/meterpreter/patchmeup_meterpreter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/meterpreter/patchmeup_meterpreter.exe -------------------------------------------------------------------------------- /C/undetectable/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/undetectable/compile.bat -------------------------------------------------------------------------------- /C/undetectable/keylogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/undetectable/keylogger.h -------------------------------------------------------------------------------- /C/undetectable/undetectable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/undetectable/undetectable.c -------------------------------------------------------------------------------- /C/undetectable/undetectable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/C/undetectable/undetectable.exe -------------------------------------------------------------------------------- /Certs/Certificate-Steve S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Certificate-Steve S.pdf -------------------------------------------------------------------------------- /Certs/Machine_Learning_for_Red_Teams_Steve S - 2024-06-05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Machine_Learning_for_Red_Teams_Steve S - 2024-06-05.pdf -------------------------------------------------------------------------------- /Certs/Malware Development Advanced - Vol.1-certificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Malware Development Advanced - Vol.1-certificate.pdf -------------------------------------------------------------------------------- /Certs/Malware Development Advanced - Vol.2-certificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Malware Development Advanced - Vol.2-certificate.pdf -------------------------------------------------------------------------------- /Certs/RTMLS_2024-06-14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/RTMLS_2024-06-14.pdf -------------------------------------------------------------------------------- /Certs/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Certs/Red-Team-Ops-Completion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Red-Team-Ops-Completion.jpg -------------------------------------------------------------------------------- /Certs/Red-Team-Ops-II-Completion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Red-Team-Ops-II-Completion.jpg -------------------------------------------------------------------------------- /Certs/Sektor7_Malware Development Essentials-certificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Sektor7_Malware Development Essentials-certificate.pdf -------------------------------------------------------------------------------- /Certs/Sektor7_Malware Development Intermediate-certificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Sektor7_Malware Development Intermediate-certificate.pdf -------------------------------------------------------------------------------- /Certs/Sektor7_Windows Evasion-certificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Sektor7_Windows Evasion-certificate.pdf -------------------------------------------------------------------------------- /Certs/THM-JrPenTester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/THM-JrPenTester.png -------------------------------------------------------------------------------- /Certs/THM-Offensive_Pentesting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/THM-Offensive_Pentesting.png -------------------------------------------------------------------------------- /Certs/THM-Red_Team_Learning_Path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/THM-Red_Team_Learning_Path.png -------------------------------------------------------------------------------- /Certs/Udemy_Linux-PEAS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Udemy_Linux-PEAS.jpg -------------------------------------------------------------------------------- /Certs/Udemy_RE-Exploit-Dev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Udemy_RE-Exploit-Dev.jpg -------------------------------------------------------------------------------- /Certs/Udemy_RE-Malware-Net-Java.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Udemy_RE-Malware-Net-Java.jpg -------------------------------------------------------------------------------- /Certs/Udemy_RE-Radare2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Udemy_RE-Radare2.jpg -------------------------------------------------------------------------------- /Certs/Udemy_RE-Windows-GUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Udemy_RE-Windows-GUI.jpg -------------------------------------------------------------------------------- /Certs/Udemy_Windows-PEAS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Udemy_Windows-PEAS.jpg -------------------------------------------------------------------------------- /Certs/Udemy_build_undetectable_malware_in_c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/Udemy_build_undetectable_malware_in_c.jpg -------------------------------------------------------------------------------- /Certs/VHL_Advanced+_Certificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/VHL_Advanced+_Certificate.pdf -------------------------------------------------------------------------------- /Certs/VHL_Basic_Certificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/VHL_Basic_Certificate.pdf -------------------------------------------------------------------------------- /Certs/ZPS_DevOps_For_Pentesters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/ZPS_DevOps_For_Pentesters.jpg -------------------------------------------------------------------------------- /Certs/certificate-bof-development-tradecraft-683848388a4f81dac50a9eec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/certificate-bof-development-tradecraft-683848388a4f81dac50a9eec.pdf -------------------------------------------------------------------------------- /Certs/zps_initial_access_cert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Certs/zps_initial_access_cert.jpg -------------------------------------------------------------------------------- /Cpp/BYOdll/version1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/BYOdll/version1/Readme.md -------------------------------------------------------------------------------- /Cpp/BYOdll/version1/beautify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/BYOdll/version1/beautify.py -------------------------------------------------------------------------------- /Cpp/BYOdll/version1/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/BYOdll/version1/compile.bat -------------------------------------------------------------------------------- /Cpp/BYOdll/version1/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/BYOdll/version1/implant.cpp -------------------------------------------------------------------------------- /Cpp/BYOdll/version1/implant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/BYOdll/version1/implant.exe -------------------------------------------------------------------------------- /Cpp/BYOdll/version2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/BYOdll/version2/Readme.md -------------------------------------------------------------------------------- /Cpp/BYOdll/version2/aesencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/BYOdll/version2/aesencrypt.py -------------------------------------------------------------------------------- /Cpp/BYOdll/version2/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/BYOdll/version2/compile.bat -------------------------------------------------------------------------------- /Cpp/BYOdll/version2/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/BYOdll/version2/implant.cpp -------------------------------------------------------------------------------- /Cpp/BYOdll/version2/implant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/BYOdll/version2/implant.exe -------------------------------------------------------------------------------- /Cpp/BYOdll/version3/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/BYOdll/version3/Readme.md -------------------------------------------------------------------------------- /Cpp/BYOdll/version3/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/BYOdll/version3/compile.bat -------------------------------------------------------------------------------- /Cpp/BYOdll/version3/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/BYOdll/version3/implant.cpp -------------------------------------------------------------------------------- /Cpp/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Cpp/badAsm/badAsm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/badAsm/badAsm.exe -------------------------------------------------------------------------------- /Cpp/badAsm/badAsm.exe.stackdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/badAsm/badAsm.exe.stackdump -------------------------------------------------------------------------------- /Cpp/badAsm/badAsm_better.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/badAsm/badAsm_better.exe -------------------------------------------------------------------------------- /Cpp/badAsm/badAsm_rx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/badAsm/badAsm_rx.exe -------------------------------------------------------------------------------- /Cpp/badAsm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/badAsm/main.cpp -------------------------------------------------------------------------------- /Cpp/badAsm/main_better.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/badAsm/main_better.cpp -------------------------------------------------------------------------------- /Cpp/badAsm/main_rx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/badAsm/main_rx.cpp -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr.sln -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/bad_fn_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/bad_fn_ptr.cpp -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/bad_fn_ptr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/bad_fn_ptr.vcxproj -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/bad_fn_ptr.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/bad_fn_ptr.vcxproj.filters -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/bad_fn_ptr.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/bad_fn_ptr.vcxproj.user -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.exe.recipe -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.log -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.obj -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/bad_fn_ptr.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/bad_fn_ptr.lastbuildstate -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/link.write.2u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/bad_fn_ptr.tlog/link.write.2u.tlog -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/vc143.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/vc143.idb -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/bad_fn_ptr/x64/Debug/vc143.pdb -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/x64/Debug/bad_fn_ptr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/x64/Debug/bad_fn_ptr.exe -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/x64/Debug/bad_fn_ptr.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/x64/Debug/bad_fn_ptr.exp -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/x64/Debug/bad_fn_ptr.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/x64/Debug/bad_fn_ptr.lib -------------------------------------------------------------------------------- /Cpp/bad_fn_ptr/x64/Debug/bad_fn_ptr.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/bad_fn_ptr/x64/Debug/bad_fn_ptr.pdb -------------------------------------------------------------------------------- /Cpp/call_stack/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/call_stack/compile.bat -------------------------------------------------------------------------------- /Cpp/call_stack/main_clean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/call_stack/main_clean.cpp -------------------------------------------------------------------------------- /Cpp/call_stack/main_clean.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/call_stack/main_clean.exe -------------------------------------------------------------------------------- /Cpp/call_stack/main_dirty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/call_stack/main_dirty.cpp -------------------------------------------------------------------------------- /Cpp/call_stack/main_dirty.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/call_stack/main_dirty.exe -------------------------------------------------------------------------------- /Cpp/call_stack/payload.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/call_stack/payload.asm -------------------------------------------------------------------------------- /Cpp/call_stack/payload.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/call_stack/payload.o -------------------------------------------------------------------------------- /Cpp/call_stack/ramp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/call_stack/ramp.asm -------------------------------------------------------------------------------- /Cpp/call_stack/ramp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/call_stack/ramp.o -------------------------------------------------------------------------------- /Cpp/clean_stacks/baseline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/clean_stacks/baseline.cpp -------------------------------------------------------------------------------- /Cpp/clean_stacks/baseline.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/clean_stacks/baseline.exe -------------------------------------------------------------------------------- /Cpp/clean_stacks/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/clean_stacks/implant.cpp -------------------------------------------------------------------------------- /Cpp/clean_stacks/implant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/clean_stacks/implant.exe -------------------------------------------------------------------------------- /Cpp/clean_stacks/implant_backup_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/clean_stacks/implant_backup_1.cpp -------------------------------------------------------------------------------- /Cpp/clean_stacks/implant_backup_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/clean_stacks/implant_backup_2.cpp -------------------------------------------------------------------------------- /Cpp/clean_stacks/payload.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/clean_stacks/payload.asm -------------------------------------------------------------------------------- /Cpp/clean_stacks/payload.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/clean_stacks/payload.o -------------------------------------------------------------------------------- /Cpp/clean_stacks/ramp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/clean_stacks/ramp.asm -------------------------------------------------------------------------------- /Cpp/clean_stacks/ramp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/clean_stacks/ramp.o -------------------------------------------------------------------------------- /Cpp/create_process/CreateProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/create_process/CreateProcess.cpp -------------------------------------------------------------------------------- /Cpp/create_process/CreateProcess.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/create_process/CreateProcess.exe -------------------------------------------------------------------------------- /Cpp/create_process/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Cpp/crypter/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/crypter/compile.bat -------------------------------------------------------------------------------- /Cpp/crypter/crypter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/crypter/crypter.exe -------------------------------------------------------------------------------- /Cpp/crypter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/crypter/main.cpp -------------------------------------------------------------------------------- /Cpp/crypter/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/crypter/main.obj -------------------------------------------------------------------------------- /Cpp/crypter/out.txt: -------------------------------------------------------------------------------- 1 | ?.8? -------------------------------------------------------------------------------- /Cpp/crypter/test.txt: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /Cpp/deceiving_defender/BigStackBypass/build_the_sleigh.py: -------------------------------------------------------------------------------- 1 | print '0x90, ' * 1024000 -------------------------------------------------------------------------------- /Cpp/deceiving_defender/BigStackBypass/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/BigStackBypass/compile.bat -------------------------------------------------------------------------------- /Cpp/deceiving_defender/BigStackBypass/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/BigStackBypass/implant.cpp -------------------------------------------------------------------------------- /Cpp/deceiving_defender/BigStackBypass/implant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/BigStackBypass/implant.exe -------------------------------------------------------------------------------- /Cpp/deceiving_defender/BigStackBypass/meterpreter/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Cpp/deceiving_defender/BigStackBypass/meterpreter/beautify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/BigStackBypass/meterpreter/beautify.py -------------------------------------------------------------------------------- /Cpp/deceiving_defender/BigStackBypass/meterpreter/build_the_sleigh.py: -------------------------------------------------------------------------------- 1 | print '0x90, ' * 2048000 -------------------------------------------------------------------------------- /Cpp/deceiving_defender/BigStackBypass/meterpreter/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/BigStackBypass/meterpreter/compile.bat -------------------------------------------------------------------------------- /Cpp/deceiving_defender/BigStackBypass/meterpreter/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/BigStackBypass/meterpreter/implant.cpp -------------------------------------------------------------------------------- /Cpp/deceiving_defender/BigStackBypass/sleight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/BigStackBypass/sleight.txt -------------------------------------------------------------------------------- /Cpp/deceiving_defender/BigStackBypass/vt-results-2022-12-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/BigStackBypass/vt-results-2022-12-28.png -------------------------------------------------------------------------------- /Cpp/deceiving_defender/BigStackBypass/vt_results.txt: -------------------------------------------------------------------------------- 1 | https://www.virustotal.com/gui/file-analysis/OGY3Y2M5M2ZjNDkwZDZkZGMxN2Y2N2EyZmIzNDlhMjQ6MTY3MjI4NTY3Nw== -------------------------------------------------------------------------------- /Cpp/deceiving_defender/BigStackBypass/windows-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/BigStackBypass/windows-wallpaper.jpg -------------------------------------------------------------------------------- /Cpp/deceiving_defender/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/Readme.md -------------------------------------------------------------------------------- /Cpp/deceiving_defender/name_bypass/Readme.md: -------------------------------------------------------------------------------- 1 | Using a simple name check to bypass Windows Defender. 2 | 3 | -------------------------------------------------------------------------------- /Cpp/deceiving_defender/name_bypass/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/name_bypass/compile.bat -------------------------------------------------------------------------------- /Cpp/deceiving_defender/name_bypass/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/name_bypass/implant.cpp -------------------------------------------------------------------------------- /Cpp/deceiving_defender/name_bypass/implant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/name_bypass/implant.exe -------------------------------------------------------------------------------- /Cpp/deceiving_defender/one/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/one/compile.bat -------------------------------------------------------------------------------- /Cpp/deceiving_defender/one/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/one/implant.cpp -------------------------------------------------------------------------------- /Cpp/deceiving_defender/one/implant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/one/implant.exe -------------------------------------------------------------------------------- /Cpp/deceiving_defender/one/implant.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/deceiving_defender/one/implant.obj -------------------------------------------------------------------------------- /Cpp/embedding_payloads/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x64/calc_x64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x64/calc_x64.bin -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x64/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x64/compile.bat -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x64/even_better_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x64/even_better_x64.exe -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x64/even_better_x64_PATCHED.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x64/even_better_x64_PATCHED.exe -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x64/even_better_x64_PATCHED_goto_MAIN.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x64/even_better_x64_PATCHED_goto_MAIN.exe -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x64/even_better_x64_reloc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x64/even_better_x64_reloc.exe -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x64/good.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x64/good.cpp -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x64/good_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x64/good_x64.exe -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x64/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x64/test.c -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x86/calc_payload_32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x86/calc_payload_32.bin -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x86/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x86/compile.bat -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x86/even_better.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x86/even_better.exe -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x86/even_better_ansi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x86/even_better_ansi.exe -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x86/good.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x86/good.cpp -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x86/good.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x86/good.exe -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x86/good.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x86/good.obj -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x86/good_no_names.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x86/good_no_names.exe -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x86/good_w_names.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x86/good_w_names.exe -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x86/x86_broken_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x86/x86_broken_log.txt -------------------------------------------------------------------------------- /Cpp/embedding_payloads/x86/x86_working_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/embedding_payloads/x86/x86_working_log.txt -------------------------------------------------------------------------------- /Cpp/hidden_mimikatz/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/hidden_mimikatz/Readme.md -------------------------------------------------------------------------------- /Cpp/hidden_mimikatz/mimikatz.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/hidden_mimikatz/mimikatz.exe -------------------------------------------------------------------------------- /Cpp/hidden_mimikatz/wrapper/aesencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/hidden_mimikatz/wrapper/aesencrypt.py -------------------------------------------------------------------------------- /Cpp/hidden_mimikatz/wrapper/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/hidden_mimikatz/wrapper/compile.bat -------------------------------------------------------------------------------- /Cpp/hidden_mimikatz/wrapper/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/hidden_mimikatz/wrapper/favicon.ico -------------------------------------------------------------------------------- /Cpp/hidden_mimikatz/wrapper/mimikatz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/hidden_mimikatz/wrapper/mimikatz.cpp -------------------------------------------------------------------------------- /Cpp/hidden_mimikatz/wrapper/mimikatz.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/hidden_mimikatz/wrapper/mimikatz.exe -------------------------------------------------------------------------------- /Cpp/hidden_mimikatz/wrapper/mimikatz.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/hidden_mimikatz/wrapper/mimikatz.obj -------------------------------------------------------------------------------- /Cpp/hidden_mimikatz/wrapper/resources.h: -------------------------------------------------------------------------------- 1 | #define FAVICON_ICO 100 2 | -------------------------------------------------------------------------------- /Cpp/hidden_mimikatz/wrapper/resources.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/hidden_mimikatz/wrapper/resources.o -------------------------------------------------------------------------------- /Cpp/hidden_mimikatz/wrapper/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/hidden_mimikatz/wrapper/resources.rc -------------------------------------------------------------------------------- /Cpp/hidden_mimikatz/wrapper/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/hidden_mimikatz/wrapper/resources.res -------------------------------------------------------------------------------- /Cpp/hidden_mimikatz/wrapper/shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/hidden_mimikatz/wrapper/shellcode.bin -------------------------------------------------------------------------------- /Cpp/making_malware/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/Readme.md -------------------------------------------------------------------------------- /Cpp/making_malware/implantv1/beautify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv1/beautify.py -------------------------------------------------------------------------------- /Cpp/making_malware/implantv1/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv1/compile.bat -------------------------------------------------------------------------------- /Cpp/making_malware/implantv1/implant.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv1/implant.obj -------------------------------------------------------------------------------- /Cpp/making_malware/implantv1/implantv1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv1/implantv1.cpp -------------------------------------------------------------------------------- /Cpp/making_malware/implantv1/implantv1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv1/implantv1.exe -------------------------------------------------------------------------------- /Cpp/making_malware/implantv1/implantv1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv1/implantv1.obj -------------------------------------------------------------------------------- /Cpp/making_malware/implantv1/xorencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv1/xorencrypt.py -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/aesencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/aesencrypt.py -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/compile.bat -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/implant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/implant.exe -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/implantv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/implantv2.cpp -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/implantv2.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/implantv2.cpp.bak -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/implantv2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/implantv2.obj -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/reverseDLL.bin -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/reverseDLL.txt -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL/Python/ConvertToShellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/reverseDLL/Python/ConvertToShellcode.py -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL/Python/Python.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/reverseDLL/Python/Python.pyproj -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL/Python/ShellcodeRDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/reverseDLL/Python/ShellcodeRDI.py -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL/Python/ShellcodeRDI.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/reverseDLL/Python/ShellcodeRDI.pyc -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL/Python/__pycache__/ShellcodeRDI.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/reverseDLL/Python/__pycache__/ShellcodeRDI.cpython-311.pyc -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL/Python/__pycache__/ShellcodeRDI.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/reverseDLL/Python/__pycache__/ShellcodeRDI.cpython-38.pyc -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL/Python/reverseDLL.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL/compileDLL.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/reverseDLL/compileDLL.bat -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL/reverse.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/reverseDLL/reverse.bin -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL/reverse.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/reverseDLL/reverse.dll -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL/reverseDLL.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/reverseDLL/reverseDLL.bin -------------------------------------------------------------------------------- /Cpp/making_malware/implantv2/reverseDLL/reverseDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv2/reverseDLL/reverseDLL.cpp -------------------------------------------------------------------------------- /Cpp/making_malware/implantv3/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv3/Main.cpp -------------------------------------------------------------------------------- /Cpp/making_malware/implantv3/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv3/Readme.md -------------------------------------------------------------------------------- /Cpp/making_malware/implantv3/x64/Release/implant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv3/x64/Release/implant.exe -------------------------------------------------------------------------------- /Cpp/making_malware/implantv3/x64/Release/implantv3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/implantv3/x64/Release/implantv3.pdb -------------------------------------------------------------------------------- /Cpp/making_malware/misc/mm#1/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/misc/mm#1/Main.cpp -------------------------------------------------------------------------------- /Cpp/making_malware/misc/mm#2/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/misc/mm#2/Main.cpp -------------------------------------------------------------------------------- /Cpp/making_malware/misc/mm#2/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Cpp/making_malware/misc/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/beautify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/beautify.py -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/compile.bat -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/payload.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/payload.out -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverse.cpp -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverse.exe -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverse.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverse.obj -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseDLL.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseDLL.bin -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseDLL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseDLL.txt -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseDLL/Python/ConvertToShellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseDLL/Python/ConvertToShellcode.py -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseDLL/Python/Python.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseDLL/Python/Python.pyproj -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseDLL/Python/ShellcodeRDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseDLL/Python/ShellcodeRDI.py -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseDLL/Python/ShellcodeRDI.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseDLL/Python/ShellcodeRDI.pyc -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseDLL/Python/__pycache__/ShellcodeRDI.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseDLL/Python/__pycache__/ShellcodeRDI.cpython-311.pyc -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseDLL/Python/__pycache__/ShellcodeRDI.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseDLL/Python/__pycache__/ShellcodeRDI.cpython-38.pyc -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseDLL/Python/reverseDLL.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseDLL/compileDLL.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseDLL/compileDLL.bat -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseDLL/reverse.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseDLL/reverse.dll -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseDLL/reverseDLL.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseDLL/reverseDLL.bin -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseDLL/reverseDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseDLL/reverseDLL.cpp -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseEXE.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseEXE.bin -------------------------------------------------------------------------------- /Cpp/making_malware/revshell/reverseEXE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/making_malware/revshell/reverseEXE.txt -------------------------------------------------------------------------------- /Cpp/message_box/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Cpp/message_box/message_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/message_box/message_box.cpp -------------------------------------------------------------------------------- /Cpp/message_box/message_box.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/message_box/message_box.exe -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/ROTD/ROTD.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/ROTD/ROTD.exe -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/ROTD/ROTD.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/ROTD/ROTD.pdb -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/ROTD/ROTD_orig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/ROTD/ROTD_orig.exe -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/ROTD/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/ROTD/compile.bat -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/ROTD/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/ROTD/favicon.ico -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/ROTD/resources.h: -------------------------------------------------------------------------------- 1 | #define FAVICON_ICO 100 2 | -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/ROTD/resources.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/ROTD/resources.o -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/ROTD/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/ROTD/resources.rc -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/ROTD/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/ROTD/resources.res -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/ROTD/reverse_shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/ROTD/reverse_shell.bin -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/ROTD/rotd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/ROTD/rotd.cpp -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/ROTD/rotd.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/ROTD/rotd.obj -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/ROTD/xorencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/ROTD/xorencrypt.py -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/Readme.md -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/reverse_shell/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/reverse_shell/compile.bat -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/reverse_shell/reverse_shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/reverse_shell/reverse_shell.cpp -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/reverse_shell/reverse_shell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/reverse_shell/reverse_shell.exe -------------------------------------------------------------------------------- /Cpp/recursion_off_the_disk/reverse_shell/reverse_shell.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/recursion_off_the_disk/reverse_shell/reverse_shell.obj -------------------------------------------------------------------------------- /Cpp/rsrc_injection/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection/Readme.md -------------------------------------------------------------------------------- /Cpp/rsrc_injection/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection/compile.bat -------------------------------------------------------------------------------- /Cpp/rsrc_injection/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection/favicon.ico -------------------------------------------------------------------------------- /Cpp/rsrc_injection/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection/implant.cpp -------------------------------------------------------------------------------- /Cpp/rsrc_injection/implant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection/implant.exe -------------------------------------------------------------------------------- /Cpp/rsrc_injection/implant.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection/implant.obj -------------------------------------------------------------------------------- /Cpp/rsrc_injection/msgbox64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection/msgbox64.bin -------------------------------------------------------------------------------- /Cpp/rsrc_injection/resources.h: -------------------------------------------------------------------------------- 1 | #define FAVICON_ICO 100 2 | -------------------------------------------------------------------------------- /Cpp/rsrc_injection/resources.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection/resources.o -------------------------------------------------------------------------------- /Cpp/rsrc_injection/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection/resources.rc -------------------------------------------------------------------------------- /Cpp/rsrc_injection/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection/resources.res -------------------------------------------------------------------------------- /Cpp/rsrc_injection/xorencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection/xorencrypt.py -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/Readme.md -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/compile.bat -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/favicon.ico -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/implant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/implant.cpp -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/implant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/implant.exe -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/implant.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/implant.obj -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/implant_noemul.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/implant_noemul.exe -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/resources.h: -------------------------------------------------------------------------------- 1 | #define FAVICON_ICO 100 2 | -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/resources.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/resources.o -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/resources.rc -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/resources.res -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/reverse_shell/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/reverse_shell/compile.bat -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/reverse_shell/reverse_shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/reverse_shell/reverse_shell.cpp -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/reverse_shell/reverse_shell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/reverse_shell/reverse_shell.exe -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/reverse_shell/reverse_shell.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/reverse_shell/reverse_shell.obj -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/reverse_shell/shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/reverse_shell/shell.bin -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/shell.bin -------------------------------------------------------------------------------- /Cpp/rsrc_injection_shell/xorencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Cpp/rsrc_injection_shell/xorencrypt.py -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Powershell/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Powershell/amsi-patch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Powershell/amsi-patch.ps1 -------------------------------------------------------------------------------- /Presentations/.placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Presentations/Building Skynet_as_submitted.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Presentations/Building Skynet_as_submitted.pptx -------------------------------------------------------------------------------- /Python/PushingP/pushingpayloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Python/PushingP/pushingpayloads.py -------------------------------------------------------------------------------- /Python/PushingP/pushingpayloadsv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Python/PushingP/pushingpayloadsv3.py -------------------------------------------------------------------------------- /Python/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Python/smuggler/OUT/test.txt: -------------------------------------------------------------------------------- 1 | TEST 2 | -------------------------------------------------------------------------------- /Python/smuggler/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Python/smuggler/Readme.md -------------------------------------------------------------------------------- /Python/smuggler/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Python/smuggler/in.txt -------------------------------------------------------------------------------- /Python/smuggler/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Python/smuggler/out.txt -------------------------------------------------------------------------------- /Python/smuggler/smuggler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Python/smuggler/smuggler.py -------------------------------------------------------------------------------- /Python/smuggler/test.txt: -------------------------------------------------------------------------------- 1 | TEST 2 | -------------------------------------------------------------------------------- /Python/utilities/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Python/utilities/Readme.md -------------------------------------------------------------------------------- /Python/utilities/aesencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Python/utilities/aesencrypt.py -------------------------------------------------------------------------------- /Python/utilities/beautify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Python/utilities/beautify.py -------------------------------------------------------------------------------- /Python/utilities/xorencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Python/utilities/xorencrypt.py -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Readme.md -------------------------------------------------------------------------------- /Rust/CreateProcessA/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/CreateProcessA/Cargo.toml -------------------------------------------------------------------------------- /Rust/CreateProcessA/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Rust/CreateProcessA/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/CreateProcessA/main.rs -------------------------------------------------------------------------------- /Rust/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Rust/peruns_fart/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/peruns_fart/Cargo.toml -------------------------------------------------------------------------------- /Rust/peruns_fart/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Rust/peruns_fart/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/peruns_fart/main.rs -------------------------------------------------------------------------------- /Rust/rust_implantv1/implant_rust.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rust_implantv1/implant_rust.exe -------------------------------------------------------------------------------- /Rust/rust_implantv1/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rust_implantv1/main.rs -------------------------------------------------------------------------------- /Rust/rust_implantv2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rust_implantv2/Cargo.toml -------------------------------------------------------------------------------- /Rust/rust_implantv2/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Rust/rust_implantv2/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rust_implantv2/main.rs -------------------------------------------------------------------------------- /Rust/rust_implantv2/rusty_implant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rust_implantv2/rusty_implant.exe -------------------------------------------------------------------------------- /Rust/rust_implantv3/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rust_implantv3/Cargo.toml -------------------------------------------------------------------------------- /Rust/rust_implantv3/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Rust/rust_implantv3/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rust_implantv3/main.rs -------------------------------------------------------------------------------- /Rust/rust_implantv3/rusty_implantv3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rust_implantv3/rusty_implantv3.exe -------------------------------------------------------------------------------- /Rust/rust_implantv4/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rust_implantv4/Cargo.toml -------------------------------------------------------------------------------- /Rust/rust_implantv4/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Rust/rust_implantv4/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rust_implantv4/main.rs -------------------------------------------------------------------------------- /Rust/rust_implantv4/rusty_implantv4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rust_implantv4/rusty_implantv4.exe -------------------------------------------------------------------------------- /Rust/rusty_calc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rusty_calc/Cargo.toml -------------------------------------------------------------------------------- /Rust/rusty_calc/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Rust/rusty_calc/main-original.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rusty_calc/main-original.rs -------------------------------------------------------------------------------- /Rust/rusty_calc/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xTriboulet/Red_Team_Code_Snippets/HEAD/Rust/rusty_calc/main.rs --------------------------------------------------------------------------------