Skip to content

Crack hashes or find collisions for hashes hashed with the fnv-1a algorithm without full brute force

License

Notifications You must be signed in to change notification settings

Nico-Posada/fnv-hash-cracking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fnv-hash-cracking

Crack hashes or find collisions for hashes hashed with the FNV-1a algorithm without full brute force

CREDITS

Huge thank you to ConnorM for his incredible writeup and writing the original python proof of concept of which this is based off of. He does some incredible work with cryptography and his writeups are worth a read.

Requirements

This project requires the following libraries:
- mpfr
- gmp
- fplll

NOTE: This project uses the fplll library which does not support Windows. If you are looking to use this on Windows, look into WSL.

Usage

Run the following commands to get started

git clone https://github.com/Nico-Posada/fnv-hash-cracking.git
cd fnv-hash-cracking

If you do not have the fplll library installed, run the following:

Ubuntu and Debian

sudo apt install fplll-tools

or if you want to build it from source (will probably be better optimized for your machine), run the following

chmod +x scripts/setup.sh
sudo scripts/setup.sh

Conda

conda install fplll

MacOS

brew install fplll

More information on compilation and installation specifics can be found in the fplll repository.

Examples

To find examples for different use cases, check out the examples directory for some files with basic examples.

Python Interface

For ease of use with python, check out the example here.

Tests and Benchmarks (WIP)

To compile and run the test script, run the following

make run-test

To compile and run the benchmark script, run the following

make run-benchmark

About

Crack hashes or find collisions for hashes hashed with the fnv-1a algorithm without full brute force

Resources

License

Stars

Watchers

Forks