Crc32 | Hashcat
hashcat -m 22100 -a 1 -b 4 crc32_hash.txt
If hashcat finds a match, it will display the cracked password:
$HEX[e.g. samplep]
CRC32 (Cyclic Redundancy Check 32) is a checksum algorithm that produces a 32-bit hash value from a variable-length input. It's commonly used for data integrity and error detection in computer networks and storage systems.
1 hash: 1 cracked, 0 failed, 0 rejected, 0 restored, 0 skipped hashcat crc32
$ hashcat -m 22100 crc32_hash.txt hashcat v6.2.1 (commit 2efeec2) OpenCL API: 1.2 OpenCL Platform: NVIDIA CUDA OpenCL Device: GeForce GTX 1080 Ti
* Device #1: GeForce GTX 1080 Ti, 11178/11178 MB allocatable, 14MCU hashcat -m 22100 -a 1 -b 4 crc32_hash
Keep in mind that cracking CRC32 hashes is relatively easy due to the algorithm's design. If you're trying to crack a password, consider using more secure password storage mechanisms, such as bcrypt, scrypt, or Argon2.