Hashcat 0.41 external salt file and --remove error - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html) +--- Thread: Hashcat 0.41 external salt file and --remove error (/thread-1685.html) |
Hashcat 0.41 external salt file and --remove error - The Mechanic - 10-24-2012 hashcat 0.41 32 bit, running bt5r3 64 kde When using external salt file -e and --remove option generates hashfile.txt.new file that increases in size until hard drive is full. Not sure if 64 bit versions do this, i get a error for /lib/libc.so.6: Version GLIBC_2.14 not found, havent got around to looking at that as of yet. RE: Hashcat 0.41 external salt file and --remove error - undeath - 10-24-2012 To fix the glibc error you need to upgrade your OS. RE: Hashcat 0.41 external salt file and --remove error - M@LIK - 10-24-2012 Don't use --remove flag with -e, use awk\gawk command to remove cracked hashes instead: Code: awk -F: "FNR==NR{ a[$1]++ } a[$1]!=1" cracked original_hashfile > leftfile RE: Hashcat 0.41 external salt file and --remove error - atom - 10-24-2012 As malik said, -e in combination with --remove is not supported. You can do it in two runs. RE: Hashcat 0.41 external salt file and --remove error - The Mechanic - 10-24-2012 Alrighty, Thank ya guys |