Search Results
|
Post |
Author |
Forum |
Replies |
Views
[asc]
|
Posted |
|
|
Thread: history hash
Post: RE: history hash
just open the potfile in a text editor or use:
Code:
--
cat hashcat.potfile
--
(this is on linux ... or use the "type" command on windows)
use --potfile-disable to disable the potfile (or rem... |
|
philsmd |
hashcat
|
5 |
1,555 |
03-13-2020, 11:32 AM |
|
|
Thread: history hash
Post: RE: history hash
if you use LINUX *and* if you have installed hashcat (make install or used a package manager), the files are wihtin your home directory:
Code:
--
cat $HOME/.hashcat/hashcat.potfile
--
|
|
philsmd |
hashcat
|
5 |
1,555 |
03-13-2020, 01:20 PM |
|
|
Thread: rules attack
Post: RE: rules attack
Try to use --stdout to see what the single rules do (hashcat --stdout -a 0 -r test.rule dict.txt)
also see: https://hashcat.net/wiki/doku.php?id=rule_based_attack
for instance the rule "t" (lo... |
|
philsmd |
hashcat
|
7 |
1,545 |
04-02-2020, 05:43 PM |
|
|
Thread: rules attack
Post: RE: rules attack
it's not allowed to post hashes here, read the forum rules.
You didn't even mention the password and therefore nobody can verify what you are claiming is correct about these "rules".
Without the e... |
|
philsmd |
hashcat
|
7 |
1,545 |
04-03-2020, 02:33 AM |
|
|
Thread: rules attack
Post: RE: rules attack
The main problem here should be very clear.
Let's assume we have a dictionary called rockyou.txt and it contains the word "bioshock" (without quotes):
Code:
--
$ grep '^bioshock$' rockyou.txt
... |
|
philsmd |
hashcat
|
7 |
1,545 |
04-07-2020, 09:14 AM |
|
|
Thread: Mask Attacks with Mask File and Custom Charset
Post: RE: Mask Attacks with Mask File and Custom Charset
as the two guides from https://hashcat.net/wiki/?id=mask_attack#hashcat_mask_files and https://hashcat.net/faq#what_is_a_hashcat_mask_file already emphasize, you must specify all the hcchr and custom ... |
|
philsmd |
hashcat
|
2 |
1,544 |
04-03-2019, 01:10 PM |
|
|
Thread: Cracking bcrypt hash using brute force mode
Post: RE: Cracking bcrypt hash using brute force mode
The command makes no sense.
Defining any custom charset like --custom-charset1 (or short -1) without using it within the mask doesn't make any sense and is actually quite a common user mistake. :(
... |
|
philsmd |
hashcat
|
7 |
1,538 |
05-10-2020, 07:29 AM |
|
|
Thread: Rules attack - restore not working
Post: RE: Rules attack - restore not working
just explain what you see and experience.
Do you mean that it takes a while until the next restore point is reached ?
Maybe it's only a matter of having a little bit of patience until the current ... |
|
philsmd |
hashcat
|
8 |
1,537 |
04-18-2020, 09:30 AM |
|
|
Thread: Rules attack - restore not working
Post: RE: Rules attack - restore not working
The status at the end must be
Code:
--
Status...........: Aborted (Checkpoint)
--
The value of the Restore.Point must be increased (greater than 0)... Attention: the progress line is not the c... |
|
philsmd |
hashcat
|
8 |
1,537 |
04-19-2020, 04:43 AM |
|
|
Thread: Rules attack - restore not working
Post: RE: Rules attack - restore not working
My guess is that with that many rules, the workload profile (-w 2 ? or -w 3) and the amount of GPUs, it might just take a lot of time to reach the next checkpoint.
With -w 1 more checkpoints will be ... |
|
philsmd |
hashcat
|
8 |
1,537 |
04-19-2020, 04:15 PM |
|
|
Thread: No devices found/left
Post: RE: No devices found/left
if you want to install the Intel driver, you just go to the intel download page (as explained in dozens of other hashcat forum posts):
https://hashcat.net/forum/thread-9240-post-48858.html#pid48858
... |
|
philsmd |
hashcat
|
7 |
1,535 |
06-09-2020, 12:48 PM |
|
|
Thread: No devices found/left
Post: RE: No devices found/left
it's directly linked in the above thread:
linux: https://registrationcenter-download.intel.com/akdlm/irc_nas/vcp/15532/l_opencl_p_18.1.0.015.tgz
windows: https://registrationcenter-download.intel.co... |
|
philsmd |
hashcat
|
7 |
1,535 |
06-09-2020, 02:00 PM |
|
|
Thread: No devices found/left
Post: RE: No devices found/left
Code:
--
cd Downloads/
tar xzf l_opencl_p_18.1.0.015.tgz
cd l_opencl_p_18.1.0.015/
sudo ./install.sh
--
The installer will tell you if you have installed all the packages that are needed ... |
|
philsmd |
hashcat
|
7 |
1,535 |
06-09-2020, 09:17 PM |
|
|
Thread: No devices found/left
Post: RE: No devices found/left
The downloaded file l_opencl_p_18.1.0.015.tgz defintiely contains an installation file called "install.sh" within the archive.
If you would have extracted the tgz file correctly with "tar xzf l_ope... |
|
philsmd |
hashcat
|
7 |
1,535 |
06-14-2020, 06:33 PM |
|
|
Thread: 1Password Master Password file location (MAC)?
Post: RE: 1Password Master Password file location (MAC)?
I'm sorry to hear that.
It might depend on the version of 1password that is being used, but some online resources say it's somewhere located in the ~/Library/ subfolders on macOS:
https://discus... |
|
philsmd |
hashcat
|
2 |
1,530 |
11-29-2019, 10:49 AM |
|
|
Thread: Optimizing WPA recovery
Post: RE: Optimizing WPA recovery
The recommended way is to capture the network traffic with https://github.com/ZerBea/hcxdumptool and convert the capture to hashes with hcxpcapngtool of https://github.com/ZerBea/hcxtools .
The new... |
|
philsmd |
General Talk
|
4 |
1,529 |
02-21-2020, 08:28 AM |
|
|
Thread: Not found hash Removing
Post: RE: Not found hash Removing
you are searching for this command line option:
Code:
--
--left | Compare hashlist with potfile; show uncracked hashes
--
and of course the opposite of --left is --show
btw: you are not all... |
|
philsmd |
General Talk
|
1 |
1,528 |
03-24-2019, 02:53 PM |
|
|
Thread: Mask for brut
Post: RE: Mask for brut
If you do not specify any mask the default mask is used, see https://hashcat.net/wiki/doku.php?id=hashcat#default_values
I already explained it here (don't just double post that quickly, we already... |
|
philsmd |
hashcat
|
4 |
1,525 |
02-19-2020, 09:45 AM |
|
|
Thread: Mask for brut
Post: RE: Mask for brut
It's just one of the best masks if you care about speed, hit-rate, working efficient with multiple hash-type etc.
of course, the user should specify their own masks if they have some knowledge abou... |
|
philsmd |
hashcat
|
4 |
1,525 |
02-20-2020, 12:43 AM |
|
|
Thread: Veracrypt Non-bootable drive
Post: RE: Veracrypt Non-bootable drive
Did you read this:
https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#how_do_i_extract_the_hashes_from_truecrypt_volumes
?
is this a physical disk ? how many volumdes/partitions etc... |
|
philsmd |
hashcat
|
3 |
1,518 |
08-24-2019, 12:11 PM |