Signature unmatched No hashed loaded.
#1
I have a file named test.zip, it's password is like "Cst.******", where * is 0-9,a-z,A-Z
My device is Tesla V100-32GB,my OS is Ubuntu 20.04LTS
First, I use
Code:
zip2john test.zip > temp.txt
, I got things like: 
Code:
test.zip/test.pdf:$pkzip2$1*2*2*0*1a68...(many characters)...6030bc*$/pkzip2$:test.pdf:test.zip
Then, I store the
Code:
1*2*2*0*1a68...(many characters)...6030bc*
into a file named hash.txt
Then I use hashcat by command:
Code:
(base) ubuntu@VM-0-13-ubuntu:~/hashcat-6.2.6$ ./hashcat.bin -a 3 -m 17225 hash.txt Cst. -1 ?l?u?d -1 ?l?u?d -1 ?l?u?d -1 ?l?u?d -1 ?l?u?d -1 ?l?u?d
hashcat (v6.2.6) starting

txts/hash.txt: Byte Order Mark (BOM) was detected
clGetPlatformIDs(): CL_PLATFORM_NOT_FOUND_KHR

nvmlDeviceGetFanSpeed(): Not Supported

CUDA API (CUDA 11.4)
====================
* Device #1: Tesla V100-SXM2-32GB, 32204/32510 MB, 80MCU

Minimum password length supported by kernel: 0
Maximum password length supported by kernel: 256

Hashfile 'hash.txt' on line 1 (1): Signature unmatched
No hashes loaded.

Started: Wed Mar 22 20:38:07 2023
Stopped: Wed Mar 22 20:38:08 2023

I think maybe test.zip file is not PKZIP (Mixed Multi-File), so I tried -m 17220, 17200, 17225, 17230, 17210, 20500, 20510, 23001, 23002, 23003, 13600

But all of them doesn't work.

What can I do to fix it?
Reply


Messages In This Thread
Signature unmatched No hashed loaded. - by boulevard - 03-22-2023, 02:46 PM