worldlist extra rules
#5
Please *read* what other users suggest as solution (because the answer was already given and works), don't ask in other threads (e.g. https://hashcat.net/forum/thread-2365-po...l#pid14211 ) for answers to again other questions (this one) and please make your questions more understandable (it is quite difficult to follow your questions, maybe google translator or so helps us all). The solution (again):

Write the hashes to hash_0000.txt
Code:
echo -n aaaa|md5sum|sed 's/ .*//'  > hash_0000.txt
echo -n aabb|md5sum|sed 's/ .*//' >> hash_0000.txt
echo -n aacc|md5sum|sed 's/ .*//' >> hash_0000.txt
echo -n bbaa|md5sum|sed 's/ .*//' >> hash_0000.txt
echo -n bbbb|md5sum|sed 's/ .*//' >> hash_0000.txt
echo -n bbcc|md5sum|sed 's/ .*//' >> hash_0000.txt
echo -n ccaa|md5sum|sed 's/ .*//' >> hash_0000.txt
echo -n ccbb|md5sum|sed 's/ .*//' >> hash_0000.txt
echo -n cccc|md5sum|sed 's/ .*//' >> hash_0000.txt

Check if it correct (X masked):
Code:
cat hash_0000.txt
74b8XX7X4542XXX4d33f80c4XXXdc5e5
5XXX4281dfac81XXX7dddcaf4dX5d1XX
aa794f68b4XXXe5e590XXXd34e94XX39
bd7XX444XXXXe4713b1c47b33XXXc1f1
65baXXX01d6db77XXe90a5X7f9e6f8X
37XX8464XXXc171a77608f69cc0XXe40
f53XXX16354bb6d82ae8XXXa665bbe83
02XXXa37XXX3931642104XXXc2ae5ced
41fXXa09f2bdcdf315ba41XXXc7978dd

The dicfile:
Code:
cat dicfile.txt
aa
bb
cc

Run *hashcat:
Code:
./hashcat-cli64.bin -a 1 -m 0 hash_0000.txt dicfile.txt
Initializing hashcat v0.45 by atom with 8 threads and 32mb segment-size...

Added hashes from file hash_0000.txt: 9 (1 salts)

NOTE: press enter for status-screen

74b8XX7X4542XXX4d33f80c4XXXdc5e5:aaaa
5XXX4281dfac81XXX7dddcaf4dX5d1XX:aabb
aa794f68b4XXXe5e590XXXd34e94XX39:aacc
bd7XX444XXXXe4713b1c47b33XXXc1f1:bbaa
65baXXX01d6db77XXe90a5X7f9e6f8X:bbbb
37XX8464XXXc171a77608f69cc0XXe40:bbcc
f53XXX16354bb6d82ae8XXXa665bbe83:ccaa
02XXXa37XXX3931642104XXXc2ae5ced:ccbb
41fXXa09f2bdcdf315ba41XXXc7978dd:cccc

All hashes have been recovered

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

Started: Sun Jun 16 08:19:22 2013
Stopped: Sun Jun 16 08:19:23 2013

So I don't know what the problem is with this solution. It was already explained by epixoip!


Messages In This Thread
worldlist extra rules - by crackall - 06-13-2013, 08:11 PM
RE: worldlist extra rules - by Chinchilla - 06-13-2013, 09:46 PM
RE: worldlist extra rules - by epixoip - 06-13-2013, 10:22 PM
RE: worldlist extra rules - by crackall - 06-14-2013, 08:52 PM
RE: worldlist extra rules - by philsmd - 06-16-2013, 08:23 AM
RE: worldlist extra rules - by crackall - 06-16-2013, 05:03 PM
RE: worldlist extra rules - by philsmd - 06-16-2013, 05:55 PM
RE: worldlist extra rules - by crackall - 06-16-2013, 06:13 PM
RE: worldlist extra rules - by epixoip - 06-17-2013, 12:17 AM