Search Results
|
Post |
Author |
Forum |
Replies |
Views |
Posted
[asc]
|
|
|
Thread: Hashcat slows down after staring attack.
Post: RE: Hashcat slows down after staring attack.
This is totally not the same problem. As you have read from the original post the user was using 779 networks instead of 1. In your case it's probably heating. Keep a look at the temperature. If it go... |
|
atom |
hashcat
|
1 |
1,629 |
06-28-2018, 04:21 PM |
|
|
Thread: Mix of single and multi byte in wordlist
Post: RE: Mix of single and multi byte in wordlist
You can add utf-8 german umlauts by using two function calls:
Quote:
--
root@ht:~/hashcat# cat rule
$\xc3 $\xa4
root@ht:~/hashcat# echo test | ./hashcat --stdout -r rule
testä
--
|
|
atom |
hashcat
|
6 |
4,575 |
06-24-2018, 03:27 PM |
|
|
Thread: Hashcat vs TeamViewer
Post: RE: Hashcat vs TeamViewer
Performance mode gets activated. You can use afterburner to enable it without teamviewer, chrome, etc. |
|
atom |
hashcat
|
3 |
2,814 |
06-24-2018, 03:24 PM |
|
|
Thread: Custom OpenCL kernel question
Post: RE: Custom OpenCL kernel question
If both salts are fixed you can hardcode them into the kernel code, saves you some work. See kernel 2610 to get any idea on how to start. |
|
atom |
hashcat
|
4 |
4,320 |
06-22-2018, 09:52 AM |
|
|
Thread: Telegram Desktop passcode
Post: RE: Telegram Desktop passcode
Yeah, everything is done on GPU (which is written in OpenCL, which is a reduced C). |
|
atom |
hashcat
|
4 |
3,570 |
06-22-2018, 09:48 AM |
|
|
Thread: Telegram Desktop passcode
Post: RE: Telegram Desktop passcode
Comparison after KDF doesn't sound too complex to me (except IGE mode which I don't know what it does but block-modes tend to be simple because they have to be fast). There's much more complex kernels... |
|
atom |
hashcat
|
4 |
3,570 |
06-21-2018, 02:00 PM |
|
|
Thread: Custom cracking algorithm
Post: RE: Custom cracking algorithm
I'm not 100% certain I've understood your question correctly. But I think what you want to do is to use hashcat hook functionality. You need to write the hook function in C. See seven_zip_hook_func() ... |
|
atom |
hashcat
|
2 |
2,301 |
06-21-2018, 01:51 PM |
|
|
Thread: Single-mode john analog for hashcat
Post: RE: Single-mode john analog for hashcat
Single-mode cracking is incompatible to GPGPU cracking, it's not a hashcat problem. |
|
atom |
hashcat
|
5 |
4,077 |
06-21-2018, 11:34 AM |
|
|
Thread: Kernel outputting CL_UNKNOWN_ERROR
Post: RE: Kernel outputting CL_UNKNOWN_ERROR
From a C perspective it's fine (if we assumbe byte* is some 8 bit datatype), but in OpenCL everything is different. What I mean is that you have to find workarounds that do the same you try to do but ... |
|
atom |
General Talk
|
3 |
2,999 |
06-19-2018, 09:47 AM |
|
|
Thread: Hashcat 4.1.0 not using AMD RX 570 & amdconfig: command not found
Post: RE: Hashcat 4.1.0 not using AMD RX 570 & amdconfig...
I got that error as well when I've upgrade to latest rocm version:
Code:
--
$ /opt/rocm/bin/rocminfo
hsa api call failure at line 900, file: /home/jenkins/jenkins-root/workspace/compute-rocm-rel-1.... |
|
atom |
hashcat
|
8 |
8,906 |
06-18-2018, 09:26 AM |
|
|
Thread: -m 11300 broken in version 4.1?
Post: RE: -m 11300 broken in version 4.1?
I've debugged the kernel and found out it's not a problem in hashcat. You can read here about the details: https://github.com/hashcat/hashcat/issues/1596 |
|
atom |
hashcat
|
3 |
2,654 |
06-18-2018, 09:21 AM |
|
|
Thread: Hashcat 4.1.0 not using AMD RX 570 & amdconfig: command not found
Post: RE: Hashcat 4.1.0 not using AMD RX 570 & amdconfig...
Use rocm instead of amdgpu-pro. |
|
atom |
hashcat
|
8 |
8,906 |
06-17-2018, 10:49 AM |
|
|
Thread: -m 11300 broken in version 4.1?
Post: RE: -m 11300 broken in version 4.1?
Sometimes OpenCL runtime are a bit buggy. You may need to wait for a later version of rocm and retry. |
|
atom |
hashcat
|
3 |
2,654 |
06-17-2018, 10:47 AM |
|
|
Thread: Call custom algorithm form hashcat
Post: RE: Call custom algorithm form hashcat
Of course it's possible. You just need to rewrite the algorithm as kernel in OpenCL (basically strong reduced C language).
There's no official documentation about the process adding a new algorithm,... |
|
atom |
hashcat
|
2 |
3,661 |
06-16-2018, 02:13 PM |
|
|
Thread: Hashcat 4.1.0 slow speed
Post: RE: Hashcat 4.1.0 slow speed
Note that you can still have full cracking speed even with a static prefix mask for slow hashes like WPA by using a pipe.
Full speed test:
Code:
--
root@ht:~/hashcat# ./hashcat -b -m 2500
...
Sp... |
|
atom |
hashcat
|
6 |
3,898 |
06-16-2018, 02:10 PM |
|
|
Thread: Custom installation path
Post: RE: Custom installation path
Sure, just set the PREFIX variable to your custom path in Makefile accordingly. |
|
atom |
hashcat
|
1 |
1,903 |
06-16-2018, 10:25 AM |
|
|
Thread: Possible development to support three wordlists at once?
Post: RE: Possible development to support three wordlist...
Btw in order to save wordlist space you could also use -a 1 attack where you used the 2-word wordlist in the left side and the original wordlist on the right side. This however does not change anythin... |
|
atom |
hashcat
|
25 |
19,841 |
06-16-2018, 10:24 AM |
|
|
Thread: HashCat takes a very long time to report progress
Post: RE: HashCat takes a very long time to report progr...
This is a problem related to (a) how GPU parallelization works in general in combination with (b) an algorithm with a very iteration count.
When it comes to modern hashing algorithms they are typic... |
|
atom |
hashcat
|
5 |
8,312 |
06-16-2018, 10:12 AM |
|
|
Thread: Possible development to support three wordlists at once?
Post: RE: Possible development to support three wordlist...
Code:
--
./combinator3.bin wordlist1.txt wordlist2.txt wordlist3.txt | ./hashcat -m 10900 hash.txt
--
|
|
atom |
hashcat
|
25 |
19,841 |
06-15-2018, 07:42 PM |
|
|
Thread: Been away for a while
Post: RE: Been away for a while
You guys did well, many thanks! |
|
atom |
hashcat
|
4 |
3,509 |
06-12-2018, 04:53 PM |