Search Results
|
Post |
Author |
Forum |
Replies
[asc]
|
Views |
Posted |
|
|
Thread: Newbie Build Question?
Post: RE: Newbie Build Question?
I think this message is not from the NV installer but from the Intel one. If that's the case and you're on Ubuntu 16.04, ignore it, it will successfully install and work afterwards. |
|
atom |
Hardware
|
4 |
5,735 |
05-13-2017, 02:25 PM |
|
|
Thread: CL_PLATFORM_NOT_FOUND_KHR Error
Post: RE: CL_PLATFORM_NOT_FOUND_KHR Error
It is for sure a driver installation error. Just run a different OpenCL tool to verify, like this: https://github.com/Oblomov/clinfo |
|
atom |
hashcat
|
4 |
14,442 |
05-13-2017, 02:32 PM |
|
|
Thread: Use rules only on selected dictionaries
Post: RE: Use rules only on selected dictionaries
What's wrong with that solutions, it's pretty good use of hashcat. You can improve it by using | instead of > to not write the data to disc but to pipe it to the 2nd process. |
|
atom |
General Talk
|
4 |
4,675 |
05-21-2017, 01:14 PM |
|
|
Thread: Basic hashcat mask syntax
Post: RE: Basic hashcat mask syntax
The mask you specify is not ?1?1?1?1?1?1?1?1 as you could think, it's just "?1". That's because of the --increment option. If you remove it the warning will be be gone. |
|
atom |
hashcat
|
4 |
6,438 |
06-02-2017, 02:00 PM |
|
|
Thread: Basic hashcat mask syntax
Post: RE: Basic hashcat mask syntax
Protip: use CPU only (-D 1) for such small masks |
|
atom |
hashcat
|
4 |
6,438 |
06-02-2017, 04:12 PM |
|
|
Thread: crunch hashcat piping WPA cracking not working
Post: RE: crunch hashcat piping WPA cracking not working
Copying means hashcat is waiting for input. It's not getting any data from crunch, which seems to be the problemn here. Try without the hashcat command and see if crunch produces any candidates. |
|
atom |
hashcat
|
4 |
9,123 |
06-23-2017, 03:18 PM |
|
|
Thread: creating a mask
Post: RE: creating a mask
https://github.com/hashcat/maskprocessor/releases/download/v0.73/maskprocessor-0.73.7z |
|
atom |
General Talk
|
4 |
4,602 |
06-29-2017, 10:58 AM |
|
|
Thread: Office hash trouble
Post: RE: Office hash trouble
I think office2john.py adds additional columns on both sides, left and right. Double check your modification |
|
atom |
hashcat
|
4 |
4,319 |
07-29-2017, 05:01 PM |
|
|
Thread: Unresponsive hashcat - ignoring keyboard input
Post: RE: Unresponsive hashcat - ignoring keyboard input
Perhaps simply to many hashes being cracked |
|
atom |
hashcat
|
4 |
4,070 |
08-07-2017, 04:02 PM |
|
|
Thread: Best practice dealing with dic intersections
Post: RE: Best practice dealing with dic intersections
fromdusktillpwn Wrote: (07-30-2017, 02:46 PM)
--
philsmd Wrote: (07-30-2017, 07:34 AM)
--
There are countless tools
--
Well, yes, that's kinda what my friend does now. But is it the best practice ... |
|
atom |
General Talk
|
4 |
5,551 |
07-31-2017, 08:45 AM |
|
|
Thread: Restore value is greater than keyspace.
Post: RE: Restore value is greater than keyspace.
You can not avoid it when updating to new version |
|
atom |
General Talk
|
4 |
5,323 |
08-18-2017, 10:04 AM |
|
|
Thread: AES implementation not working on GPUs for small keyspaces?
Post: RE: AES implementation not working on GPUs for sma...
That sounds like you did not make sure to fill the shared memory before early exit the kernel (return too soon). |
|
atom |
hashcat
|
4 |
5,359 |
08-31-2017, 10:09 AM |
|
|
Thread: AES implementation not working on GPUs for small keyspaces?
Post: RE: AES implementation not working on GPUs for sma...
Yeah it's the barrier I mean. It's just important that there's no return statement executed before the kernel reaches this point in code. If it does, it's not guaranteed all data from constant buffer ... |
|
atom |
hashcat
|
4 |
5,359 |
08-31-2017, 05:51 PM |
|
|
Thread: Word List or Mask is too smaill error HELP
Post: RE: Word List or Mask is too smaill error HELP
In this case hashcat would load word2.txt as a maskfile, when then would try to iterate through all words as single (static) masks. That's absolutely not what you want. |
|
atom |
hashcat
|
4 |
4,344 |
09-17-2017, 01:26 PM |
|
|
Thread: Hybrid attack splitting
Post: RE: Hybrid attack splitting
hashcat64.exe -a 7 test.hash ?l?l?l?l?l smallDict.txt --stdout -o new.txt
then use -a0 new.txt instead
you will have a larger --keyspace range to operate and distribute |
|
atom |
hashcat
|
4 |
4,187 |
10-01-2017, 11:29 AM |
|
|
Thread: Hash I do not recognize
Post: RE: Hash I do not recognize
It's fine, he masked them |
|
atom |
General Talk
|
4 |
3,789 |
10-01-2017, 11:42 AM |
|
|
Thread: HMAC-SHA1 with an MD5 key
Post: RE: HMAC-SHA1 with an MD5 key
Well I'd just create the 26^5 combinations using maskprocessor like
mp64.bin -1 0123456789abcdef ?1?1?1?1?1 -o out.txt
Then you can use hmac sha1 mode to crack it (mode 50) in -a 0 mode with out... |
|
atom |
hashcat
|
4 |
4,259 |
10-01-2017, 11:55 AM |
|
|
Thread: HMAC-SHA1 with an MD5 key
Post: RE: HMAC-SHA1 with an MD5 key
Unfortunately there's no documentation about how to add new kernels, but it's all pretty straight forwarded C, so should be easy to find out. 150 is using the password as key and salt as message, 160 ... |
|
atom |
hashcat
|
4 |
4,259 |
10-01-2017, 07:03 PM |
|
|
Thread: IOS 10 OpenCL kernel self-test failed
Post: RE: IOS 10 OpenCL kernel self-test failed
You need to update your OpenCL runtime |
|
atom |
hashcat
|
4 |
6,030 |
10-20-2017, 11:17 AM |
|
|
Thread: IOS 10 OpenCL kernel self-test failed
Post: RE: IOS 10 OpenCL kernel self-test failed
This was a bug, fixed in RC8, up in beta. |
|
atom |
hashcat
|
4 |
6,030 |
10-25-2017, 01:45 PM |