Search Results
|
Post |
Author |
Forum
[desc]
|
Replies |
Views |
Posted |
|
|
Thread: Hard to crack this hash?
Post: RE: Hard to crack this hash?
How do you know this should be an easy one? |
|
unix-ninja |
hashcat
|
1 |
2,046 |
12-13-2017, 08:03 PM |
|
|
Thread: Will I be OK with tethering phone with The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali)?
Post: RE: Will I be OK with tethering phone with The-Dis...
Please pose this question in theĀ Kali forums.
[/url]https://forums.Kali.org/ (https://forums.The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali).org/)
[url=https://forums.The-Distri... |
|
unix-ninja |
hashcat
|
3 |
1,253 |
08-15-2019, 06:12 PM |
|
|
Thread: How uninstall Hashcat? (Linux)
Post: RE: How uninstall Hashcat? (Linux)
apt-get is a package manager, which is only aware of packages cataloged on the system. If you install with make, you are setting this up outside of the package manager's purview, and it will fail (as ... |
|
unix-ninja |
hashcat
|
3 |
1,772 |
11-19-2019, 09:13 PM |
|
|
Thread: statsprocessor-0.08 Skip and Limit
Post: RE: statsprocessor-0.08 Skip and Limit
You have it right. I ran that on my machine with statsprocessor 0.09 and it works fine.
See if you can try the 64 bit binary.
If it's still an issue, maybe just wait until 0.09 is officially released... |
|
unix-ninja |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
4 |
10,000 |
04-03-2013, 08:09 PM |
|
|
Thread: Adding 4 digit variable number to Name wordlist
Post: RE: Adding 4 digit variable number to Name wordlis...
Hashcat rules don't support dynamic processing at the moment. You would have to run this through something like the mask preprocessor to expand that into a rule file. for example:
```
mp '$?d$?d$?... |
|
unix-ninja |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
8 |
8,773 |
11-30-2017, 10:19 PM |
|
|
Thread: PrinceProcessor
Post: RE: PrinceProcessor
I am not sure prince processor is actually what you want. Checkout hashcat-utils, you may have some better luck there. Look at the combinators and combipow first. That's likely to get you closer to wh... |
|
unix-ninja |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
7 |
6,895 |
05-23-2018, 04:42 PM |
|
|
Thread: unbruteforceabe hash?
Post: RE: unbruteforceabe hash?
matafor Wrote: (04-30-2012, 09:45 PM)
--
Hi Folks!
I'm thinking about using a software with the following hash-algorithm: sha1(salt+sha1(salt+pass+salt))
I wanted to check if this algorithm is ... |
|
unix-ninja |
Old hashcat Support
|
4 |
10,756 |
04-30-2012, 09:57 PM |
|
|
Thread: MD5 Crack with Salt
Post: RE: MD5 Crack with Salt
I think you are a little confused about what a salt is. Using a salt will NOT prepend characters to your string. It is actually determining how to manipulate your password before hashing it. In additi... |
|
unix-ninja |
Old hashcat Support
|
9 |
59,386 |
05-07-2012, 04:30 PM |
|
|
Thread: MD5 Crack with Salt
Post: RE: MD5 Crack with Salt
additionally, if you want to use a salt to simulate the effect of prepending chars, you can use hash mode 2: MD5($salt.$hash) |
|
unix-ninja |
Old hashcat Support
|
9 |
59,386 |
05-07-2012, 04:34 PM |
|
|
Thread: Usage: hashcat [options] hashfile [mask|wordfiles|directories]
Post: RE: Usage: hashcat [options] hashfile [mask|wordfi...
>hashcat-cli32.exe -a 3 -m 1000 -o D:\output.txt --output-format=0 D:\hash.txt ?l?l?l?l?l?l |
|
unix-ninja |
Old hashcat Support
|
7 |
17,002 |
02-27-2013, 11:27 PM |
|
|
Thread: Hashcat on OS X
Post: RE: Hashcat on OS X
Have you tried running it on the command line? |
|
unix-ninja |
Old hashcat Support
|
3 |
7,542 |
03-07-2013, 09:40 PM |
|
|
Thread: Hashcat on OS X
Post: RE: Hashcat on OS X
Fifa13 Wrote: (03-08-2013, 07:24 AM)
--
No. I do not know how to do it
--
Start with this then:
https://www.hacktheday.com/beginners-guide-to-apple-terminal-part-1/ (https://www.hacktheday.com/beg... |
|
unix-ninja |
Old hashcat Support
|
3 |
7,542 |
03-08-2013, 06:11 PM |
|
|
Thread: Network support
Post: RE: Network support
Hashcat by itself does not do this, but you can download disthc from sourceforge and use it to cluster several machines running hashcat. |
|
unix-ninja |
Old hashcat Support
|
4 |
7,685 |
04-18-2013, 05:48 PM |
|
|
Thread: Differences of hashcats in v0.42
Post: RE: Differences of hashcats in v0.42
They depend on which processor-specific features you want to use:
standard instructions, Advanced Vector Extensions, or eXtended OPerations instructions.
Be sure your processor can support the mode y... |
|
unix-ninja |
Old hashcat Support
|
2 |
7,021 |
04-18-2013, 11:30 PM |
|
|
Thread: How to get status for cracking process to use in other programs?
Post: RE: How to get status for cracking process to use ...
I don't believe the restore file is written to live, so this wouldn't help you either.
Hashcat exposes no APIs for external development, so really your best option would be to parse stdout.
This i... |
|
unix-ninja |
Old hashcat Support
|
3 |
7,259 |
10-29-2013, 08:56 PM |
|
|
Thread: weird issue when trying to read mask option from file
Post: RE: weird issue when trying to read mask option fr...
You are probably not escaping some values properly.
Can you give more details on the actual lines in the script itself? |
|
unix-ninja |
Old hashcat Support
|
8 |
17,132 |
11-08-2013, 07:02 PM |
|
|
Thread: weird issue when trying to read mask option from file
Post: RE: weird issue when trying to read mask option fr...
The problem here is simple. You are piping multiple arguments to hashcat through the $line variable, and your script is therefore sending them to hashcat as a single parameter.
You think it's saying:... |
|
unix-ninja |
Old hashcat Support
|
8 |
17,132 |
11-08-2013, 08:37 PM |
|
|
Thread: Continuee brute force seasion after going to another OS?
Post: RE: Continuee brute force seasion after going to a...
Use the --session flag to create a session file, then you can use the --restore flag to resume that session. (Just copy the files over to your Linux instance). I believe there's a default session as w... |
|
unix-ninja |
Old hashcat Support
|
2 |
5,823 |
01-21-2014, 05:30 PM |
|
|
Thread: Help with statistics
Post: RE: Help with statistics
total words: 81450625
81450625 (total) / 2490 (per second) = 32711.1 seconds total
32711.1 / 60 = 545.185 minutes
545.185 minutes / 60 = 9.086 hours |
|
unix-ninja |
Old hashcat Support
|
3 |
5,642 |
05-23-2014, 08:59 PM |
|
|
Thread: Help with statistics
Post: RE: Help with statistics
P.S. 60 * 60 = 3600
You divided by 360. |
|
unix-ninja |
Old hashcat Support
|
3 |
5,642 |
05-23-2014, 09:02 PM |