![]() |
A-F 0-9 8 digit mask Help - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: A-F 0-9 8 digit mask Help (/thread-8175.html) |
A-F 0-9 8 digit mask Help - mysterdee - 02-21-2019 Could somebody please explain to me how to generate a 8 digit mask using UPPER A-F 0-9 (8 digits) MASk i have currently tried -m 2500 -a 3 -1 ?u?d ?1?1?1?1?1?1?1?1 and got a 2yr time im hoping to shorten this with a correct mask that uses 8 characters instead of itterating throu 1 character to 8 in increments Anybody help me. 8 digit mask A-F 0-9 for wpa password i.e (AF12FE55) thanks in advance RE: A-F 0-9 8 digit mask Help - Chick3nman - 02-21-2019 hashcat -m 2500 -a 3 -1 ABCDEF?d ?1?1?1?1?1?1?1?1 If it says 2 years, it means 2 years. RE: A-F 0-9 8 digit mask Help - mysterdee - 02-21-2019 (02-21-2019, 04:39 AM)Chick3nman Wrote: hashcat -m 2500 -a 3 -1 ABCDEF?d ?1?1?1?1?1?1?1?1 ok, but is that incrementic from 1character then 2 then 3 upto 8 Or just doing straight 8 characters Thanks by the way RE: A-F 0-9 8 digit mask Help - mysterdee - 02-21-2019 (02-21-2019, 04:56 AM)mysterdee Wrote:(02-21-2019, 04:39 AM)Chick3nman Wrote: hashcat -m 2500 -a 3 -1 ABCDEF?d ?1?1?1?1?1?1?1?1 your mask reveals a 1 day wait RE: A-F 0-9 8 digit mask Help - Chick3nman - 02-21-2019 Cool, then it will take 1 day ![]() Add "--increment-min 8" to the command to make it start at 8 characters RE: A-F 0-9 8 digit mask Help - philsmd - 02-21-2019 btw, as an alternative to a custom charset (-1 etc), there is also the built-in charset ?H that does the same thing. See --help: Code: - [ Built-in Charsets ] - Code: hashcat -m 2500 -a 3 ?H?H?H?H?H?H?H?H btw: this wouldn't affect the speed/performance at all, it just doesn't require to set your own custom charset RE: A-F 0-9 8 digit mask Help - mysterdee - 02-25-2019 (02-21-2019, 07:25 AM)Chick3nman Wrote: Cool, then it will take 1 day Thanks but i get this error increment min is only supported with increment switch any ideas??? RE: A-F 0-9 8 digit mask Help - mysterdee - 02-25-2019 (02-25-2019, 06:47 PM)Jiminy Wrote: the correct syntax = --increment-min=8 apparently i have to add the -i before i got now hashcat -m 2500 -i --increment-min=8 tester.hccap -a 3 -1 ABCDEF?d ?1?1?1?1?1?1?1?1 i take it this will do an 8 character mask starting ay 8 characters only not 1 12 123 12345 123456 1234567 12345678 it will do A83DF23A correct... but it stil says it will take a day n half, so no change. that tells me that even without adding the --increment-min=8 it would still have done an 8 character mask am i right to think this or is it doing it in increments .. thanks. RE: A-F 0-9 8 digit mask Help - Mem5 - 02-25-2019 -m 2500 is WPA. WPA password cannot be less than 8 characters. So you do NOT want to test less than 8 characters You start at 8 up to 63 (max for WPA) "-i --increment-min=8" is useless. Correct syntax is: Code: hashcat -m 2500 -a 3 ?H?H?H?H?H?H?H?H Depending on your GPU(s), it can take a long time.. RE: A-F 0-9 8 digit mask Help - slyexe - 02-26-2019 (02-25-2019, 08:06 PM)Mem5 Wrote: -m 2500 is WPA. WPA password cannot be less than 8 characters. Very true, any candidates less than 8 will be skipped for WPA encryption. If you are wanting to test 8+ characters, increment can still be used. Just make the mask whatever length you'd like say 12 (which would take a million years) and append increment to hashcat to start from 8 and move forward from there. Example Code: hashcat64.exe -m 2500 -a 3 -w 4 -i --increment-min 8 --increment-max 10 hash.txt ?H?H?H?H?H?H?H?H?H?H?H?H So even though we have a mask length of 12 it will only attack from 8 to 10, beginning with 8. Uppercase Hex is not a very efficient attack however. I would investigate further into the router for a more suitable attack, such as default passwords from images and if a key generator is available. Can also try pixiedust for a quick wps exploit or reaver/bully if you are in range of the AP for long enough (typically 4 hours). |