├── Active Directory Tools ├── ADAutoEnum │ ├── .vs │ │ └── ADautoenum │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ ├── ADautoenum.sln │ └── ADautoenum │ │ ├── ADautoenum.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── ADautoenum.exe │ │ │ ├── ADautoenum.exe.config │ │ │ └── ADautoenum.pdb │ │ └── obj │ │ └── Debug │ │ ├── ADautoenum.csproj.FileListAbsolute.txt │ │ ├── ADautoenum.csprojAssemblyReference.cache │ │ ├── ADautoenum.exe │ │ ├── ADautoenum.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── AS-REPRoastable │ ├── .vs │ │ └── my practice │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ ├── my practice.sln │ └── my practice │ │ ├── Class1.cs │ │ ├── bin │ │ ├── Debug │ │ │ └── net48 │ │ │ │ ├── ObjectDumping.dll │ │ │ │ ├── my practice.exe │ │ │ │ ├── my practice.exe.config │ │ │ │ └── my practice.pdb │ │ └── Release │ │ │ └── net48 │ │ │ ├── my practice.exe │ │ │ ├── my practice.exe.config │ │ │ └── my practice.pdb │ │ ├── my practice.csproj │ │ └── obj │ │ ├── Debug │ │ ├── net48 │ │ │ ├── my practice.AssemblyInfo.cs │ │ │ ├── my practice.AssemblyInfoInputs.cache │ │ │ ├── my practice.assets.cache │ │ │ ├── my practice.csproj.CopyComplete │ │ │ ├── my practice.csproj.FileListAbsolute.txt │ │ │ ├── my practice.exe │ │ │ ├── my practice.exe.withSupportedRuntime.config │ │ │ └── my practice.pdb │ │ └── netstandard2.0 │ │ │ ├── my practice.AssemblyInfo.cs │ │ │ ├── my practice.AssemblyInfoInputs.cache │ │ │ ├── my practice.assets.cache │ │ │ └── my practice.csprojAssemblyReference.cache │ │ ├── Release │ │ └── net48 │ │ │ ├── my practice.AssemblyInfo.cs │ │ │ ├── my practice.AssemblyInfoInputs.cache │ │ │ ├── my practice.assets.cache │ │ │ ├── my practice.csproj.FileListAbsolute.txt │ │ │ ├── my practice.csprojAssemblyReference.cache │ │ │ ├── my practice.exe │ │ │ ├── my practice.exe.withSupportedRuntime.config │ │ │ └── my practice.pdb │ │ ├── my practice.csproj.nuget.cache │ │ ├── my practice.csproj.nuget.dgspec.json │ │ ├── my practice.csproj.nuget.g.props │ │ ├── my practice.csproj.nuget.g.targets │ │ └── project.assets.json ├── CLM-Bypass │ ├── .vs │ │ └── Runspaces2 │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ ├── Runspaces2.sln │ └── Runspaces2 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Runspaces2.csproj │ │ ├── bin │ │ └── Debug │ │ │ ├── Runspaces2.exe │ │ │ ├── Runspaces2.exe.config │ │ │ ├── Runspaces2.pdb │ │ │ ├── System.Management.Automation.dll │ │ │ └── test.txt │ │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Runspaces2.csproj.CopyComplete │ │ ├── Runspaces2.csproj.FileListAbsolute.txt │ │ ├── Runspaces2.exe │ │ └── Runspaces2.pdb ├── EnablePrivilege │ ├── .vs │ │ └── TokenInformation │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ ├── TokenInformation.sln │ └── TokenInformation │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── TokenInformation.csproj │ │ ├── bin │ │ └── Debug │ │ │ ├── TokenInformation.exe │ │ │ ├── TokenInformation.exe.config │ │ │ └── TokenInformation.pdb │ │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TokenInformation.csproj.FileListAbsolute.txt │ │ ├── TokenInformation.csprojAssemblyReference.cache │ │ ├── TokenInformation.exe │ │ └── TokenInformation.pdb ├── Get-DCSyncUsers │ ├── .vs │ │ └── ACL101 │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ ├── ACL101.sln │ └── ACL101 │ │ ├── ACL101.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── ACL101.exe │ │ │ ├── ACL101.exe.config │ │ │ └── ACL101.pdb │ │ └── obj │ │ └── Debug │ │ ├── ACL101.csproj.FileListAbsolute.txt │ │ ├── ACL101.csprojAssemblyReference.cache │ │ ├── ACL101.exe │ │ ├── ACL101.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── Get-NestedMembersofGroup │ ├── .vs │ │ └── GetGroup │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ ├── GetGroup.sln │ └── GetGroup │ │ ├── Class1.cs │ │ ├── GetGroup.csproj │ │ ├── bin │ │ └── Debug │ │ │ └── net48 │ │ │ ├── GetGroup.exe │ │ │ ├── GetGroup.exe.config │ │ │ └── GetGroup.pdb │ │ └── obj │ │ ├── Debug │ │ ├── net48 │ │ │ ├── GetGroup.AssemblyInfo.cs │ │ │ ├── GetGroup.AssemblyInfoInputs.cache │ │ │ ├── GetGroup.assets.cache │ │ │ ├── GetGroup.csproj.FileListAbsolute.txt │ │ │ ├── GetGroup.csprojAssemblyReference.cache │ │ │ ├── GetGroup.exe │ │ │ ├── GetGroup.exe.withSupportedRuntime.config │ │ │ └── GetGroup.pdb │ │ └── netstandard2.0 │ │ │ ├── GetGroup.AssemblyInfo.cs │ │ │ ├── GetGroup.AssemblyInfoInputs.cache │ │ │ ├── GetGroup.assets.cache │ │ │ └── GetGroup.csprojAssemblyReference.cache │ │ ├── GetGroup.csproj.nuget.cache │ │ ├── GetGroup.csproj.nuget.dgspec.json │ │ ├── GetGroup.csproj.nuget.g.props │ │ ├── GetGroup.csproj.nuget.g.targets │ │ └── project.assets.json ├── Get-UsersSPN │ ├── .vs │ │ └── GetUsersSPN │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ ├── GetUsersSPN.sln │ └── GetUsersSPN │ │ ├── Class1.cs │ │ ├── GetUsersSPN.csproj │ │ ├── bin │ │ └── Debug │ │ │ └── net48 │ │ │ ├── GetUsersSPN.exe │ │ │ ├── GetUsersSPN.exe.config │ │ │ └── GetUsersSPN.pdb │ │ └── obj │ │ ├── Debug │ │ ├── net48 │ │ │ ├── GetUsersSPN.AssemblyInfo.cs │ │ │ ├── GetUsersSPN.AssemblyInfoInputs.cache │ │ │ ├── GetUsersSPN.assets.cache │ │ │ ├── GetUsersSPN.csproj.FileListAbsolute.txt │ │ │ ├── GetUsersSPN.csprojAssemblyReference.cache │ │ │ ├── GetUsersSPN.exe │ │ │ ├── GetUsersSPN.exe.withSupportedRuntime.config │ │ │ └── GetUsersSPN.pdb │ │ └── netstandard2.0 │ │ │ ├── GetUsersSPN.AssemblyInfo.cs │ │ │ ├── GetUsersSPN.AssemblyInfoInputs.cache │ │ │ ├── GetUsersSPN.assets.cache │ │ │ └── GetUsersSPN.csprojAssemblyReference.cache │ │ ├── GetUsersSPN.csproj.nuget.cache │ │ ├── GetUsersSPN.csproj.nuget.dgspec.json │ │ ├── GetUsersSPN.csproj.nuget.g.props │ │ ├── GetUsersSPN.csproj.nuget.g.targets │ │ └── project.assets.json └── LSA API │ └── LSAEnumerateLogonSessions │ ├── .vs │ └── LsaEnumerateLoggedonSessions │ │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide │ ├── LsaEnumerateLoggedonSessions.sln │ └── LsaEnumerateLoggedonSessions │ ├── App.config │ ├── LsaEnumerateLoggedonSessions.csproj │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── bin │ └── Debug │ │ ├── LsaEnumerateLoggedonSessions.exe │ │ ├── LsaEnumerateLoggedonSessions.exe.config │ │ └── LsaEnumerateLoggedonSessions.pdb │ └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── LsaEnumerateLoggedonSessions.csproj.FileListAbsolute.txt │ ├── LsaEnumerateLoggedonSessions.exe │ └── LsaEnumerateLoggedonSessions.pdb ├── C2Client ├── .vs │ └── C2Client │ │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal ├── C2Client.sln └── C2Client │ ├── App.config │ ├── C2Client.csproj │ ├── C2Client.csproj.user │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── bin │ └── Debug │ │ ├── C2Client.exe │ │ ├── C2Client.exe.config │ │ ├── C2Client.pdb │ │ ├── New folder │ │ ├── flag.txt │ │ ├── flag1.txt │ │ └── flag2.txt │ │ ├── System.Management.Automation.dll │ │ └── Windows Server 2016-2022-03-10-08-32-41.png │ ├── functions.cs │ ├── obj │ └── Debug │ │ ├── C2Client.csproj.CopyComplete │ │ ├── C2Client.csproj.FileListAbsolute.txt │ │ ├── C2Client.csprojAssemblyReference.cache │ │ ├── C2Client.exe │ │ ├── C2Client.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ └── winapi.cs ├── Code Injections ├── API Hashing │ ├── .vs │ │ └── apihashing │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ ├── apihashing.sln │ └── apihashing │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── apihashing.csproj │ │ ├── bin │ │ └── Debug │ │ │ ├── apihashing.exe │ │ │ ├── apihashing.exe.config │ │ │ └── apihashing.pdb │ │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── apihashing.csproj.FileListAbsolute.txt │ │ │ ├── apihashing.csprojAssemblyReference.cache │ │ │ ├── apihashing.exe │ │ │ └── apihashing.pdb │ │ └── winapi.cs ├── PE64Loader │ ├── .vs │ │ └── PE64Loader │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ ├── PE64Loader.sln │ └── PE64Loader │ │ ├── App.config │ │ ├── PE64Loader.csproj │ │ ├── PE64Loader.csproj.user │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── PE64Loader.exe │ │ │ ├── PE64Loader.exe.config │ │ │ └── PE64Loader.pdb │ │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── PE64Loader.csproj.FileListAbsolute.txt │ │ ├── PE64Loader.csprojAssemblyReference.cache │ │ ├── PE64Loader.exe │ │ └── PE64Loader.pdb ├── PELoader │ ├── .vs │ │ └── PELoader │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ ├── PELoader.sln │ └── PELoader │ │ ├── App.config │ │ ├── PELoader.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── PELoader.exe │ │ │ ├── PELoader.exe.config │ │ │ └── PELoader.pdb │ │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── PELoader.csproj.FileListAbsolute.txt │ │ ├── PELoader.csprojAssemblyReference.cache │ │ ├── PELoader.exe │ │ └── PELoader.pdb ├── ProcessHollow64 │ ├── .vs │ │ └── process_hollowing │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ ├── process_hollowing.sln │ └── process_hollowing │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── process_hollowing.exe │ │ │ ├── process_hollowing.exe.config │ │ │ └── process_hollowing.pdb │ │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── process_hollowing.csproj.FileListAbsolute.txt │ │ │ ├── process_hollowing.csprojAssemblyReference.cache │ │ │ ├── process_hollowing.exe │ │ │ └── process_hollowing.pdb │ │ └── process_hollowing.csproj ├── Processdoppelgang64 │ ├── .vs │ │ └── ProcessDoppleganging │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ ├── ProcessDoppleganging.sln │ └── ProcessDoppleganging │ │ ├── App.config │ │ ├── ProcessDoppleganging.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── ProcessDoppleganging.exe │ │ │ ├── ProcessDoppleganging.exe.config │ │ │ ├── ProcessDoppleganging.pdb │ │ │ └── calc2.exe │ │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── ProcessDoppleganging.csproj.FileListAbsolute.txt │ │ │ ├── ProcessDoppleganging.csprojAssemblyReference.cache │ │ │ ├── ProcessDoppleganging.exe │ │ │ └── ProcessDoppleganging.pdb │ │ └── winapi.cs ├── Queue APC Injections │ ├── .vs │ │ └── apcinjection │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ ├── apcinjection.sln │ └── apcinjection │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── apcinjection.csproj │ │ ├── bin │ │ └── Debug │ │ │ ├── apcinjection.exe │ │ │ ├── apcinjection.exe.config │ │ │ └── apcinjection.pdb │ │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── apcinjection.csproj.FileListAbsolute.txt │ │ │ ├── apcinjection.csprojAssemblyReference.cache │ │ │ ├── apcinjection.exe │ │ │ └── apcinjection.pdb │ │ └── winapi.cs ├── SectionMap │ ├── .vs │ │ └── sectionmap │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ ├── sectionmap.sln │ └── sectionmap │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── sectionmap.exe │ │ │ ├── sectionmap.exe.config │ │ │ └── sectionmap.pdb │ │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── sectionmap.csproj.FileListAbsolute.txt │ │ │ ├── sectionmap.csprojAssemblyReference.cache │ │ │ ├── sectionmap.exe │ │ │ └── sectionmap.pdb │ │ ├── sectionmap.csproj │ │ └── winapi.cs └── virtualallocex_remoteprocess │ ├── .vs │ └── virtualallocex_remoteprocess │ │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal │ ├── virtualallocex_remoteprocess.sln │ └── virtualallocex_remoteprocess │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── bin │ └── Debug │ │ ├── enableprivs.ps1 │ │ ├── virtualallocex_remoteprocess.exe │ │ ├── virtualallocex_remoteprocess.exe.config │ │ └── virtualallocex_remoteprocess.pdb │ ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── virtualallocex_remoteprocess.csproj.FileListAbsolute.txt │ │ ├── virtualallocex_remoteprocess.csprojAssemblyReference.cache │ │ ├── virtualallocex_remoteprocess.exe │ │ └── virtualallocex_remoteprocess.pdb │ └── virtualallocex_remoteprocess.csproj ├── Get-WritableFiles ├── .vs │ └── Get-Writable │ │ ├── DesignTimeBuild │ │ └── .dtbcache │ │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── Get-Writable.sln └── Get-Writable │ ├── Class1.cs │ ├── Get-Writable.csproj │ ├── bin │ └── Debug │ │ └── net48 │ │ ├── Get-Writable.exe │ │ ├── Get-Writable.exe.config │ │ └── Get-Writable.pdb │ └── obj │ ├── Debug │ ├── net48 │ │ ├── Get-Writable.AssemblyInfo.cs │ │ ├── Get-Writable.AssemblyInfoInputs.cache │ │ ├── Get-Writable.assets.cache │ │ ├── Get-Writable.csproj.FileListAbsolute.txt │ │ ├── Get-Writable.exe │ │ ├── Get-Writable.exe.withSupportedRuntime.config │ │ └── Get-Writable.pdb │ └── netstandard2.0 │ │ ├── Get-Writable.AssemblyInfo.cs │ │ ├── Get-Writable.AssemblyInfoInputs.cache │ │ ├── Get-Writable.assets.cache │ │ └── Get-Writable.csprojAssemblyReference.cache │ ├── Get-Writable.csproj.nuget.cache │ ├── Get-Writable.csproj.nuget.dgspec.json │ ├── Get-Writable.csproj.nuget.g.props │ ├── Get-Writable.csproj.nuget.g.targets │ └── project.assets.json ├── README.md ├── amsipatch64 ├── .vs │ └── amsibypass │ │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal ├── amsibypass.sln └── amsibypass │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── amsipatch64.csproj │ ├── bin │ └── Debug │ │ ├── amsibypass.exe │ │ ├── amsibypass.exe.config │ │ └── amsibypass.pdb │ ├── mylib.cs │ └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── amsibypass.csproj.FileListAbsolute.txt │ ├── amsibypass.exe │ ├── amsibypass.pdb │ ├── amsipatch64.csproj.FileListAbsolute.txt │ └── amsipatch64.csprojAssemblyReference.cache └── api hooking ├── .vs └── api hooking │ └── v16 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ ├── storage.ide │ ├── storage.ide-shm │ └── storage.ide-wal ├── api hooking.sln └── api hooking ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── api hooking.csproj ├── bin └── Debug │ ├── api hooking.exe │ ├── api hooking.exe.config │ └── api hooking.pdb ├── mylib.cs └── obj └── Debug ├── DesignTimeResolveAssemblyReferencesInput.cache ├── api hooking.csproj.FileListAbsolute.txt ├── api hooking.csprojAssemblyReference.cache ├── api hooking.exe └── api hooking.pdb /Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/ADautoenum.sln -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/ADautoenum.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/ADautoenum/ADautoenum.csproj -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/ADautoenum/App.config -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/ADautoenum/Program.cs -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/ADautoenum/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/bin/Debug/ADautoenum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/ADautoenum/bin/Debug/ADautoenum.exe -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/bin/Debug/ADautoenum.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/ADautoenum/bin/Debug/ADautoenum.exe.config -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/bin/Debug/ADautoenum.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/ADautoenum/bin/Debug/ADautoenum.pdb -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/obj/Debug/ADautoenum.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/ADautoenum/obj/Debug/ADautoenum.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/obj/Debug/ADautoenum.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/ADautoenum/obj/Debug/ADautoenum.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/obj/Debug/ADautoenum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/ADautoenum/obj/Debug/ADautoenum.exe -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/obj/Debug/ADautoenum.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/ADautoenum/obj/Debug/ADautoenum.pdb -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/ADAutoEnum/ADautoenum/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/.vs/my practice/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/.vs/my practice/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/.vs/my practice/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/.vs/my practice/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/.vs/my practice/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/.vs/my practice/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/.vs/my practice/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice.sln -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/Class1.cs -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/bin/Debug/net48/ObjectDumping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/bin/Debug/net48/ObjectDumping.dll -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/bin/Debug/net48/my practice.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/bin/Debug/net48/my practice.exe -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/bin/Debug/net48/my practice.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/bin/Debug/net48/my practice.exe.config -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/bin/Debug/net48/my practice.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/bin/Debug/net48/my practice.pdb -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/bin/Release/net48/my practice.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/bin/Release/net48/my practice.exe -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/bin/Release/net48/my practice.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/bin/Release/net48/my practice.exe.config -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/bin/Release/net48/my practice.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/bin/Release/net48/my practice.pdb -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/my practice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/my practice.csproj -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.AssemblyInfo.cs -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 9e45c9ce270c714c2c3a92fa451d9404b2cb637b 2 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.assets.cache -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.exe -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.exe.withSupportedRuntime.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.exe.withSupportedRuntime.config -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.pdb -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/netstandard2.0/my practice.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/netstandard2.0/my practice.AssemblyInfo.cs -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/netstandard2.0/my practice.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 9e45c9ce270c714c2c3a92fa451d9404b2cb637b 2 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/netstandard2.0/my practice.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/netstandard2.0/my practice.assets.cache -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/netstandard2.0/my practice.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/netstandard2.0/my practice.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.AssemblyInfo.cs -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f8a0d05b4b54aac466511230bde298a4dcc9c0b2 2 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.assets.cache -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.exe -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.exe.withSupportedRuntime.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.exe.withSupportedRuntime.config -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.pdb -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/my practice.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/my practice.csproj.nuget.cache -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/my practice.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/my practice.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/my practice.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/my practice.csproj.nuget.g.props -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/my practice.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/my practice.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/AS-REPRoastable/my practice/obj/project.assets.json -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/.vs/Runspaces2/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/.vs/Runspaces2/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/.vs/Runspaces2/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/.vs/Runspaces2/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/.vs/Runspaces2/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2.sln -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2/App.config -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2/Program.cs -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/Runspaces2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2/Runspaces2.csproj -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/Runspaces2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/Runspaces2.exe -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/Runspaces2.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/Runspaces2.exe.config -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/Runspaces2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/Runspaces2.pdb -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/System.Management.Automation.dll -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/test.txt -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/Runspaces2.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/Runspaces2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/Runspaces2.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/Runspaces2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/Runspaces2.exe -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/Runspaces2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/Runspaces2.pdb -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/.vs/TokenInformation/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/.vs/TokenInformation/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/.vs/TokenInformation/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/.vs/TokenInformation/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/.vs/TokenInformation/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/TokenInformation.sln -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/TokenInformation/App.config -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/TokenInformation/Program.cs -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/TokenInformation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/TokenInformation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/TokenInformation/TokenInformation.csproj -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/bin/Debug/TokenInformation.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/TokenInformation/bin/Debug/TokenInformation.exe -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/bin/Debug/TokenInformation.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/TokenInformation/bin/Debug/TokenInformation.exe.config -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/bin/Debug/TokenInformation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/TokenInformation/bin/Debug/TokenInformation.pdb -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/TokenInformation/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/obj/Debug/TokenInformation.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/TokenInformation/obj/Debug/TokenInformation.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/obj/Debug/TokenInformation.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/TokenInformation/obj/Debug/TokenInformation.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/obj/Debug/TokenInformation.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/TokenInformation/obj/Debug/TokenInformation.exe -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/obj/Debug/TokenInformation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/EnablePrivilege/TokenInformation/obj/Debug/TokenInformation.pdb -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/ACL101.sln -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/ACL101.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/ACL101/ACL101.csproj -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/ACL101/App.config -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/ACL101/Program.cs -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/ACL101/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/bin/Debug/ACL101.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/ACL101/bin/Debug/ACL101.exe -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/bin/Debug/ACL101.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/ACL101/bin/Debug/ACL101.exe.config -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/bin/Debug/ACL101.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/ACL101/bin/Debug/ACL101.pdb -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/obj/Debug/ACL101.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/ACL101/obj/Debug/ACL101.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/obj/Debug/ACL101.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/ACL101/obj/Debug/ACL101.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/obj/Debug/ACL101.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/ACL101/obj/Debug/ACL101.exe -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/obj/Debug/ACL101.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/ACL101/obj/Debug/ACL101.pdb -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-DCSyncUsers/ACL101/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup.sln -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/Class1.cs -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/GetGroup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/GetGroup.csproj -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/bin/Debug/net48/GetGroup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/bin/Debug/net48/GetGroup.exe -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/bin/Debug/net48/GetGroup.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/bin/Debug/net48/GetGroup.exe.config -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/bin/Debug/net48/GetGroup.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/bin/Debug/net48/GetGroup.pdb -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.AssemblyInfo.cs -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bdcf01f57ed9181ccc578c8ad5797722732c7cd8 2 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.assets.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.exe -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.exe.withSupportedRuntime.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.exe.withSupportedRuntime.config -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.pdb -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/netstandard2.0/GetGroup.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/netstandard2.0/GetGroup.AssemblyInfo.cs -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/netstandard2.0/GetGroup.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bdcf01f57ed9181ccc578c8ad5797722732c7cd8 2 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/netstandard2.0/GetGroup.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/netstandard2.0/GetGroup.assets.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/netstandard2.0/GetGroup.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/netstandard2.0/GetGroup.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/GetGroup.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/GetGroup.csproj.nuget.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/GetGroup.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/GetGroup.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/GetGroup.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/GetGroup.csproj.nuget.g.props -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/GetGroup.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/GetGroup.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/project.assets.json -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN.sln -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/Class1.cs -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/GetUsersSPN.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/GetUsersSPN.csproj -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/bin/Debug/net48/GetUsersSPN.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/bin/Debug/net48/GetUsersSPN.exe -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/bin/Debug/net48/GetUsersSPN.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/bin/Debug/net48/GetUsersSPN.exe.config -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/bin/Debug/net48/GetUsersSPN.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/bin/Debug/net48/GetUsersSPN.pdb -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.AssemblyInfo.cs -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e7280f784d8a3d7581107ba56afa1df99f65ff72 2 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.assets.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.exe -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.exe.withSupportedRuntime.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.exe.withSupportedRuntime.config -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.pdb -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/netstandard2.0/GetUsersSPN.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/netstandard2.0/GetUsersSPN.AssemblyInfo.cs -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/netstandard2.0/GetUsersSPN.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e7280f784d8a3d7581107ba56afa1df99f65ff72 2 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/netstandard2.0/GetUsersSPN.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/netstandard2.0/GetUsersSPN.assets.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/netstandard2.0/GetUsersSPN.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/netstandard2.0/GetUsersSPN.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/GetUsersSPN.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/GetUsersSPN.csproj.nuget.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/GetUsersSPN.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/GetUsersSPN.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/GetUsersSPN.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/GetUsersSPN.csproj.nuget.g.props -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/GetUsersSPN.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/GetUsersSPN.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/project.assets.json -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/.vs/LsaEnumerateLoggedonSessions/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/.vs/LsaEnumerateLoggedonSessions/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/.vs/LsaEnumerateLoggedonSessions/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/.vs/LsaEnumerateLoggedonSessions/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/.vs/LsaEnumerateLoggedonSessions/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions.sln -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/App.config -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/LsaEnumerateLoggedonSessions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/LsaEnumerateLoggedonSessions.csproj -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/Program.cs -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/bin/Debug/LsaEnumerateLoggedonSessions.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/bin/Debug/LsaEnumerateLoggedonSessions.exe -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/bin/Debug/LsaEnumerateLoggedonSessions.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/bin/Debug/LsaEnumerateLoggedonSessions.exe.config -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/bin/Debug/LsaEnumerateLoggedonSessions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/bin/Debug/LsaEnumerateLoggedonSessions.pdb -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/obj/Debug/LsaEnumerateLoggedonSessions.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/obj/Debug/LsaEnumerateLoggedonSessions.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/obj/Debug/LsaEnumerateLoggedonSessions.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/obj/Debug/LsaEnumerateLoggedonSessions.exe -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/obj/Debug/LsaEnumerateLoggedonSessions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/obj/Debug/LsaEnumerateLoggedonSessions.pdb -------------------------------------------------------------------------------- /C2Client/.vs/C2Client/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/.vs/C2Client/v16/.suo -------------------------------------------------------------------------------- /C2Client/.vs/C2Client/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2Client/.vs/C2Client/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/.vs/C2Client/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /C2Client/.vs/C2Client/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/.vs/C2Client/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /C2Client/.vs/C2Client/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/.vs/C2Client/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /C2Client/C2Client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client.sln -------------------------------------------------------------------------------- /C2Client/C2Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/App.config -------------------------------------------------------------------------------- /C2Client/C2Client/C2Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/C2Client.csproj -------------------------------------------------------------------------------- /C2Client/C2Client/C2Client.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/C2Client.csproj.user -------------------------------------------------------------------------------- /C2Client/C2Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/Program.cs -------------------------------------------------------------------------------- /C2Client/C2Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/C2Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/bin/Debug/C2Client.exe -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/C2Client.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/bin/Debug/C2Client.exe.config -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/C2Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/bin/Debug/C2Client.pdb -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/New folder/flag.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/New folder/flag1.txt: -------------------------------------------------------------------------------- 1 | got it :) -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/New folder/flag2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/bin/Debug/New folder/flag2.txt -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/bin/Debug/System.Management.Automation.dll -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/Windows Server 2016-2022-03-10-08-32-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/bin/Debug/Windows Server 2016-2022-03-10-08-32-41.png -------------------------------------------------------------------------------- /C2Client/C2Client/functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/functions.cs -------------------------------------------------------------------------------- /C2Client/C2Client/obj/Debug/C2Client.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2Client/C2Client/obj/Debug/C2Client.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/obj/Debug/C2Client.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /C2Client/C2Client/obj/Debug/C2Client.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/obj/Debug/C2Client.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /C2Client/C2Client/obj/Debug/C2Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/obj/Debug/C2Client.exe -------------------------------------------------------------------------------- /C2Client/C2Client/obj/Debug/C2Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/obj/Debug/C2Client.pdb -------------------------------------------------------------------------------- /C2Client/C2Client/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /C2Client/C2Client/winapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/C2Client/C2Client/winapi.cs -------------------------------------------------------------------------------- /Code Injections/API Hashing/.vs/apihashing/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/.vs/apihashing/v16/.suo -------------------------------------------------------------------------------- /Code Injections/API Hashing/.vs/apihashing/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code Injections/API Hashing/.vs/apihashing/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/.vs/apihashing/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Code Injections/API Hashing/.vs/apihashing/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/.vs/apihashing/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Code Injections/API Hashing/.vs/apihashing/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/.vs/apihashing/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing.sln -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing/App.config -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing/Program.cs -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/apihashing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing/apihashing.csproj -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/bin/Debug/apihashing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing/bin/Debug/apihashing.exe -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/bin/Debug/apihashing.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing/bin/Debug/apihashing.exe.config -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/bin/Debug/apihashing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing/bin/Debug/apihashing.pdb -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/obj/Debug/apihashing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing/obj/Debug/apihashing.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/obj/Debug/apihashing.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing/obj/Debug/apihashing.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/obj/Debug/apihashing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing/obj/Debug/apihashing.exe -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/obj/Debug/apihashing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing/obj/Debug/apihashing.pdb -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/winapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/API Hashing/apihashing/winapi.cs -------------------------------------------------------------------------------- /Code Injections/PE64Loader/.vs/PE64Loader/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/.vs/PE64Loader/v16/.suo -------------------------------------------------------------------------------- /Code Injections/PE64Loader/.vs/PE64Loader/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code Injections/PE64Loader/.vs/PE64Loader/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/.vs/PE64Loader/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Code Injections/PE64Loader/.vs/PE64Loader/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/.vs/PE64Loader/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Code Injections/PE64Loader/.vs/PE64Loader/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/.vs/PE64Loader/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader.sln -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader/App.config -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/PE64Loader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader/PE64Loader.csproj -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/PE64Loader.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader/PE64Loader.csproj.user -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader/Program.cs -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/bin/Debug/PE64Loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader/bin/Debug/PE64Loader.exe -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/bin/Debug/PE64Loader.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader/bin/Debug/PE64Loader.exe.config -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/bin/Debug/PE64Loader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader/bin/Debug/PE64Loader.pdb -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/obj/Debug/PE64Loader.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader/obj/Debug/PE64Loader.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/obj/Debug/PE64Loader.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader/obj/Debug/PE64Loader.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/obj/Debug/PE64Loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader/obj/Debug/PE64Loader.exe -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/obj/Debug/PE64Loader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PE64Loader/PE64Loader/obj/Debug/PE64Loader.pdb -------------------------------------------------------------------------------- /Code Injections/PELoader/.vs/PELoader/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/.vs/PELoader/v16/.suo -------------------------------------------------------------------------------- /Code Injections/PELoader/.vs/PELoader/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code Injections/PELoader/.vs/PELoader/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/.vs/PELoader/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Code Injections/PELoader/.vs/PELoader/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/.vs/PELoader/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Code Injections/PELoader/.vs/PELoader/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/.vs/PELoader/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/PELoader.sln -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/PELoader/App.config -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/PELoader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/PELoader/PELoader.csproj -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/PELoader/Program.cs -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/PELoader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/bin/Debug/PELoader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/PELoader/bin/Debug/PELoader.exe -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/bin/Debug/PELoader.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/PELoader/bin/Debug/PELoader.exe.config -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/bin/Debug/PELoader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/PELoader/bin/Debug/PELoader.pdb -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/PELoader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/obj/Debug/PELoader.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/PELoader/obj/Debug/PELoader.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/obj/Debug/PELoader.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/PELoader/obj/Debug/PELoader.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/obj/Debug/PELoader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/PELoader/obj/Debug/PELoader.exe -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/obj/Debug/PELoader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/PELoader/PELoader/obj/Debug/PELoader.pdb -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/.vs/process_hollowing/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/.vs/process_hollowing/v16/.suo -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/.vs/process_hollowing/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/.vs/process_hollowing/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/.vs/process_hollowing/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/process_hollowing.sln -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/process_hollowing/App.config -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/process_hollowing/Program.cs -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/process_hollowing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/bin/Debug/process_hollowing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/process_hollowing/bin/Debug/process_hollowing.exe -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/bin/Debug/process_hollowing.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/process_hollowing/bin/Debug/process_hollowing.exe.config -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/bin/Debug/process_hollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/process_hollowing/bin/Debug/process_hollowing.pdb -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/process_hollowing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/obj/Debug/process_hollowing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/process_hollowing/obj/Debug/process_hollowing.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/obj/Debug/process_hollowing.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/process_hollowing/obj/Debug/process_hollowing.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/obj/Debug/process_hollowing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/process_hollowing/obj/Debug/process_hollowing.exe -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/obj/Debug/process_hollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/process_hollowing/obj/Debug/process_hollowing.pdb -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/process_hollowing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/ProcessHollow64/process_hollowing/process_hollowing.csproj -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/.suo -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging.sln -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/App.config -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/ProcessDoppleganging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/ProcessDoppleganging.csproj -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/Program.cs -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/ProcessDoppleganging.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/ProcessDoppleganging.exe -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/ProcessDoppleganging.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/ProcessDoppleganging.exe.config -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/ProcessDoppleganging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/ProcessDoppleganging.pdb -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/calc2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/calc2.exe -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/ProcessDoppleganging.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/ProcessDoppleganging.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/ProcessDoppleganging.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/ProcessDoppleganging.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/ProcessDoppleganging.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/ProcessDoppleganging.exe -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/ProcessDoppleganging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/ProcessDoppleganging.pdb -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/winapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Processdoppelgang64/ProcessDoppleganging/winapi.cs -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/.vs/apcinjection/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/.vs/apcinjection/v16/.suo -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/.vs/apcinjection/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/.vs/apcinjection/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/.vs/apcinjection/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/.vs/apcinjection/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/.vs/apcinjection/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/.vs/apcinjection/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/.vs/apcinjection/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection.sln -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection/App.config -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection/Program.cs -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/apcinjection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection/apcinjection.csproj -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/bin/Debug/apcinjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection/bin/Debug/apcinjection.exe -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/bin/Debug/apcinjection.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection/bin/Debug/apcinjection.exe.config -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/bin/Debug/apcinjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection/bin/Debug/apcinjection.pdb -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/obj/Debug/apcinjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection/obj/Debug/apcinjection.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/obj/Debug/apcinjection.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection/obj/Debug/apcinjection.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/obj/Debug/apcinjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection/obj/Debug/apcinjection.exe -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/obj/Debug/apcinjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection/obj/Debug/apcinjection.pdb -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/winapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/Queue APC Injections/apcinjection/winapi.cs -------------------------------------------------------------------------------- /Code Injections/SectionMap/.vs/sectionmap/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/.vs/sectionmap/v16/.suo -------------------------------------------------------------------------------- /Code Injections/SectionMap/.vs/sectionmap/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code Injections/SectionMap/.vs/sectionmap/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/.vs/sectionmap/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Code Injections/SectionMap/.vs/sectionmap/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/.vs/sectionmap/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Code Injections/SectionMap/.vs/sectionmap/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/.vs/sectionmap/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap.sln -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap/App.config -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap/Program.cs -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/bin/Debug/sectionmap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap/bin/Debug/sectionmap.exe -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/bin/Debug/sectionmap.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap/bin/Debug/sectionmap.exe.config -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/bin/Debug/sectionmap.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap/bin/Debug/sectionmap.pdb -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/obj/Debug/sectionmap.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap/obj/Debug/sectionmap.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/obj/Debug/sectionmap.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap/obj/Debug/sectionmap.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/obj/Debug/sectionmap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap/obj/Debug/sectionmap.exe -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/obj/Debug/sectionmap.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap/obj/Debug/sectionmap.pdb -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/sectionmap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap/sectionmap.csproj -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/winapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/SectionMap/sectionmap/winapi.cs -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/.suo -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess.sln -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/App.config -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/Program.cs -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/bin/Debug/enableprivs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/bin/Debug/enableprivs.ps1 -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/bin/Debug/virtualallocex_remoteprocess.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/bin/Debug/virtualallocex_remoteprocess.exe -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/bin/Debug/virtualallocex_remoteprocess.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/bin/Debug/virtualallocex_remoteprocess.exe.config -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/bin/Debug/virtualallocex_remoteprocess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/bin/Debug/virtualallocex_remoteprocess.pdb -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/virtualallocex_remoteprocess.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/virtualallocex_remoteprocess.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/virtualallocex_remoteprocess.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/virtualallocex_remoteprocess.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/virtualallocex_remoteprocess.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/virtualallocex_remoteprocess.exe -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/virtualallocex_remoteprocess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/virtualallocex_remoteprocess.pdb -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/virtualallocex_remoteprocess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/virtualallocex_remoteprocess.csproj -------------------------------------------------------------------------------- /Get-WritableFiles/.vs/Get-Writable/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/.vs/Get-Writable/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Get-WritableFiles/.vs/Get-Writable/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/.vs/Get-Writable/v16/.suo -------------------------------------------------------------------------------- /Get-WritableFiles/.vs/Get-Writable/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Get-WritableFiles/.vs/Get-Writable/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/.vs/Get-Writable/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable.sln -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/Class1.cs -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/Get-Writable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/Get-Writable.csproj -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/bin/Debug/net48/Get-Writable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/bin/Debug/net48/Get-Writable.exe -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/bin/Debug/net48/Get-Writable.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/bin/Debug/net48/Get-Writable.exe.config -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/bin/Debug/net48/Get-Writable.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/bin/Debug/net48/Get-Writable.pdb -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.AssemblyInfo.cs -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b80384fcdbe227e38f683f49b48158d1962ef7f4 2 | -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.assets.cache -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.exe -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.exe.withSupportedRuntime.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.exe.withSupportedRuntime.config -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.pdb -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/netstandard2.0/Get-Writable.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/Debug/netstandard2.0/Get-Writable.AssemblyInfo.cs -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/netstandard2.0/Get-Writable.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b80384fcdbe227e38f683f49b48158d1962ef7f4 2 | -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/netstandard2.0/Get-Writable.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/Debug/netstandard2.0/Get-Writable.assets.cache -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/netstandard2.0/Get-Writable.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/Debug/netstandard2.0/Get-Writable.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Get-Writable.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/Get-Writable.csproj.nuget.cache -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Get-Writable.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/Get-Writable.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Get-Writable.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/Get-Writable.csproj.nuget.g.props -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Get-Writable.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/Get-Writable.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/Get-WritableFiles/Get-Writable/obj/project.assets.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/README.md -------------------------------------------------------------------------------- /amsipatch64/.vs/amsibypass/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/.vs/amsibypass/v16/.suo -------------------------------------------------------------------------------- /amsipatch64/.vs/amsibypass/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /amsipatch64/.vs/amsibypass/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/.vs/amsibypass/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /amsipatch64/.vs/amsibypass/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/.vs/amsibypass/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /amsipatch64/.vs/amsibypass/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/.vs/amsibypass/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /amsipatch64/amsibypass.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass.sln -------------------------------------------------------------------------------- /amsipatch64/amsibypass/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/App.config -------------------------------------------------------------------------------- /amsipatch64/amsibypass/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/Program.cs -------------------------------------------------------------------------------- /amsipatch64/amsibypass/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /amsipatch64/amsibypass/amsipatch64.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/amsipatch64.csproj -------------------------------------------------------------------------------- /amsipatch64/amsibypass/bin/Debug/amsibypass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/bin/Debug/amsibypass.exe -------------------------------------------------------------------------------- /amsipatch64/amsibypass/bin/Debug/amsibypass.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/bin/Debug/amsibypass.exe.config -------------------------------------------------------------------------------- /amsipatch64/amsibypass/bin/Debug/amsibypass.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/bin/Debug/amsibypass.pdb -------------------------------------------------------------------------------- /amsipatch64/amsibypass/mylib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/mylib.cs -------------------------------------------------------------------------------- /amsipatch64/amsibypass/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /amsipatch64/amsibypass/obj/Debug/amsibypass.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/obj/Debug/amsibypass.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /amsipatch64/amsibypass/obj/Debug/amsibypass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/obj/Debug/amsibypass.exe -------------------------------------------------------------------------------- /amsipatch64/amsibypass/obj/Debug/amsibypass.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/obj/Debug/amsibypass.pdb -------------------------------------------------------------------------------- /amsipatch64/amsibypass/obj/Debug/amsipatch64.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/obj/Debug/amsipatch64.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /amsipatch64/amsibypass/obj/Debug/amsipatch64.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/amsipatch64/amsibypass/obj/Debug/amsipatch64.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /api hooking/.vs/api hooking/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/.vs/api hooking/v16/.suo -------------------------------------------------------------------------------- /api hooking/.vs/api hooking/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api hooking/.vs/api hooking/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/.vs/api hooking/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /api hooking/.vs/api hooking/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/.vs/api hooking/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /api hooking/.vs/api hooking/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/.vs/api hooking/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /api hooking/api hooking.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking.sln -------------------------------------------------------------------------------- /api hooking/api hooking/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking/App.config -------------------------------------------------------------------------------- /api hooking/api hooking/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking/Program.cs -------------------------------------------------------------------------------- /api hooking/api hooking/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /api hooking/api hooking/api hooking.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking/api hooking.csproj -------------------------------------------------------------------------------- /api hooking/api hooking/bin/Debug/api hooking.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking/bin/Debug/api hooking.exe -------------------------------------------------------------------------------- /api hooking/api hooking/bin/Debug/api hooking.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking/bin/Debug/api hooking.exe.config -------------------------------------------------------------------------------- /api hooking/api hooking/bin/Debug/api hooking.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking/bin/Debug/api hooking.pdb -------------------------------------------------------------------------------- /api hooking/api hooking/mylib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking/mylib.cs -------------------------------------------------------------------------------- /api hooking/api hooking/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /api hooking/api hooking/obj/Debug/api hooking.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking/obj/Debug/api hooking.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /api hooking/api hooking/obj/Debug/api hooking.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking/obj/Debug/api hooking.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /api hooking/api hooking/obj/Debug/api hooking.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking/obj/Debug/api hooking.exe -------------------------------------------------------------------------------- /api hooking/api hooking/obj/Debug/api hooking.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/HEAD/api hooking/api hooking/obj/Debug/api hooking.pdb --------------------------------------------------------------------------------