Skip to content

Commit

Permalink
Added WLAN to autoload and Win32 Product
Browse files Browse the repository at this point in the history
  • Loading branch information
benpturner committed Mar 29, 2017
1 parent 89b8cbd commit 642f0ed
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Implant-Handler.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ function Implant-Handler
write-host " Get-FireWallRulesAll | Out-String -Width 200" -ForegroundColor Green
write-host " EnableRDP" -ForegroundColor Green
write-host " DisableRDP" -ForegroundColor Green
write-host " Get-WLANPass" -ForegroundColor Green
write-host " Get-WmiObject -Class Win32_Product" -ForegroundColor Green
write-host " Get-CreditCardData -Path 'C:\Backup\'" -ForegroundColor Green
write-host `n "Privilege Escalation: " -ForegroundColor Green
write-host "====================" -ForegroundColor Red
Expand Down Expand Up @@ -836,6 +838,10 @@ param
CheckModuleLoaded "Invoke-Powerdump.ps1" $psrandomuri
$pscommand = "Invoke-Powerdump"
}
if ($pscommand.ToLower().StartsWith('get-wlanpass'))
{
CheckModuleLoaded "Get-WLANPass.ps1" $psrandomuri
}
if ($pscommand.ToLower().StartsWith('invoke-sqlquery'))
{
CheckModuleLoaded "Invoke-SqlQuery.ps1" $psrandomuri
Expand Down

0 comments on commit 642f0ed

Please sign in to comment.