├── .gitignore ├── KittyLitter ├── CredHarvester.cs ├── Helpers.cs ├── IPCMessages │ └── IPCMessage.cs ├── IPCServers │ ├── IPCServer.cs │ ├── MailSlotServer.cs │ ├── SMBServer.cs │ └── TCPServer.cs ├── KittyLitter.csproj ├── KittyLitter.sln ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── lsamanager.bin ├── Safety │ └── ProcessWithAnonymousNamedPipeIO.cs └── WinAPI │ ├── Advapi32.cs │ ├── Kernel32.cs │ ├── Secur32.cs │ └── Win32Error.cs ├── KittyScooper ├── Helpers.cs ├── IPCClients │ ├── IPCClient.cs │ ├── MailSlotClient.cs │ ├── SMBClient.cs │ └── TCPClient.cs ├── IPCMessages.cs ├── KittyScooper.csproj ├── KittyScooper.sln ├── PortScanner.cs ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── LAPS ├── CredHarvester.cs ├── Helpers.cs ├── IPCMessages │ └── IPCMessage.cs ├── IPCServers │ ├── IPCServer.cs │ ├── MailSlotServer.cs │ ├── SMBServer.cs │ └── TCPServer.cs ├── LAPS.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── lsamanager.bin ├── Safety │ └── ProcessWithAnonymousNamedPipeIO.cs ├── Service1.Designer.cs ├── Service1.cs └── WinAPI │ ├── Advapi32.cs │ ├── Kernel32.cs │ ├── Secur32.cs │ └── Win32Error.cs ├── README.md └── images └── execution.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/.gitignore -------------------------------------------------------------------------------- /KittyLitter/CredHarvester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/CredHarvester.cs -------------------------------------------------------------------------------- /KittyLitter/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/Helpers.cs -------------------------------------------------------------------------------- /KittyLitter/IPCMessages/IPCMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/IPCMessages/IPCMessage.cs -------------------------------------------------------------------------------- /KittyLitter/IPCServers/IPCServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/IPCServers/IPCServer.cs -------------------------------------------------------------------------------- /KittyLitter/IPCServers/MailSlotServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/IPCServers/MailSlotServer.cs -------------------------------------------------------------------------------- /KittyLitter/IPCServers/SMBServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/IPCServers/SMBServer.cs -------------------------------------------------------------------------------- /KittyLitter/IPCServers/TCPServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/IPCServers/TCPServer.cs -------------------------------------------------------------------------------- /KittyLitter/KittyLitter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/KittyLitter.csproj -------------------------------------------------------------------------------- /KittyLitter/KittyLitter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/KittyLitter.sln -------------------------------------------------------------------------------- /KittyLitter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/Program.cs -------------------------------------------------------------------------------- /KittyLitter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KittyLitter/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /KittyLitter/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/Properties/Resources.resx -------------------------------------------------------------------------------- /KittyLitter/Resources/lsamanager.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/Resources/lsamanager.bin -------------------------------------------------------------------------------- /KittyLitter/Safety/ProcessWithAnonymousNamedPipeIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/Safety/ProcessWithAnonymousNamedPipeIO.cs -------------------------------------------------------------------------------- /KittyLitter/WinAPI/Advapi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/WinAPI/Advapi32.cs -------------------------------------------------------------------------------- /KittyLitter/WinAPI/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/WinAPI/Kernel32.cs -------------------------------------------------------------------------------- /KittyLitter/WinAPI/Secur32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/WinAPI/Secur32.cs -------------------------------------------------------------------------------- /KittyLitter/WinAPI/Win32Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyLitter/WinAPI/Win32Error.cs -------------------------------------------------------------------------------- /KittyScooper/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyScooper/Helpers.cs -------------------------------------------------------------------------------- /KittyScooper/IPCClients/IPCClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyScooper/IPCClients/IPCClient.cs -------------------------------------------------------------------------------- /KittyScooper/IPCClients/MailSlotClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyScooper/IPCClients/MailSlotClient.cs -------------------------------------------------------------------------------- /KittyScooper/IPCClients/SMBClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyScooper/IPCClients/SMBClient.cs -------------------------------------------------------------------------------- /KittyScooper/IPCClients/TCPClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyScooper/IPCClients/TCPClient.cs -------------------------------------------------------------------------------- /KittyScooper/IPCMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyScooper/IPCMessages.cs -------------------------------------------------------------------------------- /KittyScooper/KittyScooper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyScooper/KittyScooper.csproj -------------------------------------------------------------------------------- /KittyScooper/KittyScooper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyScooper/KittyScooper.sln -------------------------------------------------------------------------------- /KittyScooper/PortScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyScooper/PortScanner.cs -------------------------------------------------------------------------------- /KittyScooper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyScooper/Program.cs -------------------------------------------------------------------------------- /KittyScooper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/KittyScooper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LAPS/CredHarvester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/CredHarvester.cs -------------------------------------------------------------------------------- /LAPS/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/Helpers.cs -------------------------------------------------------------------------------- /LAPS/IPCMessages/IPCMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/IPCMessages/IPCMessage.cs -------------------------------------------------------------------------------- /LAPS/IPCServers/IPCServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/IPCServers/IPCServer.cs -------------------------------------------------------------------------------- /LAPS/IPCServers/MailSlotServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/IPCServers/MailSlotServer.cs -------------------------------------------------------------------------------- /LAPS/IPCServers/SMBServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/IPCServers/SMBServer.cs -------------------------------------------------------------------------------- /LAPS/IPCServers/TCPServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/IPCServers/TCPServer.cs -------------------------------------------------------------------------------- /LAPS/LAPS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/LAPS.csproj -------------------------------------------------------------------------------- /LAPS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/Program.cs -------------------------------------------------------------------------------- /LAPS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LAPS/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LAPS/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/Properties/Resources.resx -------------------------------------------------------------------------------- /LAPS/Resources/lsamanager.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/Resources/lsamanager.bin -------------------------------------------------------------------------------- /LAPS/Safety/ProcessWithAnonymousNamedPipeIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/Safety/ProcessWithAnonymousNamedPipeIO.cs -------------------------------------------------------------------------------- /LAPS/Service1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/Service1.Designer.cs -------------------------------------------------------------------------------- /LAPS/Service1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/Service1.cs -------------------------------------------------------------------------------- /LAPS/WinAPI/Advapi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/WinAPI/Advapi32.cs -------------------------------------------------------------------------------- /LAPS/WinAPI/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/WinAPI/Kernel32.cs -------------------------------------------------------------------------------- /LAPS/WinAPI/Secur32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/WinAPI/Secur32.cs -------------------------------------------------------------------------------- /LAPS/WinAPI/Win32Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/LAPS/WinAPI/Win32Error.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/README.md -------------------------------------------------------------------------------- /images/execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/KittyLitter/HEAD/images/execution.png --------------------------------------------------------------------------------