Advertisement
Guest User

Untitled

a guest
Sep 25th, 2015
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import sys
  2. username = str(sys.argv[1])
  3. password = str(sys.argv[2])
  4. print username, password
  5.  
  6. python test.py usr@gmail.com pa$$word
  7.  
  8. usr@gmail.com, pa24481word
  9.  
  10. usr@gmail.com, pa$$word
  11.  
  12. python test.py usr@gmail.com $word@pass
  13.  
  14. usr@gmail.com, @pass
  15.  
  16. usr@gmail.com, $word@pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement