Skip to content

Instantly share code, notes, and snippets.

@ieure
Created April 19, 2012 21:57
Show Gist options
  • Save ieure/2424478 to your computer and use it in GitHub Desktop.
Save ieure/2424478 to your computer and use it in GitHub Desktop.
The rewriter is a helpful addon. It is rewriting the words from the word
list by certain rules and enqueues them to the word buffer. To enable
the rewriter use -r and to set up your rules -l:
sucrack -r -l AFL wordlist.txt
Here is an overview over the rules:
rule description original rewritten
A all characters to upper case myPassword MYPASSWORD
F first character to upper case myPassword MyPassword
L last character to upper case myPassword myPassworD
a all characters to lower case AnotherPASS anotherpass
f first character to lower case AnotherPASS anotherPASS
l last character to lower case AnotherPASS AnotherPASs
D prepend a digit (0..9) password 1password
d append a digit (0..9) password password1
e 1337ify the word password p455w0rd
x enable all of the above rules
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment