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 [desc] Author Forum Replies Views Posted
    Thread: How to find a salt for a hash if you have the plain text
Post: RE: How to find a salt for a hash if you have the ...

Erm, guys, this isn't hard. If the algorithm is e.g. md5(p.s) and you know p but need to find s, just switch them: use p as s and run it as md5(s.p). Same goes with hmac, just reverse k & d.
epixoip hashcat 10 10,557 05-02-2017, 04:06 PM
    Thread: How to find Hash Algo
Post: RE: How to find Hash Algo

https://hashcat.net/wiki/doku.php?id=example_hashes
epixoip General Talk 3 7,709 10-04-2013, 12:21 AM
    Thread: how to get cudaHashcat going on Ubuntu 14.04 on Amazon GPU instance?
Post: RE: how to get cudaHashcat going on Ubuntu 14.04 o...

he just said he did.
epixoip Old oclHashcat Support 2 7,177 08-26-2014, 09:59 PM
    Thread: How to get the best rate in plus
Post: RE: How to get the best rate in plus

if your keyspace is too small or you do not give the gpu enough work to do, then you will be unable to reach full acceleration. use larger dictionaries and more rules. also make sure your -n and -u va...
epixoip Very old oclHashcat-plus Support 7 10,047 02-21-2013, 06:47 PM
    Thread: How to get the best rate in plus
Post: RE: How to get the best rate in plus

-n is the accel value, and -u is the number of loops. look at the benchmark script for appropriate values for each algorithm: https://bindshell.nl/pub/hashcat-benchmark.sh
epixoip Very old oclHashcat-plus Support 7 10,047 02-22-2013, 06:38 AM
    Thread: How to get the best rate in plus
Post: RE: How to get the best rate in plus

the values found in that benchmark script are the formal recommendations. of course the speed will vary, but by ensuring you're providing enough work and using the proper settings, you can ensure max...
epixoip Very old oclHashcat-plus Support 7 10,047 02-23-2013, 09:29 AM
    Thread: How to get the best rate in plus
Post: RE: How to get the best rate in plus

depends on the rules you use, and the size of the wordlist you use. if you're using a small wordlist with best64.rule or something, then sure, low speed is normal. try a large wordlist with d3ad0ne.ru...
epixoip Very old oclHashcat-plus Support 7 10,047 03-01-2013, 10:59 PM
    Thread: How to hashcat crack password?
Post: RE: How to hashcat crack password?

Code: -- h = hash algorithm p = candidate password T = target hash foreach p in candidates { if ( h(p) == T ) { print T + ":" + p return } } --
epixoip Old hashcat Support 3 6,742 12-08-2014, 11:26 PM
    Thread: How To Hybrid Attack Dict + Dict + Dict
Post: RE: How To Hybrid Attack Dict + Dict + Dict

combinator3.bin from hashcat-utils. Or, if you want GPU acceleration, make a rule file out of the 3rd wordlist and pipe combinator.bin into oclHashcat and run with -r thirdwordlist.rule or something. ...
epixoip General Help 1 3,601 01-12-2016, 11:55 PM
    Thread: How to identify a random Hash?
Post: RE: How to identify a random Hash?

this was just discussed last week https://hashcat.net/forum/thread-3840-post-21907.html#pid21907
epixoip General Help 8 10,828 12-01-2014, 07:56 AM
    Thread: How to identify a random Hash?
Post: RE: How to identify a random Hash?

Thanks! But 25 GPUs is mere child's play compared to what we have now ;)
epixoip General Help 8 10,828 12-01-2014, 11:14 AM
    Thread: How to identify a random Hash?
Post: RE: How to identify a random Hash?

We don't use Hashtopus, we developed Sagitta Hashstack (https://sagitta.systems/software/).
epixoip General Help 8 10,828 12-02-2014, 04:45 AM
    Thread: How to identify a random Hash?
Post: RE: How to identify a random Hash?

no, commercial
epixoip General Help 8 10,828 12-04-2014, 12:53 AM
    Thread: How to input ? charactor?
Post: RE: How to input ? charactor?

https://www.robvanderwoude.com/escapechars.php
epixoip Very old oclHashcat-plus Support 3 7,632 03-07-2013, 11:33 AM
    Thread: how to limit password character length
Post: RE: how to limit password character length

https://hashcat.net/wiki/doku.php?id=rule_based_attack You could use '6 or
epixoip Old hashcat Support 10 16,257 03-02-2015, 06:08 AM
    Thread: how to limit password character length
Post: RE: how to limit password character length

No, like this: Code: -- echo "
epixoip Old hashcat Support 10 16,257 03-02-2015, 06:30 AM
    Thread: how to limit password character length
Post: RE: how to limit password character length

Works here: Code: -- epixoip@token:~$ echo "
epixoip Old hashcat Support 10 16,257 03-02-2015, 06:44 AM
    Thread: how to limit password character length
Post: RE: how to limit password character length

Too much overhead checking the length of each candidate. You can try using the other rule instead. Edit the rule file and replace
epixoip Old hashcat Support 10 16,257 03-02-2015, 06:54 AM
    Thread: how to limit password character length
Post: RE: how to limit password character length

Yeah, slightly faster but not near as fast as not filtering at all. String manipulation is just too slow. So in this case what I'd suggest doing is pre-filtering your wordlist. Code: -- awk '...
epixoip Old hashcat Support 10 16,257 03-02-2015, 07:10 AM
    Thread: how to limit the number of characters?
Post: RE: how to limit the number of characters?

eduonline Wrote: (08-25-2013, 05:53 AM) -- hoe the mask would look like? -- you wouldn't use a mask attack for this, that would be impossible. straight or combinator attack would be your best bet. ...
epixoip Very old oclHashcat-plus Support 2 6,156 08-25-2013, 06:15 AM