worldlist extra rules
#1
how to treat a wordlist file as follows,and that such work keys -a6 -a7 ?

dicfile.txt
aa
bb
cc


aaaa
aabb
aacc
bbaa
bbbb
bbcc
ccaa
ccbb
cccc

and how combine -a6 -a7 ?
#2
(06-13-2013, 08:11 PM)crackall Wrote: how to treat a wordlist file as follows,and that such work keys -a6 -a7 ?

dicfile.txt
aa
bb
cc


aaaa
aabb
aacc
bbaa
bbbb
bbcc
ccaa
ccbb
cccc

and how combine -a6 -a7 ?

What exactly are you asking here? How to run a Hybrid attack?

'-a 6' and '-a 7' are two separate attack types, they cannot be combined.

This will help: http://hashcat.net/wiki/doku.php?id=hybrid_attack
#3
sounds like he wants to use -a 1
#4
tell me how to brute hashes such a one wordlist dicfile.txt

dicfile.txt
aa
bb
cc


aaaa
aabb
aacc
bbaa
bbbb
bbcc
ccaa
ccbb
cccc

and if possible with keys -a6 -a7 separate or together
#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!
#6
C:\oclHashcat-plus-0.14\oclHashcat-plus-0.14>oclHashcat-plus64.exe -a 1 -m 1000 ntlm dic
Usage: oclHashcat-plus64.exe [options]... hash|hashfile|hccapfile [dictionary|mask|directory]...

Try --help for more help.

C:\oclHashcat-plus-0.14>
###
not working!
###

C:\oclHashcat-plus-0.14>oclHashcat-plus64.exe -m 1000 ntlm dic
WARNING: Hashfile 'ntlm' in line 7 (31d6cfe0d16ae931b73c59d7e0c089c0): Weak hash

oclHashcat-plus v0.14 by atom starting...

Hashes: 46 total, 1 unique salts, 46 unique digests
Bitmaps: 9 bits, 512 entries, 0x000001ff mask, 2048 bytes
Rules: 1
Workload: 256 loops, 80 accel
Watchdog: Temperature abort trigger disabled
Watchdog: Temperature retain trigger disabled
Device #1: Turks, 2048MB, 725Mhz, 6MCU
Device #1: Kernel ./kernels/4098/m1000_a0.Turks_1084.4_1084.4 (VM).kernel (1085776 bytes)


Cache-hit dictionary stats all: 47182149 bytes, 3980725 words, 3980725 keyspace


Session.Name...: oclHashcat-plus
Status.........: Exhausted
Input.Mode.....: File (dic)
Hash.Target....: File (ntlm)
Hash.Type......: NTLM
Time.Started...: Sun Jun 16 20:59:47 2013 (1 sec)
Time.Estimated.: 0 secs
Speed.GPU.#1...: 37013.2k/s
Recovered......: 0/46 (0.00%) Digests, 0/1 (0.00%) Salts
Progress.......: 3980725/3980725 (100.00%)
Rejected.......: 0/3980725 (0.00%)

Started: Sun Jun 16 20:59:47 2013
Stopped: Sun Jun 16 20:59:49 2013

C:\oclHashcat-plus-0.14>
#7
So if this is not working for you w/ oclHashcat what can we do?
1. use cpu hashcat as above (./hashcat-cli64.bin -a 1 dicfile.txt --stdout > dicfile_combined.txt) and use this dict
2. use ./hashcat-cli64.bin -a 1 dicfile.txt --stdout and run oclHashcat w/o dict but pipe this output to oclHashcat:
./hashcat-cli64.bin -a 1 dicfile.txt --stdout | oclHashcat ....
#8
why these crutches? everything should be beautiful
#9
the syntax for -a 1 is different for plus than with hashcat. -a 1 works fine in plus, you don't need to pre-generate any dictionaries or use pipes.

everything already is beautiful, you just can't be bothered to read the fucking manual.