Search Results
|
Post |
Author |
Forum |
Replies
[asc]
|
Views |
Posted |
|
|
Thread: Snowden Files Cracked, Surprised?
Post: RE: Snowden Files Cracked, Surprised?
Just some numbers:
Cracking AES-128 at a speed of 10^18 tries per second (which is probably much faster than even the NSA can afford) takes an awful lot of time:
2**128/1000000000000000000/60/60/24/... |
|
undeath |
General Talk
|
4 |
8,059 |
06-14-2015, 02:35 PM |
|
|
Thread: 82141 H/s max for r9 270?
Post: RE: 82141 H/s max for r9 270?
combinations: 1099511627776
necessary c/s to crack in two days: 1099511627776/60/60/24/2 = 6362914.5
a Nvidia Titan X archives ~315 kH/s (according to this benchmark: https://gist.github.com/epixo... |
|
undeath |
Old oclHashcat Support
|
4 |
8,273 |
06-20-2015, 04:25 PM |
|
|
Thread: Fingerprint Attack in windows
Post: RE: Fingerprint Attack in windows
just to highlight what epixoip wrote:
epixoip Wrote: (07-23-2015, 09:41 AM)
--
You really should learn how to use your shell.
--
every character there has a specific meaning |
|
undeath |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
4 |
10,305 |
07-23-2015, 12:52 PM |
|
|
Thread: Problem with Hashcat and large hashlists
Post: RE: Problem with Hashcat and large hashlists
Unless you want to develop a faster PCIe bus you can't. The hash list has to be transfered to your GPU. |
|
undeath |
General Help
|
4 |
6,342 |
11-29-2015, 04:04 PM |
|
|
Thread: oclhashcat and apu a8 5500 different performances
Post: RE: oclhashcat and apu a8 5500 different performan...
|
undeath |
Old oclHashcat Support
|
4 |
6,679 |
12-08-2015, 07:03 PM |
|
|
Thread: what am i doing wrong?
Post: RE: what am i doing wrong?
simple answer, don't use notepad.exe |
|
undeath |
Old hashcat Support
|
4 |
6,292 |
02-03-2016, 09:37 PM |
|
|
Thread: Debugging multi-rules
Post: RE: Debugging multi-rules
You could concatenate the rule files manually to debug them with hashcat. |
|
undeath |
Old oclHashcat Support
|
4 |
6,290 |
04-06-2016, 11:42 AM |
|
|
Thread: Debugging multi-rules
Post: RE: Debugging multi-rules
Prime Wrote: (04-06-2016, 11:46 AM)
--
Would it be possible to use combinator/combinator3 from hashcat-utils to generate a file that contains all combinations of rules which would be created by oclHa... |
|
undeath |
Old oclHashcat Support
|
4 |
6,290 |
04-06-2016, 02:20 PM |
|
|
Thread: Output the calculated hashes to file?
Post: RE: Output the calculated hashes to file?
|
undeath |
Old oclHashcat Support
|
4 |
5,481 |
05-05-2016, 11:38 PM |
|
|
Thread: Virtualization for the win
Post: RE: Virtualization for the win
Now one question remains: why sacrifice 10% performance for the offered flexibility with 100% uptime guarantee? You can have an uptime of 99.9% without the effort of virtualizing. (unless you need 1h ... |
|
undeath |
Hardware
|
4 |
7,569 |
06-20-2016, 05:56 PM |
|
|
Thread: How to get DES key if I know plain text?
Post: RE: How to get DES key if I know plain text?
hashcat can only attack hashes, not encryption. |
|
undeath |
hashcat
|
4 |
7,221 |
07-02-2016, 12:09 PM |
|
|
Thread: Nvidia GeForce 610
Post: RE: Nvidia GeForce 610
https://hashcat.net/hashcat/ > GPU Driver Requirements |
|
undeath |
hashcat
|
4 |
6,084 |
05-05-2017, 01:08 PM |
|
|
Thread: Nvidia GeForce 610
Post: RE: Nvidia GeForce 610
There is no error, only warnings. |
|
undeath |
hashcat
|
4 |
6,084 |
05-05-2017, 02:41 PM |
|
|
Thread: Newbie Build Question?
Post: RE: Newbie Build Question?
SLI: https://hashcat.net/forum/thread-6537.html
Ubuntu 16.04 will work, too. |
|
undeath |
Hardware
|
4 |
5,735 |
05-08-2017, 09:30 PM |
|
|
Thread: hashcat does not seem to crack via mask
Post: RE: hashcat does not seem to crack via mask
You can find almost everything you need to know on the wiki: https://hashcat.net/wiki/ |
|
undeath |
hashcat
|
4 |
4,849 |
05-13-2017, 04:00 PM |
|
|
Thread: crunch hashcat piping WPA cracking not working
Post: RE: crunch hashcat piping WPA cracking not working
Even if it did work, your computer will break before this command ever completes. |
|
undeath |
hashcat
|
4 |
9,123 |
06-21-2017, 06:04 PM |
|
|
Thread: Problema en iniciar Hashcat Handshake
Post: RE: Problema en iniciar Hashcat Handshake
6870 is too old and not supported.
you need to extract the handshake into a hccapx file, not cap.
https://hashcat.net/cap2hccapx/
https://hashcat.net/wiki/doku.php?id=cracking_wpawpa2 |
|
undeath |
General Talk
|
4 |
4,781 |
07-12-2017, 12:02 PM |
|
|
Thread: Unresponsive hashcat - ignoring keyboard input
Post: RE: Unresponsive hashcat - ignoring keyboard input
What driver are you using? |
|
undeath |
hashcat
|
4 |
4,070 |
08-07-2017, 03:41 PM |
|
|
Thread: How to save all generated hashes to file?
Post: RE: How to save all generated hashes to file?
hashcat does not provide an interface for such a thing. |
|
undeath |
hashcat
|
4 |
4,469 |
08-16-2017, 07:24 PM |
|
|
Thread: How to save all generated hashes to file?
Post: RE: How to save all generated hashes to file?
ftfy
MrMeeseeks Wrote: (08-17-2017, 09:22 AM)
--
Bash one liner for the win:
Code:
--
while read -r line; do echo -n "$line" | sha256sum | cut -d " " -f 1; done < ./plains > hashes
--
--
|
|
undeath |
hashcat
|
4 |
4,469 |
08-17-2017, 10:41 AM |