├── .gitattributes ├── .gitignore ├── CoreSploit.sln ├── CoreSploit ├── CoreSploit.csproj ├── Enumeration │ ├── Domain.cs │ ├── GPO.cs │ ├── Host.cs │ └── Network.cs ├── Execution │ ├── Assembly.cs │ ├── Linux.cs │ ├── OSX.cs │ ├── PassTheHash │ │ ├── SMBExec.cs │ │ └── WMIExec.cs │ └── Win32.cs ├── Generic │ └── Generic.cs ├── LateralMovement │ ├── DCOM.cs │ └── PassTheHash.cs ├── Misc │ └── Utilities.cs ├── Persistence │ ├── Linux.cs │ ├── OSX.cs │ └── Windows.cs ├── Pivoting │ └── ReversePortForwarding.cs └── Privilege Escalation │ └── Exchange.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/.gitignore -------------------------------------------------------------------------------- /CoreSploit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit.sln -------------------------------------------------------------------------------- /CoreSploit/CoreSploit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/CoreSploit.csproj -------------------------------------------------------------------------------- /CoreSploit/Enumeration/Domain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Enumeration/Domain.cs -------------------------------------------------------------------------------- /CoreSploit/Enumeration/GPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Enumeration/GPO.cs -------------------------------------------------------------------------------- /CoreSploit/Enumeration/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Enumeration/Host.cs -------------------------------------------------------------------------------- /CoreSploit/Enumeration/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Enumeration/Network.cs -------------------------------------------------------------------------------- /CoreSploit/Execution/Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Execution/Assembly.cs -------------------------------------------------------------------------------- /CoreSploit/Execution/Linux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Execution/Linux.cs -------------------------------------------------------------------------------- /CoreSploit/Execution/OSX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Execution/OSX.cs -------------------------------------------------------------------------------- /CoreSploit/Execution/PassTheHash/SMBExec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Execution/PassTheHash/SMBExec.cs -------------------------------------------------------------------------------- /CoreSploit/Execution/PassTheHash/WMIExec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Execution/PassTheHash/WMIExec.cs -------------------------------------------------------------------------------- /CoreSploit/Execution/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Execution/Win32.cs -------------------------------------------------------------------------------- /CoreSploit/Generic/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Generic/Generic.cs -------------------------------------------------------------------------------- /CoreSploit/LateralMovement/DCOM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/LateralMovement/DCOM.cs -------------------------------------------------------------------------------- /CoreSploit/LateralMovement/PassTheHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/LateralMovement/PassTheHash.cs -------------------------------------------------------------------------------- /CoreSploit/Misc/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Misc/Utilities.cs -------------------------------------------------------------------------------- /CoreSploit/Persistence/Linux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Persistence/Linux.cs -------------------------------------------------------------------------------- /CoreSploit/Persistence/OSX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Persistence/OSX.cs -------------------------------------------------------------------------------- /CoreSploit/Persistence/Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Persistence/Windows.cs -------------------------------------------------------------------------------- /CoreSploit/Pivoting/ReversePortForwarding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Pivoting/ReversePortForwarding.cs -------------------------------------------------------------------------------- /CoreSploit/Privilege Escalation/Exchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/CoreSploit/Privilege Escalation/Exchange.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkymander/CoreSploit/HEAD/README.md --------------------------------------------------------------------------------