Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. #
  2. # This file was originally part of John the Ripper password cracker,
  3. # Copyright (c) 1996-98 by Solar Designer
  4. #
  5. # Wordlist mode rules
  6. [List.Rules:Wordlist]
  7. # Try words as they are
  8. :
  9. # Lowercase every pure alphanumeric word
  10. -c >3!?XlQ
  11. # Capitalize every pure alphanumeric word
  12. -c >2(?a!?XcQ
  13. # Lowercase and pluralize pure alphabetic words
  14. <*>2!?Alp
  15. # Lowercase pure alphabetic words and append '1'
  16. <*>2!?Al$1
  17. # Capitalize pure alphabetic words and append '1'
  18. -c <*>2!?Ac$1
  19. # Duplicate reasonably short pure alphabetic words (fred -> fredfred)
  20. <7>1!?Ald
  21. # Lowercase and reverse pure alphabetic words
  22. >3!?AlMrQ
  23. # Prefix pure alphabetic words with '1'
  24. >2!?Al^1
  25. # Uppercase pure alphanumeric words
  26. -c >2!?XuQ
  27. # Lowercase pure alphabetic words and append a digit or simple punctuation
  28. <*>2!?Al$[2!37954860.?]
  29. # Words containing punctuation, which is then squeezed out, lowercase
  30. /?p@?p>3l
  31. # Words with vowels removed, lowercase
  32. /?v@?v>3l
  33. # Words containing whitespace, which is then squeezed out, lowercase
  34. /?w@?w>3l
  35. # Capitalize and duplicate short pure alphabetic words (fred -> FredFred)
  36. -c <7>1!?Acd
  37. # Capitalize and reverse pure alphabetic words (fred -> derF)
  38. -c <+>2!?Acr
  39. # Reverse and capitalize pure alphabetic words (fred -> Derf)
  40. -c >2!?AMrQc
  41. # Lowercase and reflect pure alphabetic words (fred -> fredderf)
  42. <7>1!?AlMrQrf
  43. # Uppercase the last letter of pure alphabetic words (fred -> freD)
  44. -c <+>2!?AMrQcr
  45. # Prefix pure alphabetic words with '2' or '4'
  46. >2!?Al^[24]
  47. # Capitalize pure alphabetic words and append a digit or simple punctuation
  48. -c <*>2!?Ac$[2!3957468.?0]
  49. # Prefix pure alphabetic words with digits
  50. >2!?Al^[379568]
  51. # Capitalize and pluralize pure alphabetic words of reasonable length
  52. -c <*>2!?Acp
  53. # Lowercase/capitalize pure alphabetic words of reasonable length and convert:
  54. # crack -> cracked, crack -> cracking
  55. <*>2!?Al[PI]
  56. -c <*>2!?Ac[PI]
  57. # Try the second half of split passwords
  58. -s x**
  59. -s-c x**MlQ
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement