Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

Search Results
Post Author Forum [asc] Replies Views Posted
    Thread: Itunes Backup line length
Post: RE: Itunes Backup line length

I see what you're getting at -- hmm, maybe "and/or" (since it can be either?) Both of our suggestions are workarounds for the fact that the same syntax can be used both to specify a hash directly, ...
royce hashcat 6 4,624 12-18-2017, 02:07 AM
    Thread: Possible to do attack mode 6 and 7 on same attack
Post: RE: Possible to do attack mode 6 and 7 on same att...

Assuming the syntax is correct, that would indeed work - it would be slower than a direct on-GPU implementation, but a good compromise solution.
royce hashcat 6 5,306 12-20-2017, 08:34 AM
    Thread: Intel Nuc Opencl and Gpu issue
Post: RE: Intel Nuc Opencl and Gpu issue

This is a problem with Intel's OpenCL runtime. The hashcat project cannot fix it.
royce hashcat 1 3,210 12-20-2017, 04:55 PM
    Thread: Possible to do attack mode 6 and 7 on same attack
Post: RE: Possible to do attack mode 6 and 7 on same att...

No - stdout leaves the hashcat process entirely, and there is no in-hashcat method for this today (other than, perhaps, generating a *very* large list of masks using maskprocessor: Simplified PoC: ...
royce hashcat 6 5,306 12-20-2017, 05:00 PM
    Thread: Masked Attack Parameter for Binary
Post: RE: Masked Attack Parameter for Binary

You wouldn't be able to feed the string in as a direct input. And it would be tricky to try to shape the mask to match only the binary that is valid alphanumerics, other than the fact that the first b...
royce hashcat 2 2,815 12-21-2017, 05:08 AM
    Thread: What am I doing wrong?
Post: RE: What am I doing wrong?

I'm not able to reproduce this. Code: -- $ hashcat -a 3 --stdout -i --increment-min 5 --increment-max 9 -1 custom.hcchr -2 custom1.hcchr ?u?1?1?1?2?2?2?2?2 | head -100000 | cut -b1 | sort -u | ...
royce hashcat 1 1,843 12-23-2017, 04:19 AM
    Thread: correct command line
Post: RE: correct command line

One-character parameters (single hyphen) don't work with equals signs, but multi-character (two hyphens) should work with equals signs. Code: -- $ echo blah | hashcat --hash-type=1000 --stdout ...
royce hashcat 24 22,564 12-25-2017, 08:47 PM
    Thread: Possible to do attack mode 6 and 7 on same attack
Post: RE: Possible to do attack mode 6 and 7 on same att...

I think that you've got all of the possible pieces already, and you just need to arrange them with the trade-off that works best for you. It looks like appending or prepending ?a?a with rules as the f...
royce hashcat 6 5,306 12-25-2017, 09:06 PM
    Thread: Rule stacking
Post: RE: Rule stacking

There's only one way to find out ;) Code: -- $ cat rule1.list u $ cat rule2.list d $ cat rule1-colon.list : u $ cat rule2-colon.list : d $ cat list.txt password 123456 $ cat list.txt | hash...
royce hashcat 1 2,043 12-25-2017, 06:28 PM
    Thread: Question about --skip and --limit
Post: RE: Question about --skip and --limit

As the number of remaining hashes drops, performance per hash should increase. In other words, once only one hash remains, performance should be the same as if the target was only a single hash in ...
royce hashcat 4 3,458 12-30-2017, 04:06 PM
    Thread: Unable to use own hash database
Post: RE: Unable to use own hash database

Can't diagnose this without understanding more about how you are creating hashes.txt. What happens if hashes.txt contains only the MD5 example hash from the hashcat wiki (8743b52063cd84097a65d1633f...
royce hashcat 5 4,583 12-30-2017, 04:15 PM
    Thread: Question about --skip and --limit
Post: RE: Question about --skip and --limit

Huh - fair point! My understanding of how --restore works is that it's mostly a record of what command-line options were used, for the purpose of reinvoking hashcat. So I think that its application...
royce hashcat 4 3,458 12-31-2017, 01:07 PM
    Thread: Unable to use own hash database
Post: RE: Unable to use own hash database

The error Hash 'hashes.txt': Line-length exception ... is not very clear. What it means is that since the system couldn't find the hashes.txt file in the current working directory, it tried to ...
royce hashcat 5 4,583 12-31-2017, 06:59 PM
    Thread: Could someone give some tips about libhashcat.so
Post: RE: Could someone give some tips about libhashcat....

There is no formal documentation yet - but since hashcat itself uses libhashcat, it is a good reference implementation. See hashcat github.
royce hashcat 2 2,543 01-02-2018, 04:37 AM
    Thread: Output file info
Post: RE: Output file info

There is no output mode that records absolute time. This is because absolute time is not useful for the purposes of comparing performance across platforms and runs. The wallclock time for a given s...
royce hashcat 5 4,515 01-06-2018, 05:55 PM
    Thread: Output file info
Post: RE: Output file info

Close - but a benchmark is under pretty ideal conditions, and your attack is probably slower than that. Probably best to measure actual H/s for your specific attack.
royce hashcat 5 4,515 01-06-2018, 08:26 PM
    Thread: Assistance building mask
Post: RE: Assistance building mask

+1. Specifically: Code: -- $ cat words.list red blue green yellow $ cat mask.list ?d?s ?d?d?s ?d?d?d?s ?d?d?d?d?s $ hashcat --stdout -a 6 words.list mask.list | head red1. red0....
royce hashcat 3 2,722 01-07-2018, 07:25 PM
    Thread: Hashcat command
Post: RE: Hashcat command

To verify your approach, you can use the --stdout parameter to check to see what is being output.
royce hashcat 3 3,909 01-12-2018, 06:38 AM
    Thread: Output file info
Post: RE: Output file info

Run the actual attack - and then check the H/s values in the hashcat status output.
royce hashcat 5 4,515 01-12-2018, 06:39 AM
    Thread: Word Mangling/Wordlist generator
Post: RE: Word Mangling/Wordlist generator

Good luck! And for what it's worth, here are some nuggets for how to use kwprocessor (keyboard walk processor) and hashcat rules + stdout to generate a wordlist of typos. It's not an ideal approach...
royce hashcat 5 11,202 01-13-2018, 08:43 PM