Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Use dictionary word anywhere in the mask
Post: RE: Use dictionary word anywhere in the mask

If I use the following command: Code: -- ./hashcat-4.0.1/hashcat64.bin --stdout -a 0 -m 11500 hash.txt wordlist.txt -r apppend.rule -r prepend.rule -- I get the following result: Code: -- Ca...
badagaga hashcat 10 22,477 11-23-2017, 05:19 PM
    Thread: Use dictionary word anywhere in the mask
Post: RE: Use dictionary word anywhere in the mask

Small fix to the Python snippet as single-quotes don't do well with Popen/split (they end up in the rules file): Code: -- import subprocess prepend = "^?a" append = "$?a" masks = [] for be...
badagaga hashcat 10 22,477 11-23-2017, 12:46 PM
    Thread: Use dictionary word anywhere in the mask
Post: RE: Use dictionary word anywhere in the mask

That would be great as I wouldn't have to use a whole hard drive to store the mask list but I don't see how that would work. Wouldn't I need a "prepend-null" or "prepend-empty" rule token to do that? ...
badagaga hashcat 10 22,477 11-23-2017, 11:51 AM
    Thread: Use dictionary word anywhere in the mask
Post: RE: Use dictionary word anywhere in the mask

Thanks undeath. Sorry about that mistake. So just in case this can help someone else save a bit of time, here is how I generated my rules file with Python: Code: -- import subprocess prepend = "^?...
badagaga hashcat 10 22,477 11-22-2017, 11:42 PM
    Thread: Use dictionary word anywhere in the mask
Post: RE: Use dictionary word anywhere in the mask

"You need to emulate it using masks or generated rules" So I tried to use the maskprocessor to create some rules with both prepending and appending (e.g. "^?a$?a") but I can't even generate the simpl...
badagaga hashcat 10 22,477 11-22-2017, 07:25 PM
    Thread: Use dictionary word anywhere in the mask
Post: Use dictionary word anywhere in the mask

Hello, I can't find the answer to this question in the wiki but maybe I'm not searching with the proper terms. I'm trying to find out how a specific 8 hex digit hash/checksum is generated by a c...
badagaga hashcat 10 22,477 11-22-2017, 04:56 PM