Table-Lookup Attack Possible Typo - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html) +--- Thread: Table-Lookup Attack Possible Typo (/thread-634.html) |
Table-Lookup Attack Possible Typo - Hash-IT - 11-13-2011 I have been struggling for some time to get the table Table-Lookup Attack working and I believe the code on the following page is wrong. http://hashcat.net/wiki/table_lookup_attack There it says use “--table-name=FILE†presumably “FILE†meaning the actual file name you intend to use. After many hours I think the actual code required is “--table-file †then the actual location and name of the table file. I am quite prepared to accept that I am wrong but could you please confirm I have this right and if so please change the wiki page ? Would it be possible on each wiki page to display an entire line of code so new users can see things in context ? Perhaps for this page you could print the following example for other new users like myself to easier understand. To create a list of modified passwords using hashcat and the table rules of your choice. hashcat-cli32.exe --attack-mode 5 --table-file exampletable.table --stdout wordlist >> result.txt --attack-mode 5 = MD5 exampletable.table = your table file. --stdout = output to screen or file. wordlist = your list of passwords. >> result.txt = output to file called result.txt It seemed necessary to enter an attack mode even though I just wanted to make a new password list, I wonder if that is right ? Also could I ask if I intend to use hashcats ability to use tables and pipe the output to hashcatplus to test WPA which attack mode would be best to select for hashcat ? My reason for asking is that I am trying to reduce the workload as mush as possible in hashcat as it is being used in conjunction with hashcatplus. Thank you. RE: Table-Lookup Attack Possible Typo - atom - 11-13-2011 i've sent you an login to the wiki pages. check your email. you can login and correct the page or write new articles if you want. thanks for reporting RE: Table-Lookup Attack Possible Typo - Hash-IT - 11-13-2011 (11-13-2011, 07:11 PM)atom Wrote: i've sent you an login to the wiki pages. check your email. you can login and correct the page or write new articles if you want. thanks for reporting Oh good grief !! As you know I am of a nervous disposition as it is, think of the responsibility !!! I have received your e-mail so I will give it a go ! ... I can't believe I spotted something you didn't !! I'll bet my house I won't be able to do it again ! Ha ha ! I may be slow but I do get there in the end, ...mostly. Can I ask again about which attack mode is best when not actually cracking with hashcat but using it to pipe ? Thanks. RE: Table-Lookup Attack Possible Typo - Hash-IT - 11-14-2011 Hi atom Well I summoned up the courage to edit the wiki a little, I just changed the code bit. I was thinking about trying to explain things in a simple way, one which I would have appreciated when I first arrived here, but I thought I should show you it first. I am also concerned I may not be right about the --attack-mode 5 bit in relation to piping. So, I wrote the following for humble users like myself, please would you check it and perhaps use anything you think is ok. Thanks. Quote:The Table-Lookup Attack (--table-file ) can be seen in context within the following example. RE: Table-Lookup Attack Possible Typo - atom - 11-14-2011 there is a little mistake: Quote:--attack-mode 5 The MD5 hash mode, as hashcat needs a command in this position it has been chosen at random. The choice of mode at this point does not affect the output if you are simply creating a modified word list. corrected: Quote:--attack-mode 5 tell hashcat to employ the “Table-Lookup Attack†thus, Quote:--table-file indicates the table files location. there is no relation to MD5. please add this as a new article and link it on the start page |