├── Active Directory └── README.md ├── Azure └── README.md ├── Beacon Object Files └── README.md ├── C2 Malleable Profile ├── Cobalt Strike │ ├── README.md │ ├── beacongate.profile │ └── custom.profile └── Havoc │ └── slack.yaotl ├── D-Invoke └── README.md ├── Evasion ├── CommandLineSpoofing │ ├── CommandLineSpoofing.sln │ └── CommandLineSpoofing │ │ ├── CommandLineSpoofing.cpp │ │ ├── CommandLineSpoofing.vcxproj │ │ ├── CommandLineSpoofing.vcxproj.filters │ │ └── CommandLineSpoofing.vcxproj.user ├── DirectSyscall │ ├── DirectSyscall.sln │ ├── DirectSyscall │ │ ├── DirectSyscall.cpp │ │ ├── DirectSyscall.vcxproj │ │ ├── DirectSyscall.vcxproj.filters │ │ ├── DirectSyscall.vcxproj.user │ │ ├── syscall.asm │ │ ├── syscall.h │ │ └── x64 │ │ │ └── Debug │ │ │ ├── DirectSyscall.Build.CppClean.log │ │ │ ├── DirectSyscall.exe.recipe │ │ │ ├── DirectSyscall.ilk │ │ │ ├── DirectSyscall.log │ │ │ ├── DirectSyscall.obj │ │ │ ├── DirectSyscall.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Cl.items.tlog │ │ │ ├── DirectSyscall.lastbuildstate │ │ │ ├── Masm.read.1u.tlog │ │ │ ├── Masm.write.1u.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ │ │ ├── DirectSyscall.vcxproj.FileListAbsolute.txt │ │ │ ├── syscall.obj │ │ │ ├── vc143.idb │ │ │ └── vc143.pdb │ └── x64 │ │ └── Debug │ │ ├── DirectSyscall.exe │ │ └── DirectSyscall.pdb ├── ETWBlinder │ ├── ETWBlinder.sln │ └── ETWBlinder │ │ ├── App.config │ │ ├── ETWBlinder.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── bin │ │ ├── Debug │ │ │ ├── ETWBlinder.exe │ │ │ ├── ETWBlinder.exe.config │ │ │ └── ETWBlinder.pdb │ │ └── Release │ │ │ ├── ETWBlinder.exe │ │ │ ├── ETWBlinder.exe.config │ │ │ └── ETWBlinder.pdb │ │ └── obj │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── ETWBlinder.csproj.AssemblyReference.cache │ │ ├── ETWBlinder.csproj.CoreCompileInputs.cache │ │ ├── ETWBlinder.csproj.FileListAbsolute.txt │ │ ├── ETWBlinder.csproj.SuggestedBindingRedirects.cache │ │ ├── ETWBlinder.exe │ │ └── ETWBlinder.pdb │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── ETWBlinder.csproj.AssemblyReference.cache │ │ ├── ETWBlinder.csproj.CoreCompileInputs.cache │ │ ├── ETWBlinder.csproj.FileListAbsolute.txt │ │ ├── ETWBlinder.csproj.SuggestedBindingRedirects.cache │ │ ├── ETWBlinder.exe │ │ └── ETWBlinder.pdb ├── ETWLoader │ ├── ETWLoader.sln │ ├── ETWLoader │ │ ├── App.config │ │ ├── ETWLoader.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Win32.cs │ │ ├── bin │ │ │ ├── Debug │ │ │ │ ├── ETWLoader.exe │ │ │ │ ├── ETWLoader.exe.config │ │ │ │ └── ETWLoader.pdb │ │ │ └── Release │ │ │ │ ├── ETWLoader.exe │ │ │ │ ├── ETWLoader.exe.config │ │ │ │ └── ETWLoader.pdb │ │ ├── obj │ │ │ ├── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── ETWLoader.csproj.AssemblyReference.cache │ │ │ │ ├── ETWLoader.csproj.CoreCompileInputs.cache │ │ │ │ ├── ETWLoader.csproj.FileListAbsolute.txt │ │ │ │ ├── ETWLoader.csproj.SuggestedBindingRedirects.cache │ │ │ │ ├── ETWLoader.exe │ │ │ │ └── ETWLoader.pdb │ │ │ └── Release │ │ │ │ ├── ETWLoader.csproj.AssemblyReference.cache │ │ │ │ ├── ETWLoader.csproj.CoreCompileInputs.cache │ │ │ │ ├── ETWLoader.csproj.FileListAbsolute.txt │ │ │ │ ├── ETWLoader.csproj.SuggestedBindingRedirects.cache │ │ │ │ ├── ETWLoader.exe │ │ │ │ └── ETWLoader.pdb │ │ └── packages.config │ └── packages │ │ └── dnMerge.0.5.15 │ │ ├── build │ │ └── dnMerge.targets │ │ ├── buildMultiTargeting │ │ └── dnMerge.targets │ │ ├── dnMerge.0.5.15.nupkg │ │ └── tasks │ │ ├── net472 │ │ └── dnMerge.dll │ │ └── netstandard2.1 │ │ └── dnMerge.dll ├── GhostMapping │ ├── GhostMapping.sln │ ├── GhostMapping │ │ ├── GhostMapping.cpp │ │ ├── GhostMapping.vcxproj │ │ ├── GhostMapping.vcxproj.filters │ │ ├── GhostMapping.vcxproj.user │ │ └── x64 │ │ │ └── Debug │ │ │ ├── GhostMapping.Build.CppClean.log │ │ │ ├── GhostMapping.exe.recipe │ │ │ ├── GhostMapping.ilk │ │ │ ├── GhostMapping.log │ │ │ ├── GhostMapping.obj │ │ │ ├── GhostMapping.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Cl.items.tlog │ │ │ ├── GhostMapping.lastbuildstate │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ │ │ ├── GhostMapping.vcxproj.FileListAbsolute.txt │ │ │ ├── vc143.idb │ │ │ └── vc143.pdb │ └── x64 │ │ └── Debug │ │ ├── GhostMapping.exe │ │ └── GhostMapping.pdb ├── ManualMapping │ ├── ManualMapping.sln │ ├── ManualMapping │ │ ├── ManualMapping.cpp │ │ ├── ManualMapping.vcxproj │ │ ├── ManualMapping.vcxproj.filters │ │ ├── ManualMapping.vcxproj.user │ │ └── x64 │ │ │ └── Debug │ │ │ ├── ManualMapping.Build.CppClean.log │ │ │ ├── ManualMapping.exe.recipe │ │ │ ├── ManualMapping.ilk │ │ │ ├── ManualMapping.log │ │ │ ├── ManualMapping.obj │ │ │ ├── ManualMapping.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Cl.items.tlog │ │ │ ├── ManualMapping.lastbuildstate │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ │ │ ├── ManualMapping.vcxproj.FileListAbsolute.txt │ │ │ ├── vc143.idb │ │ │ └── vc143.pdb │ └── x64 │ │ └── Debug │ │ ├── ManualMapping.exe │ │ └── ManualMapping.pdb ├── PPIDSpoofing │ ├── PPIDSpoofing.sln │ └── PPIDSpoofing │ │ ├── PPIDSpoofing.cpp │ │ ├── PPIDSpoofing.vcxproj │ │ ├── PPIDSpoofing.vcxproj.filters │ │ └── PPIDSpoofing.vcxproj.user └── README.md ├── Ghostpack ├── Compiled Binaries │ ├── ADSearch.exe │ ├── Certify.exe │ ├── DumpGuard.exe │ ├── DumpGuardLib.dll │ ├── ForgeCert.exe │ ├── KrbRelayUp.exe │ ├── LetMeowIn.exe │ ├── Rubeus.exe │ ├── SafetyKatz.exe │ ├── Seatbelt.exe │ ├── SharPersist.exe │ ├── SharpADWS.exe │ ├── SharpChromium.exe │ ├── SharpDPAPI.exe │ ├── SharpGPOAbuse.exe │ ├── SharpHound.exe │ ├── SharpSCCM.exe │ ├── SharpSpoolTrigger.exe │ ├── SharpUp.exe │ ├── SharpView.exe │ ├── SharpWMI.exe │ ├── SpoolSample.exe │ └── mimikatz.exe └── README.md ├── O.MG Payloads ├── README.md ├── Wallpaper_ScreenCapture.ps1 └── WiFi_Browser_Passwords_Metamask_FilesExfil_ClipboardData.ps1 ├── P-Invoke └── README.md ├── Phishing & Initial Access └── README.md ├── PowerSploit ├── ADRecon.ps1 ├── ASREPRoast.ps1 ├── Invoke-DCOM.ps1 ├── Invoke-DllInjection.ps1 ├── Invoke-Kerberoast.ps1 ├── Invoke-Mimikatz.ps1 ├── Invoke-ReflectivePEInjection.ps1 ├── KeePassConfig.ps1 ├── KeeThief.ps1 ├── LAPSToolkit.ps1 ├── MailSniper.ps1 ├── PowerLurk.ps1 ├── PowerUp.ps1 ├── PowerUpSQL.ps1 ├── PowerView.ps1 ├── PowerView_dev.ps1 └── SharpHound.ps1 ├── Process Injection ├── CreateRemoteThread │ ├── CreateRemoteThread.sln │ └── CreateRemoteThread │ │ ├── App.config │ │ ├── CreateRemoteThread.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Win32.cs │ │ ├── bin │ │ ├── Debug │ │ │ ├── CreateRemoteThread.exe │ │ │ ├── CreateRemoteThread.exe.config │ │ │ └── CreateRemoteThread.pdb │ │ └── Release │ │ │ ├── CreateRemoteThread.exe │ │ │ ├── CreateRemoteThread.exe.config │ │ │ └── CreateRemoteThread.pdb │ │ └── obj │ │ ├── Debug │ │ ├── CreateRemoteThread.csproj.AssemblyReference.cache │ │ ├── CreateRemoteThread.csproj.CoreCompileInputs.cache │ │ ├── CreateRemoteThread.csproj.FileListAbsolute.txt │ │ ├── CreateRemoteThread.csproj.SuggestedBindingRedirects.cache │ │ ├── CreateRemoteThread.exe │ │ ├── CreateRemoteThread.pdb │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Release │ │ ├── CreateRemoteThread.csproj.AssemblyReference.cache │ │ ├── CreateRemoteThread.csproj.CoreCompileInputs.cache │ │ ├── CreateRemoteThread.csproj.FileListAbsolute.txt │ │ ├── CreateRemoteThread.csproj.SuggestedBindingRedirects.cache │ │ ├── CreateRemoteThread.exe │ │ ├── CreateRemoteThread.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── CreateThread │ ├── CreateThread.sln │ └── CreateThread │ │ ├── App.config │ │ ├── CreateThread.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Win32.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── CreateThread.exe │ │ │ ├── CreateThread.exe.config │ │ │ └── CreateThread.pdb │ │ └── obj │ │ └── Debug │ │ ├── CreateThread.csproj.AssemblyReference.cache │ │ ├── CreateThread.csproj.CoreCompileInputs.cache │ │ ├── CreateThread.csproj.FileListAbsolute.txt │ │ ├── CreateThread.csproj.SuggestedBindingRedirects.cache │ │ ├── CreateThread.exe │ │ ├── CreateThread.pdb │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── NtMapViewOfSection │ ├── NtMapViewOfSection.sln │ └── NtMapViewOfSection │ │ ├── App.config │ │ ├── Native.cs │ │ ├── NtMapViewOfSection.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── NtMapViewOfSection.exe │ │ │ ├── NtMapViewOfSection.exe.config │ │ │ └── NtMapViewOfSection.pdb │ │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── NtMapViewOfSection.csproj.AssemblyReference.cache │ │ ├── NtMapViewOfSection.csproj.CoreCompileInputs.cache │ │ ├── NtMapViewOfSection.csproj.FileListAbsolute.txt │ │ ├── NtMapViewOfSection.csproj.SuggestedBindingRedirects.cache │ │ ├── NtMapViewOfSection.exe │ │ └── NtMapViewOfSection.pdb ├── QueueUserAPC │ ├── QueueUserAPC.sln │ └── QueueUserAPC │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── QueueUserAPC.csproj │ │ ├── Win32.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── QueueUserAPC.exe │ │ │ ├── QueueUserAPC.exe.config │ │ │ └── QueueUserAPC.pdb │ │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── QueueUserAPC.csproj.AssemblyReference.cache │ │ ├── QueueUserAPC.csproj.CoreCompileInputs.cache │ │ ├── QueueUserAPC.csproj.FileListAbsolute.txt │ │ ├── QueueUserAPC.csproj.SuggestedBindingRedirects.cache │ │ ├── QueueUserAPC.exe │ │ └── QueueUserAPC.pdb └── README.md ├── Protected Process Light (PPL) └── README.md ├── README.md ├── Red Team Infrastructure └── README.md ├── SmartKaren ├── Karen2Gadget │ ├── Karen2Gadget.sln │ └── Karen2Gadget │ │ ├── App.config │ │ ├── Karen2Gadget.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── obj │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Karen2Gadget.csproj.AssemblyReference.cache │ │ ├── Karen2Gadget.csproj.CoreCompileInputs.cache │ │ ├── Karen2Gadget.csproj.FileListAbsolute.txt │ │ ├── Karen2Gadget.csproj.SuggestedBindingRedirects.cache │ │ ├── Karen2Gadget.exe │ │ ├── Karen2Gadget.pdb │ │ └── build.force │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Karen2Gadget.csproj.AssemblyReference.cache │ │ ├── Karen2Gadget.csproj.CoreCompileInputs.cache │ │ ├── Karen2Gadget.csproj.FileListAbsolute.txt │ │ ├── Karen2Gadget.csproj.SuggestedBindingRedirects.cache │ │ ├── Karen2Gadget.exe │ │ └── Karen2Gadget.pdb ├── KarenDumpedMi │ ├── KarenDumpedMi.sln │ ├── KarenDumpedMi │ │ ├── App.config │ │ ├── CommandLineArgumentParser.cs │ │ ├── DInvoke.Data │ │ │ ├── Native.cs │ │ │ ├── PE.cs │ │ │ └── Win32.cs │ │ ├── DInvoke.DynamicInvoke │ │ │ ├── Generic.cs │ │ │ ├── Native.cs │ │ │ ├── Utilities.cs │ │ │ └── Win32.cs │ │ ├── DInvoke.ManualMap │ │ │ ├── Map.cs │ │ │ └── Overload.cs │ │ ├── KarenDumpedMi.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Win32.cs │ │ ├── bin │ │ │ ├── Debug │ │ │ │ ├── KarenDumpedMi.exe │ │ │ │ └── KarenDumpedMi.exe.config │ │ │ └── Release │ │ │ │ ├── KarenDumpedMi.exe │ │ │ │ └── KarenDumpedMi.exe.config │ │ ├── obj │ │ │ ├── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── KarenDumpedMi.csproj.AssemblyReference.cache │ │ │ │ ├── KarenDumpedMi.csproj.CoreCompileInputs.cache │ │ │ │ ├── KarenDumpedMi.csproj.FileListAbsolute.txt │ │ │ │ ├── KarenDumpedMi.csproj.SuggestedBindingRedirects.cache │ │ │ │ └── KarenDumpedMi.exe │ │ │ └── Release │ │ │ │ ├── KarenDumpedMi.csproj.AssemblyReference.cache │ │ │ │ ├── KarenDumpedMi.csproj.CoreCompileInputs.cache │ │ │ │ ├── KarenDumpedMi.csproj.FileListAbsolute.txt │ │ │ │ ├── KarenDumpedMi.csproj.SuggestedBindingRedirects.cache │ │ │ │ └── KarenDumpedMi.exe │ │ └── packages.config │ └── packages │ │ └── dnMerge.0.5.15 │ │ ├── build │ │ └── dnMerge.targets │ │ ├── buildMultiTargeting │ │ └── dnMerge.targets │ │ ├── dnMerge.0.5.15.nupkg │ │ └── tasks │ │ ├── net472 │ │ └── dnMerge.dll │ │ └── netstandard2.1 │ │ └── dnMerge.dll ├── KarenLdr │ ├── KarenLdr.sln │ ├── KarenLdr │ │ ├── App.config │ │ ├── CommandLineArgumentParser.cs │ │ ├── DInvoke.Data │ │ │ ├── Native.cs │ │ │ ├── PE.cs │ │ │ └── Win32.cs │ │ ├── DInvoke.DynamicInvoke │ │ │ ├── Generic.cs │ │ │ ├── Native.cs │ │ │ ├── Utilities.cs │ │ │ └── Win32.cs │ │ ├── DInvoke.ManualMap │ │ │ ├── Map.cs │ │ │ └── Overload.cs │ │ ├── KarenLdr.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Win32.cs │ │ ├── bin │ │ │ ├── Debug │ │ │ │ ├── KarenLdr.exe │ │ │ │ └── KarenLdr.exe.config │ │ │ └── Release │ │ │ │ ├── KarenLdr.exe │ │ │ │ └── KarenLdr.exe.config │ │ ├── obj │ │ │ ├── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── KarenLdr.csproj.AssemblyReference.cache │ │ │ │ ├── KarenLdr.csproj.CoreCompileInputs.cache │ │ │ │ ├── KarenLdr.csproj.FileListAbsolute.txt │ │ │ │ ├── KarenLdr.csproj.SuggestedBindingRedirects.cache │ │ │ │ └── KarenLdr.exe │ │ │ └── Release │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── KarenLdr.csproj.AssemblyReference.cache │ │ │ │ ├── KarenLdr.csproj.CoreCompileInputs.cache │ │ │ │ ├── KarenLdr.csproj.FileListAbsolute.txt │ │ │ │ ├── KarenLdr.csproj.SuggestedBindingRedirects.cache │ │ │ │ └── KarenLdr.exe │ │ └── packages.config │ └── packages │ │ └── dnMerge.0.5.15 │ │ ├── build │ │ └── dnMerge.targets │ │ ├── buildMultiTargeting │ │ └── dnMerge.targets │ │ ├── dnMerge.0.5.15.nupkg │ │ └── tasks │ │ ├── net472 │ │ └── dnMerge.dll │ │ └── netstandard2.1 │ │ └── dnMerge.dll ├── README.md └── resources │ └── SmartKaren.png ├── WDAC ├── README.md ├── msbuild.xml ├── text.txt └── text.xml └── Windows Internals └── README.md /Active Directory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Active Directory/README.md -------------------------------------------------------------------------------- /Azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Azure/README.md -------------------------------------------------------------------------------- /Beacon Object Files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Beacon Object Files/README.md -------------------------------------------------------------------------------- /C2 Malleable Profile/Cobalt Strike/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/C2 Malleable Profile/Cobalt Strike/README.md -------------------------------------------------------------------------------- /C2 Malleable Profile/Cobalt Strike/beacongate.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/C2 Malleable Profile/Cobalt Strike/beacongate.profile -------------------------------------------------------------------------------- /C2 Malleable Profile/Cobalt Strike/custom.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/C2 Malleable Profile/Cobalt Strike/custom.profile -------------------------------------------------------------------------------- /C2 Malleable Profile/Havoc/slack.yaotl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/C2 Malleable Profile/Havoc/slack.yaotl -------------------------------------------------------------------------------- /D-Invoke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/D-Invoke/README.md -------------------------------------------------------------------------------- /Evasion/CommandLineSpoofing/CommandLineSpoofing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/CommandLineSpoofing/CommandLineSpoofing.sln -------------------------------------------------------------------------------- /Evasion/CommandLineSpoofing/CommandLineSpoofing/CommandLineSpoofing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/CommandLineSpoofing/CommandLineSpoofing/CommandLineSpoofing.cpp -------------------------------------------------------------------------------- /Evasion/CommandLineSpoofing/CommandLineSpoofing/CommandLineSpoofing.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/CommandLineSpoofing/CommandLineSpoofing/CommandLineSpoofing.vcxproj -------------------------------------------------------------------------------- /Evasion/CommandLineSpoofing/CommandLineSpoofing/CommandLineSpoofing.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/CommandLineSpoofing/CommandLineSpoofing/CommandLineSpoofing.vcxproj.filters -------------------------------------------------------------------------------- /Evasion/CommandLineSpoofing/CommandLineSpoofing/CommandLineSpoofing.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/CommandLineSpoofing/CommandLineSpoofing/CommandLineSpoofing.vcxproj.user -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall.sln -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/DirectSyscall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/DirectSyscall.cpp -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/DirectSyscall.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/DirectSyscall.vcxproj -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/DirectSyscall.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/DirectSyscall.vcxproj.filters -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/DirectSyscall.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/DirectSyscall.vcxproj.user -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/syscall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/syscall.asm -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/syscall.h -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.Build.CppClean.log -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.exe.recipe -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.ilk -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.log -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.obj -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/Cl.items.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/Cl.items.tlog -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/DirectSyscall.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/DirectSyscall.lastbuildstate -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/Masm.read.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/Masm.read.1u.tlog -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/Masm.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/Masm.write.1u.tlog -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/DirectSyscall.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/syscall.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/syscall.obj -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/vc143.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/vc143.idb -------------------------------------------------------------------------------- /Evasion/DirectSyscall/DirectSyscall/x64/Debug/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/DirectSyscall/x64/Debug/vc143.pdb -------------------------------------------------------------------------------- /Evasion/DirectSyscall/x64/Debug/DirectSyscall.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/x64/Debug/DirectSyscall.exe -------------------------------------------------------------------------------- /Evasion/DirectSyscall/x64/Debug/DirectSyscall.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/DirectSyscall/x64/Debug/DirectSyscall.pdb -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder.sln -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/App.config -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/ETWBlinder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/ETWBlinder.csproj -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/Program.cs -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/bin/Debug/ETWBlinder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/bin/Debug/ETWBlinder.exe -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/bin/Debug/ETWBlinder.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/bin/Debug/ETWBlinder.exe.config -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/bin/Debug/ETWBlinder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/bin/Debug/ETWBlinder.pdb -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/bin/Release/ETWBlinder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/bin/Release/ETWBlinder.exe -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/bin/Release/ETWBlinder.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/bin/Release/ETWBlinder.exe.config -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/bin/Release/ETWBlinder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/bin/Release/ETWBlinder.pdb -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Debug/ETWBlinder.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/obj/Debug/ETWBlinder.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Debug/ETWBlinder.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2f1b5aa9ca9324e732c8dc8ad98b9a6b4836d80a 2 | -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Debug/ETWBlinder.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/obj/Debug/ETWBlinder.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Debug/ETWBlinder.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Debug/ETWBlinder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/obj/Debug/ETWBlinder.exe -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Debug/ETWBlinder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/obj/Debug/ETWBlinder.pdb -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Release/ETWBlinder.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/obj/Release/ETWBlinder.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Release/ETWBlinder.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b1cac3c5db117414049b7ee1b7ead321fc446162 2 | -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Release/ETWBlinder.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/obj/Release/ETWBlinder.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Release/ETWBlinder.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Release/ETWBlinder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/obj/Release/ETWBlinder.exe -------------------------------------------------------------------------------- /Evasion/ETWBlinder/ETWBlinder/obj/Release/ETWBlinder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWBlinder/ETWBlinder/obj/Release/ETWBlinder.pdb -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader.sln -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/App.config -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/ETWLoader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/ETWLoader.csproj -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/Program.cs -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/Win32.cs -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/bin/Debug/ETWLoader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/bin/Debug/ETWLoader.exe -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/bin/Debug/ETWLoader.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/bin/Debug/ETWLoader.exe.config -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/bin/Debug/ETWLoader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/bin/Debug/ETWLoader.pdb -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/bin/Release/ETWLoader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/bin/Release/ETWLoader.exe -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/bin/Release/ETWLoader.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/bin/Release/ETWLoader.exe.config -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/bin/Release/ETWLoader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/bin/Release/ETWLoader.pdb -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Debug/ETWLoader.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/obj/Debug/ETWLoader.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Debug/ETWLoader.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3316ed464c91ce774d40fcc86696f6db98ca9e86 2 | -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Debug/ETWLoader.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/obj/Debug/ETWLoader.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Debug/ETWLoader.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Debug/ETWLoader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/obj/Debug/ETWLoader.exe -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Debug/ETWLoader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/obj/Debug/ETWLoader.pdb -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Release/ETWLoader.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/obj/Release/ETWLoader.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Release/ETWLoader.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2fc8a6745ba02de05e6fea69efa5f043b6507575 2 | -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Release/ETWLoader.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/obj/Release/ETWLoader.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Release/ETWLoader.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Release/ETWLoader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/obj/Release/ETWLoader.exe -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/obj/Release/ETWLoader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/obj/Release/ETWLoader.pdb -------------------------------------------------------------------------------- /Evasion/ETWLoader/ETWLoader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/ETWLoader/packages.config -------------------------------------------------------------------------------- /Evasion/ETWLoader/packages/dnMerge.0.5.15/build/dnMerge.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/packages/dnMerge.0.5.15/build/dnMerge.targets -------------------------------------------------------------------------------- /Evasion/ETWLoader/packages/dnMerge.0.5.15/buildMultiTargeting/dnMerge.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/packages/dnMerge.0.5.15/buildMultiTargeting/dnMerge.targets -------------------------------------------------------------------------------- /Evasion/ETWLoader/packages/dnMerge.0.5.15/dnMerge.0.5.15.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/packages/dnMerge.0.5.15/dnMerge.0.5.15.nupkg -------------------------------------------------------------------------------- /Evasion/ETWLoader/packages/dnMerge.0.5.15/tasks/net472/dnMerge.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/packages/dnMerge.0.5.15/tasks/net472/dnMerge.dll -------------------------------------------------------------------------------- /Evasion/ETWLoader/packages/dnMerge.0.5.15/tasks/netstandard2.1/dnMerge.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ETWLoader/packages/dnMerge.0.5.15/tasks/netstandard2.1/dnMerge.dll -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping.sln -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/GhostMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/GhostMapping.cpp -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/GhostMapping.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/GhostMapping.vcxproj -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/GhostMapping.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/GhostMapping.vcxproj.filters -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/GhostMapping.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/GhostMapping.vcxproj.user -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.Build.CppClean.log -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.exe.recipe -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.ilk -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.log -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.obj -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/Cl.items.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/Cl.items.tlog -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/GhostMapping.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/GhostMapping.lastbuildstate -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/GhostMapping.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/vc143.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/vc143.idb -------------------------------------------------------------------------------- /Evasion/GhostMapping/GhostMapping/x64/Debug/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/GhostMapping/x64/Debug/vc143.pdb -------------------------------------------------------------------------------- /Evasion/GhostMapping/x64/Debug/GhostMapping.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/x64/Debug/GhostMapping.exe -------------------------------------------------------------------------------- /Evasion/GhostMapping/x64/Debug/GhostMapping.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/GhostMapping/x64/Debug/GhostMapping.pdb -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping.sln -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/ManualMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/ManualMapping.cpp -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/ManualMapping.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/ManualMapping.vcxproj -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/ManualMapping.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/ManualMapping.vcxproj.filters -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/ManualMapping.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/ManualMapping.vcxproj.user -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.Build.CppClean.log -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.exe.recipe -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.ilk -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.log -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.obj -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/Cl.items.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/Cl.items.tlog -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/ManualMapping.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/ManualMapping.lastbuildstate -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/ManualMapping.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/vc143.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/vc143.idb -------------------------------------------------------------------------------- /Evasion/ManualMapping/ManualMapping/x64/Debug/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/ManualMapping/x64/Debug/vc143.pdb -------------------------------------------------------------------------------- /Evasion/ManualMapping/x64/Debug/ManualMapping.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/x64/Debug/ManualMapping.exe -------------------------------------------------------------------------------- /Evasion/ManualMapping/x64/Debug/ManualMapping.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/ManualMapping/x64/Debug/ManualMapping.pdb -------------------------------------------------------------------------------- /Evasion/PPIDSpoofing/PPIDSpoofing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/PPIDSpoofing/PPIDSpoofing.sln -------------------------------------------------------------------------------- /Evasion/PPIDSpoofing/PPIDSpoofing/PPIDSpoofing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/PPIDSpoofing/PPIDSpoofing/PPIDSpoofing.cpp -------------------------------------------------------------------------------- /Evasion/PPIDSpoofing/PPIDSpoofing/PPIDSpoofing.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/PPIDSpoofing/PPIDSpoofing/PPIDSpoofing.vcxproj -------------------------------------------------------------------------------- /Evasion/PPIDSpoofing/PPIDSpoofing/PPIDSpoofing.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/PPIDSpoofing/PPIDSpoofing/PPIDSpoofing.vcxproj.filters -------------------------------------------------------------------------------- /Evasion/PPIDSpoofing/PPIDSpoofing/PPIDSpoofing.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/PPIDSpoofing/PPIDSpoofing/PPIDSpoofing.vcxproj.user -------------------------------------------------------------------------------- /Evasion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Evasion/README.md -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/ADSearch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/ADSearch.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/Certify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/Certify.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/DumpGuard.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/DumpGuard.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/DumpGuardLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/DumpGuardLib.dll -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/ForgeCert.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/ForgeCert.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/KrbRelayUp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/KrbRelayUp.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/LetMeowIn.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/LetMeowIn.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/Rubeus.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/Rubeus.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/SafetyKatz.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/SafetyKatz.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/Seatbelt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/Seatbelt.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/SharPersist.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/SharPersist.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/SharpADWS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/SharpADWS.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/SharpChromium.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/SharpChromium.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/SharpDPAPI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/SharpDPAPI.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/SharpGPOAbuse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/SharpGPOAbuse.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/SharpHound.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/SharpHound.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/SharpSCCM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/SharpSCCM.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/SharpSpoolTrigger.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/SharpSpoolTrigger.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/SharpUp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/SharpUp.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/SharpView.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/SharpView.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/SharpWMI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/SharpWMI.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/SpoolSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/SpoolSample.exe -------------------------------------------------------------------------------- /Ghostpack/Compiled Binaries/mimikatz.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/Compiled Binaries/mimikatz.exe -------------------------------------------------------------------------------- /Ghostpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Ghostpack/README.md -------------------------------------------------------------------------------- /O.MG Payloads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/O.MG Payloads/README.md -------------------------------------------------------------------------------- /O.MG Payloads/Wallpaper_ScreenCapture.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/O.MG Payloads/Wallpaper_ScreenCapture.ps1 -------------------------------------------------------------------------------- /O.MG Payloads/WiFi_Browser_Passwords_Metamask_FilesExfil_ClipboardData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/O.MG Payloads/WiFi_Browser_Passwords_Metamask_FilesExfil_ClipboardData.ps1 -------------------------------------------------------------------------------- /P-Invoke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/P-Invoke/README.md -------------------------------------------------------------------------------- /Phishing & Initial Access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Phishing & Initial Access/README.md -------------------------------------------------------------------------------- /PowerSploit/ADRecon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/ADRecon.ps1 -------------------------------------------------------------------------------- /PowerSploit/ASREPRoast.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/ASREPRoast.ps1 -------------------------------------------------------------------------------- /PowerSploit/Invoke-DCOM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/Invoke-DCOM.ps1 -------------------------------------------------------------------------------- /PowerSploit/Invoke-DllInjection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/Invoke-DllInjection.ps1 -------------------------------------------------------------------------------- /PowerSploit/Invoke-Kerberoast.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/Invoke-Kerberoast.ps1 -------------------------------------------------------------------------------- /PowerSploit/Invoke-Mimikatz.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/Invoke-Mimikatz.ps1 -------------------------------------------------------------------------------- /PowerSploit/Invoke-ReflectivePEInjection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/Invoke-ReflectivePEInjection.ps1 -------------------------------------------------------------------------------- /PowerSploit/KeePassConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/KeePassConfig.ps1 -------------------------------------------------------------------------------- /PowerSploit/KeeThief.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/KeeThief.ps1 -------------------------------------------------------------------------------- /PowerSploit/LAPSToolkit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/LAPSToolkit.ps1 -------------------------------------------------------------------------------- /PowerSploit/MailSniper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/MailSniper.ps1 -------------------------------------------------------------------------------- /PowerSploit/PowerLurk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/PowerLurk.ps1 -------------------------------------------------------------------------------- /PowerSploit/PowerUp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/PowerUp.ps1 -------------------------------------------------------------------------------- /PowerSploit/PowerUpSQL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/PowerUpSQL.ps1 -------------------------------------------------------------------------------- /PowerSploit/PowerView.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/PowerView.ps1 -------------------------------------------------------------------------------- /PowerSploit/PowerView_dev.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/PowerView_dev.ps1 -------------------------------------------------------------------------------- /PowerSploit/SharpHound.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/PowerSploit/SharpHound.ps1 -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread.sln -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/App.config -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/CreateRemoteThread.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/CreateRemoteThread.csproj -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/Program.cs -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/Win32.cs -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/bin/Debug/CreateRemoteThread.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/bin/Debug/CreateRemoteThread.exe -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/bin/Debug/CreateRemoteThread.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/bin/Debug/CreateRemoteThread.exe.config -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/bin/Debug/CreateRemoteThread.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/bin/Debug/CreateRemoteThread.pdb -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/bin/Release/CreateRemoteThread.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/bin/Release/CreateRemoteThread.exe -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/bin/Release/CreateRemoteThread.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/bin/Release/CreateRemoteThread.exe.config -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/bin/Release/CreateRemoteThread.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/bin/Release/CreateRemoteThread.pdb -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/CreateRemoteThread.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/CreateRemoteThread.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/CreateRemoteThread.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3316ed464c91ce774d40fcc86696f6db98ca9e86 2 | -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/CreateRemoteThread.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/CreateRemoteThread.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/CreateRemoteThread.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/CreateRemoteThread.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/CreateRemoteThread.exe -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/CreateRemoteThread.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/CreateRemoteThread.pdb -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Release/CreateRemoteThread.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Release/CreateRemoteThread.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Release/CreateRemoteThread.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2fc8a6745ba02de05e6fea69efa5f043b6507575 2 | -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Release/CreateRemoteThread.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Release/CreateRemoteThread.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Release/CreateRemoteThread.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Release/CreateRemoteThread.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Release/CreateRemoteThread.exe -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Release/CreateRemoteThread.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Release/CreateRemoteThread.pdb -------------------------------------------------------------------------------- /Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateRemoteThread/CreateRemoteThread/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread.sln -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/App.config -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/CreateThread.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/CreateThread.csproj -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/Program.cs -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/Win32.cs -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/bin/Debug/CreateThread.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/bin/Debug/CreateThread.exe -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/bin/Debug/CreateThread.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/bin/Debug/CreateThread.exe.config -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/bin/Debug/CreateThread.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/bin/Debug/CreateThread.pdb -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/obj/Debug/CreateThread.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/obj/Debug/CreateThread.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/obj/Debug/CreateThread.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3316ed464c91ce774d40fcc86696f6db98ca9e86 2 | -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/obj/Debug/CreateThread.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/obj/Debug/CreateThread.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/obj/Debug/CreateThread.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/obj/Debug/CreateThread.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/obj/Debug/CreateThread.exe -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/obj/Debug/CreateThread.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/obj/Debug/CreateThread.pdb -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Process Injection/CreateThread/CreateThread/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/CreateThread/CreateThread/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection.sln -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/App.config -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/Native.cs -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/NtMapViewOfSection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/NtMapViewOfSection.csproj -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/Program.cs -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/bin/Debug/NtMapViewOfSection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/bin/Debug/NtMapViewOfSection.exe -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/bin/Debug/NtMapViewOfSection.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/bin/Debug/NtMapViewOfSection.exe.config -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/bin/Debug/NtMapViewOfSection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/bin/Debug/NtMapViewOfSection.pdb -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/NtMapViewOfSection.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/NtMapViewOfSection.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/NtMapViewOfSection.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 34963d615163534133e9a51c8c12a570d019b57a 2 | -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/NtMapViewOfSection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/NtMapViewOfSection.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/NtMapViewOfSection.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/NtMapViewOfSection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/NtMapViewOfSection.exe -------------------------------------------------------------------------------- /Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/NtMapViewOfSection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/NtMapViewOfSection/NtMapViewOfSection/obj/Debug/NtMapViewOfSection.pdb -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC.sln -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/App.config -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/Program.cs -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/QueueUserAPC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/QueueUserAPC.csproj -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/Win32.cs -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/bin/Debug/QueueUserAPC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/bin/Debug/QueueUserAPC.exe -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/bin/Debug/QueueUserAPC.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/bin/Debug/QueueUserAPC.exe.config -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/bin/Debug/QueueUserAPC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/bin/Debug/QueueUserAPC.pdb -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/QueueUserAPC.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/QueueUserAPC.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/QueueUserAPC.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3316ed464c91ce774d40fcc86696f6db98ca9e86 2 | -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/QueueUserAPC.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/QueueUserAPC.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/QueueUserAPC.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/QueueUserAPC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/QueueUserAPC.exe -------------------------------------------------------------------------------- /Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/QueueUserAPC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/QueueUserAPC/QueueUserAPC/obj/Debug/QueueUserAPC.pdb -------------------------------------------------------------------------------- /Process Injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Process Injection/README.md -------------------------------------------------------------------------------- /Protected Process Light (PPL)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Protected Process Light (PPL)/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/README.md -------------------------------------------------------------------------------- /Red Team Infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Red Team Infrastructure/README.md -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget.sln -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/App.config -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/Karen2Gadget.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/Karen2Gadget.csproj -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/Program.cs -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Debug/Karen2Gadget.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/obj/Debug/Karen2Gadget.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Debug/Karen2Gadget.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2f1b5aa9ca9324e732c8dc8ad98b9a6b4836d80a 2 | -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Debug/Karen2Gadget.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/obj/Debug/Karen2Gadget.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Debug/Karen2Gadget.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Debug/Karen2Gadget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/obj/Debug/Karen2Gadget.exe -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Debug/Karen2Gadget.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/obj/Debug/Karen2Gadget.pdb -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Debug/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Release/Karen2Gadget.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/obj/Release/Karen2Gadget.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Release/Karen2Gadget.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b1cac3c5db117414049b7ee1b7ead321fc446162 2 | -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Release/Karen2Gadget.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/obj/Release/Karen2Gadget.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Release/Karen2Gadget.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Release/Karen2Gadget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/obj/Release/Karen2Gadget.exe -------------------------------------------------------------------------------- /SmartKaren/Karen2Gadget/Karen2Gadget/obj/Release/Karen2Gadget.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/Karen2Gadget/Karen2Gadget/obj/Release/Karen2Gadget.pdb -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi.sln -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/App.config -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/CommandLineArgumentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/CommandLineArgumentParser.cs -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.Data/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.Data/Native.cs -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.Data/PE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.Data/PE.cs -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.Data/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.Data/Win32.cs -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.DynamicInvoke/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.DynamicInvoke/Generic.cs -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.DynamicInvoke/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.DynamicInvoke/Native.cs -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.DynamicInvoke/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.DynamicInvoke/Utilities.cs -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.DynamicInvoke/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.DynamicInvoke/Win32.cs -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.ManualMap/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.ManualMap/Map.cs -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.ManualMap/Overload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/DInvoke.ManualMap/Overload.cs -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/KarenDumpedMi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/KarenDumpedMi.csproj -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/Program.cs -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/Win32.cs -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/bin/Debug/KarenDumpedMi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/bin/Debug/KarenDumpedMi.exe -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/bin/Debug/KarenDumpedMi.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/bin/Debug/KarenDumpedMi.exe.config -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/bin/Release/KarenDumpedMi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/bin/Release/KarenDumpedMi.exe -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/bin/Release/KarenDumpedMi.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/bin/Release/KarenDumpedMi.exe.config -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Debug/KarenDumpedMi.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Debug/KarenDumpedMi.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Debug/KarenDumpedMi.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 51cd1e7cddced5420392c181d0f984ef77fbd2b7 2 | -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Debug/KarenDumpedMi.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Debug/KarenDumpedMi.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Debug/KarenDumpedMi.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Debug/KarenDumpedMi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Debug/KarenDumpedMi.exe -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Release/KarenDumpedMi.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Release/KarenDumpedMi.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Release/KarenDumpedMi.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | dcc68868bf5b3cad077be20a89210a6b67524bef 2 | -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Release/KarenDumpedMi.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Release/KarenDumpedMi.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Release/KarenDumpedMi.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Release/KarenDumpedMi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/obj/Release/KarenDumpedMi.exe -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/KarenDumpedMi/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/KarenDumpedMi/packages.config -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/packages/dnMerge.0.5.15/build/dnMerge.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/packages/dnMerge.0.5.15/build/dnMerge.targets -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/packages/dnMerge.0.5.15/buildMultiTargeting/dnMerge.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/packages/dnMerge.0.5.15/buildMultiTargeting/dnMerge.targets -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/packages/dnMerge.0.5.15/dnMerge.0.5.15.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/packages/dnMerge.0.5.15/dnMerge.0.5.15.nupkg -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/packages/dnMerge.0.5.15/tasks/net472/dnMerge.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/packages/dnMerge.0.5.15/tasks/net472/dnMerge.dll -------------------------------------------------------------------------------- /SmartKaren/KarenDumpedMi/packages/dnMerge.0.5.15/tasks/netstandard2.1/dnMerge.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenDumpedMi/packages/dnMerge.0.5.15/tasks/netstandard2.1/dnMerge.dll -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr.sln -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/App.config -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/CommandLineArgumentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/CommandLineArgumentParser.cs -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/DInvoke.Data/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/DInvoke.Data/Native.cs -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/DInvoke.Data/PE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/DInvoke.Data/PE.cs -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/DInvoke.Data/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/DInvoke.Data/Win32.cs -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/DInvoke.DynamicInvoke/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/DInvoke.DynamicInvoke/Generic.cs -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/DInvoke.DynamicInvoke/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/DInvoke.DynamicInvoke/Native.cs -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/DInvoke.DynamicInvoke/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/DInvoke.DynamicInvoke/Utilities.cs -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/DInvoke.DynamicInvoke/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/DInvoke.DynamicInvoke/Win32.cs -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/DInvoke.ManualMap/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/DInvoke.ManualMap/Map.cs -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/DInvoke.ManualMap/Overload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/DInvoke.ManualMap/Overload.cs -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/KarenLdr.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/KarenLdr.csproj -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/Program.cs -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/Win32.cs -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/bin/Debug/KarenLdr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/bin/Debug/KarenLdr.exe -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/bin/Debug/KarenLdr.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/bin/Debug/KarenLdr.exe.config -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/bin/Release/KarenLdr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/bin/Release/KarenLdr.exe -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/bin/Release/KarenLdr.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/bin/Release/KarenLdr.exe.config -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/obj/Debug/KarenLdr.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/obj/Debug/KarenLdr.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/obj/Debug/KarenLdr.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 51cd1e7cddced5420392c181d0f984ef77fbd2b7 2 | -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/obj/Debug/KarenLdr.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/obj/Debug/KarenLdr.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/obj/Debug/KarenLdr.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/obj/Debug/KarenLdr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/obj/Debug/KarenLdr.exe -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/obj/Release/KarenLdr.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/obj/Release/KarenLdr.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/obj/Release/KarenLdr.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | dcc68868bf5b3cad077be20a89210a6b67524bef 2 | -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/obj/Release/KarenLdr.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/obj/Release/KarenLdr.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/obj/Release/KarenLdr.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/obj/Release/KarenLdr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/obj/Release/KarenLdr.exe -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/KarenLdr/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/KarenLdr/packages.config -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/packages/dnMerge.0.5.15/build/dnMerge.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/packages/dnMerge.0.5.15/build/dnMerge.targets -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/packages/dnMerge.0.5.15/buildMultiTargeting/dnMerge.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/packages/dnMerge.0.5.15/buildMultiTargeting/dnMerge.targets -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/packages/dnMerge.0.5.15/dnMerge.0.5.15.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/packages/dnMerge.0.5.15/dnMerge.0.5.15.nupkg -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/packages/dnMerge.0.5.15/tasks/net472/dnMerge.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/packages/dnMerge.0.5.15/tasks/net472/dnMerge.dll -------------------------------------------------------------------------------- /SmartKaren/KarenLdr/packages/dnMerge.0.5.15/tasks/netstandard2.1/dnMerge.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/KarenLdr/packages/dnMerge.0.5.15/tasks/netstandard2.1/dnMerge.dll -------------------------------------------------------------------------------- /SmartKaren/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/README.md -------------------------------------------------------------------------------- /SmartKaren/resources/SmartKaren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/SmartKaren/resources/SmartKaren.png -------------------------------------------------------------------------------- /WDAC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/WDAC/README.md -------------------------------------------------------------------------------- /WDAC/msbuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/WDAC/msbuild.xml -------------------------------------------------------------------------------- /WDAC/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/WDAC/text.txt -------------------------------------------------------------------------------- /WDAC/text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/WDAC/text.xml -------------------------------------------------------------------------------- /Windows Internals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyWong420/OPSEC-Tradecraft/HEAD/Windows Internals/README.md --------------------------------------------------------------------------------