├── .gitignore ├── AbandonedCOMKeys ├── AbandonedCOMKeys.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── COMHunter ├── App.config ├── COMHunter.csproj ├── COMHunter.sln ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── CredPhisher ├── CredPhisher.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── DriverQuery ├── DriverQuery.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config ├── ETWEventSubscription ├── ETWEventSubscription.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config ├── EncryptedZIP ├── EncryptedZIP.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config ├── GPSCoordinates ├── GPSCoordinates.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── HijackHunter ├── HijackHunter.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── UnsafeHelpers.cs ├── HookDetector ├── HookDetector.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── ImplantSSP ├── ImplantSSP.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── InspectAssembly ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── InspectAssembly.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── README.md └── packages.config ├── JunctionFolder ├── JunctionFolder.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── LICENSE ├── MockDirUACBypass ├── MockDirUACBypass.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── OffensiveCSharp.sln ├── PhantomService ├── PhantomService.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── README.md ├── SessionSearcher ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SessionSearcher.csproj └── app.config └── UnquotedPath ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── UnquotedPath.csproj └── app.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /AbandonedCOMKeys/AbandonedCOMKeys.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/AbandonedCOMKeys/AbandonedCOMKeys.csproj -------------------------------------------------------------------------------- /AbandonedCOMKeys/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/AbandonedCOMKeys/Program.cs -------------------------------------------------------------------------------- /AbandonedCOMKeys/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/AbandonedCOMKeys/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AbandonedCOMKeys/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/AbandonedCOMKeys/app.config -------------------------------------------------------------------------------- /COMHunter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/COMHunter/App.config -------------------------------------------------------------------------------- /COMHunter/COMHunter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/COMHunter/COMHunter.csproj -------------------------------------------------------------------------------- /COMHunter/COMHunter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/COMHunter/COMHunter.sln -------------------------------------------------------------------------------- /COMHunter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/COMHunter/Program.cs -------------------------------------------------------------------------------- /COMHunter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/COMHunter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /COMHunter/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/COMHunter/packages.config -------------------------------------------------------------------------------- /CredPhisher/CredPhisher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/CredPhisher/CredPhisher.csproj -------------------------------------------------------------------------------- /CredPhisher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/CredPhisher/Program.cs -------------------------------------------------------------------------------- /CredPhisher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/CredPhisher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CredPhisher/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/CredPhisher/app.config -------------------------------------------------------------------------------- /DriverQuery/DriverQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/DriverQuery/DriverQuery.csproj -------------------------------------------------------------------------------- /DriverQuery/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/DriverQuery/Program.cs -------------------------------------------------------------------------------- /DriverQuery/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/DriverQuery/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DriverQuery/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/DriverQuery/app.config -------------------------------------------------------------------------------- /DriverQuery/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/DriverQuery/packages.config -------------------------------------------------------------------------------- /ETWEventSubscription/ETWEventSubscription.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/ETWEventSubscription/ETWEventSubscription.csproj -------------------------------------------------------------------------------- /ETWEventSubscription/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/ETWEventSubscription/Program.cs -------------------------------------------------------------------------------- /ETWEventSubscription/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/ETWEventSubscription/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ETWEventSubscription/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/ETWEventSubscription/app.config -------------------------------------------------------------------------------- /ETWEventSubscription/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/ETWEventSubscription/packages.config -------------------------------------------------------------------------------- /EncryptedZIP/EncryptedZIP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/EncryptedZIP/EncryptedZIP.csproj -------------------------------------------------------------------------------- /EncryptedZIP/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/EncryptedZIP/Program.cs -------------------------------------------------------------------------------- /EncryptedZIP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/EncryptedZIP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EncryptedZIP/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/EncryptedZIP/app.config -------------------------------------------------------------------------------- /EncryptedZIP/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/EncryptedZIP/packages.config -------------------------------------------------------------------------------- /GPSCoordinates/GPSCoordinates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/GPSCoordinates/GPSCoordinates.csproj -------------------------------------------------------------------------------- /GPSCoordinates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/GPSCoordinates/Program.cs -------------------------------------------------------------------------------- /GPSCoordinates/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/GPSCoordinates/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GPSCoordinates/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/GPSCoordinates/app.config -------------------------------------------------------------------------------- /HijackHunter/HijackHunter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/HijackHunter/HijackHunter.csproj -------------------------------------------------------------------------------- /HijackHunter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/HijackHunter/Program.cs -------------------------------------------------------------------------------- /HijackHunter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/HijackHunter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HijackHunter/UnsafeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/HijackHunter/UnsafeHelpers.cs -------------------------------------------------------------------------------- /HookDetector/HookDetector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/HookDetector/HookDetector.csproj -------------------------------------------------------------------------------- /HookDetector/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/HookDetector/Program.cs -------------------------------------------------------------------------------- /HookDetector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/HookDetector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ImplantSSP/ImplantSSP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/ImplantSSP/ImplantSSP.csproj -------------------------------------------------------------------------------- /ImplantSSP/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/ImplantSSP/Program.cs -------------------------------------------------------------------------------- /ImplantSSP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/ImplantSSP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ImplantSSP/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/ImplantSSP/app.config -------------------------------------------------------------------------------- /InspectAssembly/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/InspectAssembly/FodyWeavers.xml -------------------------------------------------------------------------------- /InspectAssembly/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/InspectAssembly/FodyWeavers.xsd -------------------------------------------------------------------------------- /InspectAssembly/InspectAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/InspectAssembly/InspectAssembly.csproj -------------------------------------------------------------------------------- /InspectAssembly/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/InspectAssembly/Program.cs -------------------------------------------------------------------------------- /InspectAssembly/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/InspectAssembly/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InspectAssembly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/InspectAssembly/README.md -------------------------------------------------------------------------------- /InspectAssembly/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/InspectAssembly/packages.config -------------------------------------------------------------------------------- /JunctionFolder/JunctionFolder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/JunctionFolder/JunctionFolder.csproj -------------------------------------------------------------------------------- /JunctionFolder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/JunctionFolder/Program.cs -------------------------------------------------------------------------------- /JunctionFolder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/JunctionFolder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /JunctionFolder/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/JunctionFolder/app.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /MockDirUACBypass/MockDirUACBypass.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/MockDirUACBypass/MockDirUACBypass.csproj -------------------------------------------------------------------------------- /MockDirUACBypass/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/MockDirUACBypass/Program.cs -------------------------------------------------------------------------------- /MockDirUACBypass/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/MockDirUACBypass/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MockDirUACBypass/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/MockDirUACBypass/app.config -------------------------------------------------------------------------------- /OffensiveCSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/OffensiveCSharp.sln -------------------------------------------------------------------------------- /PhantomService/PhantomService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/PhantomService/PhantomService.csproj -------------------------------------------------------------------------------- /PhantomService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/PhantomService/Program.cs -------------------------------------------------------------------------------- /PhantomService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/PhantomService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PhantomService/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/PhantomService/app.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/README.md -------------------------------------------------------------------------------- /SessionSearcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/SessionSearcher/Program.cs -------------------------------------------------------------------------------- /SessionSearcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/SessionSearcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SessionSearcher/SessionSearcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/SessionSearcher/SessionSearcher.csproj -------------------------------------------------------------------------------- /SessionSearcher/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/SessionSearcher/app.config -------------------------------------------------------------------------------- /UnquotedPath/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/UnquotedPath/Program.cs -------------------------------------------------------------------------------- /UnquotedPath/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/UnquotedPath/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnquotedPath/UnquotedPath.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/UnquotedPath/UnquotedPath.csproj -------------------------------------------------------------------------------- /UnquotedPath/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matterpreter/OffensiveCSharp/HEAD/UnquotedPath/app.config --------------------------------------------------------------------------------