Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.38 KB | None | 0 0
  1.  
  2. # Create Table
  3. # first argument is path to dict/wordlist or output of permutation script
  4. # Make Table
  5. #!/bin/bash
  6.  
  7. cat "$1"|while read a; do
  8. printf "$a"|./md5|while read hash; do
  9. printf "$hash\t$a\n"
  10. done
  11. done
  12.  
  13.  
  14.  
  15. # De-md5
  16. # drr single argument, the md5 perhaps
  17. #!/bin/bash
  18. a="$1"
  19. cat ./table|while read b c; do
  20. if [ "$a" == "$b" ]; then
  21. printf "$c\n"
  22. exit
  23. fi
  24. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement