Advertisement
matt_mods

ThorsHammer.py

Jan 6th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.70 KB | None | 0 0
  1. print("Hello, this is a tool called thors hammer, it is a bruteforce tool \n")
  2. _target_=input("Please Enter Target's IP here:\n")
  3. _user_=input("Please Enter Target's username here (if unkown enter ?): \n")
  4. _min_=input("Please Enter Minimum charters here:\n")
  5. _max_=input("Please Enter Maximum charters here:\n")
  6. print("i got: {1} @ {0} and these paramters to try: min:{2}, max: {3}".format(_target_,  _user_,  _min_, _max_))
  7. chars ={'a', 'b', 'c' , 'd', 'e', 'f', 'g', 'h' ,'i', 'j', 'k' ,'l', 'm', 'n' 'm', 'o', 'p', 'q' 'r' 's' 't' 'u' 'v' 'w' 'x' 'y' 'z' 'A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L' 'M' 'N' 'O' 'P' 'Q' 'R' 'S' 'T' 'U' 'V' 'W' 'X' 'Y' 'Z' ' ' ',' '.' '<' '>' '/' '?' '`' '¬' '|' "\ "}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement