Posts: 43
Threads: 14
Joined: Nov 2014
i run this command :
oclHashcat64.exe -a 6 -m 21 --session=all -p : --force -o "C:\found.txt" --outfile-format=3 --remove -w 2 --gpu-temp-abort=80 "C:HASH.txt" "C:\wordlist.txt" E:\mask.txt
INFO: removed 1 hash found in pot file
how i can save this removed hash in a file please..
Posts: 2,267
Threads: 16
Joined: Feb 2013
You either use a new session (name) --session
OR
use --potfile-disable to disable the .pot file check (and writing) at all
Posts: 43
Threads: 14
Joined: Nov 2014
thanks philsmd
i have a list of (250) hash and wen i start cracking i see this message :INFO: removed 1 hash found in pot file
but i dont have the pass in my wordlist so i want to extract just the cracked pass from the .pot file.
Posts: 2,267
Threads: 16
Joined: Feb 2013
03-27-2015, 01:03 AM
(This post was last modified: 03-27-2015, 01:06 AM by philsmd.)
You can't use --remove then, or at least you need to have the original hash list
If you have the original hash file, then just run something like this:
oclHashcat64.exe -m 21 --show --session all "C:original_HASH_list.txt"
to save the output of --show to a file use -o
to adapt the outfile options, use --outfile-format
all this information was explained already a couple of times on the forum, can be looked up in --help and was also documented on the wiki
Posts: 43
Threads: 14
Joined: Nov 2014