Posts: 9
Threads: 3
Joined: Jun 2021
hashcat -m 20800 -a 0 -w 3 -o result --optimized-kernel-enable --force 15.txt passwords/rockyou.txt
hashcat (v5.1.0) starting...
OpenCL Platform #1: The pocl project
====================================
* Device #1: pthread-Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz, 4096/9962 MB allocatable, 3MCU
Unknown hash-type '20800' selected.
why???
How to solve this problem?
Posts: 2,267
Threads: 16
Joined: Feb 2013
download the newest version of hashcat from
https://hashcat.net/
your version is outdated since years
Posts: 9
Threads: 3
Joined: Jun 2021
(08-05-2021, 02:05 PM)philsmd Wrote: download the newest version of hashcat from https://hashcat.net/
your version is outdated since years
i use:
apt-get install hashcat
how to install hashcat lasted version for debian 10 ?
Posts: 2,267
Threads: 16
Joined: Feb 2013
08-05-2021, 02:15 PM
(This post was last modified: 08-05-2021, 02:38 PM by philsmd.)
Code:
sudo apt-get uninstall hashcat
cd ~/Downloads/
wget https://hashcat.net/files/hashcat-6.2.3.7z
7z x hashcat-6.2.3.7z
cd hashcat-6.2.3/
./hashcat.bin -b
update: corrected hashcat.bin instead of only hashcat
Posts: 9
Threads: 3
Joined: Jun 2021
(08-05-2021, 02:15 PM)philsmd Wrote: Code:
sudo apt-get uninstall hashcat
cd ~/Downloads/
wget https://hashcat.net/files/hashcat-6.2.3.7z
7z x hashcat-6.2.3.7z
cd hashcat-6.2.3/
./hashcat -b
./hashcat -b
bash: ./hashcat: No such file or directory
Posts: 2,267
Threads: 16
Joined: Feb 2013
08-05-2021, 02:37 PM
(This post was last modified: 08-05-2021, 02:37 PM by philsmd.)
you are right. it's hashcat.bin instead:
correct script:
Code:
cd ~/Downloads/
wget https://hashcat.net/files/hashcat-6.2.3.7z
7z x hashcat-6.2.3.7z
cd hashcat-6.2.3/
./hashcat.bin -b
Posts: 9
Threads: 3
Joined: Jun 2021
(08-05-2021, 02:37 PM)philsmd Wrote: you are right. it's hashcat.bin instead:
correct script:
Code:
cd ~/Downloads/
wget https://hashcat.net/files/hashcat-6.2.3.7z
7z x hashcat-6.2.3.7z
cd hashcat-6.2.3/
./hashcat.bin -b
./hashcat.bin -b
hashcat (v6.2.3) starting in benchmark mode
Benchmarking uses hand-optimized kernel code by default.
You can use it in your cracking session by setting the -O option.
Note: Using optimized kernel code limits the maximum supported password length.
To disable the optimized kernel code in benchmark mode, use the -w option.
* Device #1: Outdated POCL OpenCL driver detected!
This OpenCL driver may fail kernel compilation or produce false negatives.
You can use --force to override, but do not report related errors.
No devices found/left.
Posts: 15
Threads: 1
Joined: Oct 2020
(08-05-2021, 02:42 PM)hashquestion Wrote: (08-05-2021, 02:37 PM)philsmd Wrote: you are right. it's hashcat.bin instead:
correct script:
Code:
cd ~/Downloads/
wget https://hashcat.net/files/hashcat-6.2.3.7z
7z x hashcat-6.2.3.7z
cd hashcat-6.2.3/
./hashcat.bin -b
./hashcat.bin -b
hashcat (v6.2.3) starting in benchmark mode
Benchmarking uses hand-optimized kernel code by default.
You can use it in your cracking session by setting the -O option.
Note: Using optimized kernel code limits the maximum supported password length.
To disable the optimized kernel code in benchmark mode, use the -w option.
* Device #1: Outdated POCL OpenCL driver detected!
This OpenCL driver may fail kernel compilation or produce false negatives.
You can use --force to override, but do not report related errors.
No devices found/left.
You are using POCL instead of the official intel drivers. Please try uninstalling your current drivers and reinstalling the drivers fromĀ
https://software.intel.com/content/www/u...pu-section
Posts: 9
Threads: 3
Joined: Jun 2021
08-05-2021, 03:52 PM
(This post was last modified: 08-05-2021, 03:52 PM by hashquestion.)
I installed driver intel.
But...
Posts: 15
Threads: 1
Joined: Oct 2020
08-05-2021, 04:24 PM
(This post was last modified: 08-05-2021, 04:26 PM by 0x69BE027C97.)
(08-05-2021, 03:52 PM)hashquestion Wrote: I installed driver intel.
But...
Have you tried
.
And rebooted the device?
Is this running in a VM?