![]() |
worldlist extra rules - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html) +--- Forum: Very old oclHashcat-plus Support (https://hashcat.net/forum/forum-23.html) +--- Thread: worldlist extra rules (/thread-2364.html) |
worldlist extra rules - crackall - 06-13-2013 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 ? RE: worldlist extra rules - Chinchilla - 06-13-2013 (06-13-2013, 08:11 PM)crackall Wrote: how to treat a wordlist file as follows,and that such work keys -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 RE: worldlist extra rules - epixoip - 06-13-2013 sounds like he wants to use -a 1 RE: worldlist extra rules - crackall - 06-14-2013 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 RE: worldlist extra rules - philsmd - 06-16-2013 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-post-14211.html#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 Check if it correct (X masked): Code: cat hash_0000.txt The dicfile: Code: cat dicfile.txt Run *hashcat: Code: ./hashcat-cli64.bin -a 1 -m 0 hash_0000.txt dicfile.txt So I don't know what the problem is with this solution. It was already explained by epixoip! RE: worldlist extra rules - crackall - 06-16-2013 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> RE: worldlist extra rules - philsmd - 06-16-2013 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 .... RE: worldlist extra rules - crackall - 06-16-2013 why these crutches? everything should be beautiful RE: worldlist extra rules - epixoip - 06-17-2013 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. |