illwill 147a71fe4f 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
2017-04-07 15:48:20 +10:00

477 lines
15 KiB
PowerShell

<#
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
}