Search Results
|
Post |
Author
[asc]
|
Forum |
Replies |
Views |
Posted |
|
|
Thread: oclHashcat running on the new AMD hd7970
Post: RE: oclHashcat running on the new AMD hd7970
I know I said I was out of ideas, but have you tried uninstalling the drivers, rebooting, then installing 11.12? Or 12.1 preview... |
|
chort |
Hardware
|
52 |
175,232 |
01-18-2012, 05:59 AM |
|
|
Thread: Distribute rules as separate download
Post: RE: Distribute rules as separate download
Yeah, I thought about that.
Does 7za overwrite all the contents of a directory when it uncompresses an archive? Perhaps there could be two directories inside the hashcat & oclhashcat archives, one fo... |
|
chort |
Feature Requests
|
5 |
11,056 |
01-18-2012, 09:27 AM |
|
|
Thread: Don't work Sha-1(base-64)
Post: RE: Don't work Sha-1(base-64)
I believe that's correct. Try writing that into a file, then give hashcat the path to the file to read instead of passing the hash on the command line. |
|
chort |
Old hashcat Support
|
6 |
12,364 |
01-19-2012, 12:59 AM |
|
|
Thread: Can't get it to crack known hashes
Post: RE: Can't get it to crack known hashes
Really? How did you generate the hashes?
chort@hydra:~$ echo -n '12345' | sha1sum
8cb2237d0679ca88db6464eac60da96345513964 -
chort@hydra:~$ echo -n '123456' | sha1sum
7c4a8d09ca3762af61e59520943dc... |
|
chort |
Old hashcat Support
|
8 |
17,216 |
01-19-2012, 05:21 AM |
|
|
Thread: Just want to confirm it doesn't support
Post: RE: Just want to confirm it doesn't support
I added to the wiki under "Supported algorithms and GPU defaults," but not to the wiki copy of --help output, since it isn't actually in the help output at this time. |
|
chort |
Very old oclHashcat-plus Support
|
6 |
13,637 |
01-20-2012, 07:21 AM |
|
|
Thread: OpenCL bruteforcing via hcGui
Post: RE: OpenCL bruteforcing via hcGui
Mask attacks use literal characters ('i', ' ', 'u', ' ', 'd'), unless you use the special built-in variables (that are prefixed with '?'). BTW you want 'l' as in 'L' if you intend to use the built-in ... |
|
chort |
Old hashcat Support
|
10 |
19,973 |
01-20-2012, 09:25 AM |
|
|
Thread: reading directories with dictionaries in combinator mode
Post: RE: reading directories with dictionaries in combi...
You could also write your script to catch signals and send the process the signal you're trapping.
https://www.google.com/search?sourceid=chrome&ie=UTF-8&q=bash+trap+signals |
|
chort |
Very old oclHashcat-plus Support
|
4 |
10,425 |
01-20-2012, 10:50 PM |
|
|
Thread: rules with $4 or $9 and ^4 or ^9 dropped
Post: RE: rules with $4 or $9 and ^4 or ^9 dropped
Hello atom,
In 0.39b2 every rule is applied, but only every 4th wordlist entry is used. Here is the output of prepending [1-9] (rule) to team[1-9] (wordlist):
Code:
--
chort@hydra:~/code/hashcat-0.... |
|
chort |
Old hashcat Support
|
11 |
20,664 |
01-23-2012, 12:39 AM |
|
|
Thread: rules with $4 or $9 and ^4 or ^9 dropped
Post: RE: rules with $4 or $9 and ^4 or ^9 dropped
Confirmed as fixed. Thanks! |
|
chort |
Old hashcat Support
|
11 |
20,664 |
01-23-2012, 11:43 PM |
|
|
Thread: Long passwords
Post: RE: Long passwords
You can't brute-force that keyspace. Only thing you can do is mask attack that is very selective, and/or use maskprocessor to create some specific wordlists that have patterns (repeated digits like '9... |
|
chort |
General Help
|
5 |
12,197 |
01-24-2012, 07:33 AM |
|
|
Thread: oclHashcat-plus32 backtrack clGetDeviceIDs() -1
Post: RE: oclHashcat-plus32 backtrack clGetDeviceIDs() -...
Backtrack is irritating. The only reliable way I've found to run OpenCL apps in Backtrack is to open an X session and run the OpenCL app from an Xterm window. |
|
chort |
Very old oclHashcat-plus Support
|
2 |
7,346 |
01-25-2012, 12:20 AM |
|
|
Thread: oclHashcat-plus Min/Max length for candidate plain
Post: oclHashcat-plus Min/Max length for candidate plain
For wordlists generate with expander it's easy to generate a lot of short candidates with combinator attack. That's a waste of time if one knows there won't be any plains of say, less than length 8. I... |
|
chort |
Feature Requests
|
2 |
8,485 |
01-26-2012, 09:46 AM |
|
|
Thread: oclHashcat-plus Min/Max length for candidate plain
Post: RE: oclHashcat-plus Min/Max length for candidate p...
I was afraid it might take just as long to check length as to generate the hash for fast algorithms.
I can't think of a simple way to implement such a feature w/o checking the candidate length just b... |
|
chort |
Feature Requests
|
2 |
8,485 |
01-26-2012, 09:37 PM |
|
|
Thread: Problem with bruteforcing with GPU
Post: RE: Problem with bruteforcing with GPU
Documentation: https://hashcat.net/wiki/mask_attack |
|
chort |
Very old oclHashcat-plus Support
|
2 |
6,602 |
01-28-2012, 01:40 AM |
|
|
Thread: Ubuntu 10.10(64 bit)
Post: RE: Ubuntu 10.10(64 bit)
Use the cuda version with NVIDIA cards. |
|
chort |
Very old oclHashcat-plus Support
|
7 |
19,477 |
01-28-2012, 09:01 AM |
|
|
Thread: Ubuntu 10.10(64 bit)
Post: RE: Ubuntu 10.10(64 bit)
If your video card is not supported, then your only option is Hashcat (not ocl/cuda). |
|
chort |
Very old oclHashcat-plus Support
|
7 |
19,477 |
01-28-2012, 08:08 PM |
|
|
Thread: Quick script to convert dict for passpal
Post: Quick script to convert dict for passpal
Seems to work so far (thanks to bmenrigh & inv):
Code:
--
#!/bin/bash
if [ -z "$2" ]
then
echo "Usage: $0 "
exit
fi
INFILE=$1
OUTFILE=$2
if [ -f "$INFILE" ] && `to... |
|
chort |
User Contributions
|
1 |
6,219 |
01-28-2012, 08:14 PM |
|
|
Thread: output file
Post: RE: output file
Run oclHashcat-plus with --help to see the supported output formats.
I do something like:
Code:
--
$ cut -d':' -f1 cracked.txt | xargs -I {} -xn1 grep {} hashfile.txt
--
You could write a shell s... |
|
chort |
Very old oclHashcat-plus Support
|
6 |
18,241 |
01-30-2012, 08:42 PM |
|
|
Thread: oclhashcat-lite v0.8 Bug Report Thread
Post: RE: oclhashcat-lite v0.8 Bug Report Thread
@lindros, atom is the creator of the tool, that's why atom has a beta version.
oclHashcat-plus 0.07 changed the identifying number for vBulletin hash types. It's a cosmetic change. The beta of oclHas... |
|
chort |
Very old oclHashcat-lite Support
|
13 |
26,912 |
01-30-2012, 08:56 PM |
|
|
Thread: output file
Post: RE: output file
cracked.txt is the file you output cracked hashes to (hash:plain).
hashfile.txt is the file you're reading hashes from (username:hash)
Use oclHashcat-plus with -o cracked.txt
Once it's finished, use... |
|
chort |
Very old oclHashcat-plus Support
|
6 |
18,241 |
01-30-2012, 09:41 PM |