Creating rules
#4
you need both 'c $1' on the same line to both capitalize and append a 1.

Code:
epixoip@token:~/hashcat-0.48$ echo -n Zbyszek1 | md5sum
be597e193161d97f91603b0aaa980218  -
epixoip@token:~/hashcat-0.48$ echo be597e193161d97f91603b0aaa980218 >testhash
epixoip@token:~/hashcat-0.48$ echo 'zbyszek' >testdict
epixoip@token:~/hashcat-0.48$ cat > testrule << EOF
> c \$1
> c \$2
> EOF
epixoip@token:~/hashcat-0.48$ cat testrule
c $1
c $2
epixoip@token:~/hashcat-0.48$ ./hashcat-cli64.bin testhash testdict -r testrule
Initializing hashcat v0.48 by atom with 8 threads and 32mb segment-size...

Added hashes from file testhash: 1 (1 salts)
Activating quick-digest mode for single-hash
Added rules from file testrule: 2

be597e193161d97f91603b0aaa980218:Zbyszek1

All hashes have been recovered

Input.Mode: Dict (testdict)
Index.....: 1/1 (segment), 1 (words), 8 (bytes)
Recovered.: 1/1 hashes, 1/1 salts
Speed/sec.: - plains, - words
Progress..: 1/1 (100.00%)
Running...: --:--:--:--
Estimated.: --:--:--:--

Started: Tue Dec 23 10:11:58 2014
Stopped: Tue Dec 23 10:11:58 2014


Messages In This Thread
Creating rules - by neo_30 - 12-23-2014, 06:37 PM
RE: Creating rules - by epixoip - 12-23-2014, 06:40 PM
RE: Creating rules - by neo_30 - 12-23-2014, 08:03 PM
RE: Creating rules - by epixoip - 12-23-2014, 08:14 PM