python-ssdeep¶
This is a straightforward Python wrapper for ssdeep by Jesse Kornblum, which is a library for computing context triggered piecewise hashes (CTPH). Also called fuzzy hashes, CTPH can match inputs that have homologies. Such inputs have sequences of identical bytes in the same order, although bytes in between these sequences may be different in both content and length.
You can install python-ssdeep
with pip
:
$ pip install ssdeep
See Installation for more information.
Contents:
Installation¶
Requirements¶
- Python
- Python 2.6, 2.7
- Python >= 3.2
- PyPy >= 2.0
- ssdeep/libfuzzy >= 2.10 (Some features might not be available with older versions. See
ssdeep.Hash
) - cffi
- pip
- six
Install on CentOS 7¶
Python 2¶
Use included ssdeep lib
Install required packages.
$ sudo yum groupinstall "Development Tools"
$ sudo yum install epel-release
$ sudo yum install libffi-devel python-devel python-pip automake autoconf libtool
Build and install Python module.
$ sudo BUILD_LIB=1 pip install ssdeep
Use lib from epel
Install required packages.
$ sudo yum groupinstall "Development Tools"
$ sudo yum install epel-release
$ sudo yum install libffi-devel python-devel python-pip ssdeep-devel ssdeep-libs
Build and install Python module.
$ sudo pip install ssdeep
Install on Debian 7¶
Python 2¶
Use included ssdeep lib
Install required packages.
$ sudo apt-get install build-essential libffi-dev python python-dev python-pip automake autoconf libtool
Build and install Python module.
$ sudo BUILD_LIB=1 pip install ssdeep
Python 3¶
Use included ssdeep lib
Install required packages.
$ sudo apt-get install build-essential libffi-dev python3 python3-dev python3-pip automake autoconf libtool
Build and install Python module.
$ sudo BUILD_LIB=1 pip install ssdeep
Install on Debian 8/9¶
Python 2¶
Use included ssdeep lib
Install required packages.
$ sudo apt-get install build-essential libffi-dev python python-dev python-pip automake autoconf libtool
Build and install Python module.
$ sudo BUILD_LIB=1 pip install ssdeep
Use ssdeep from Debian repository
Install required packages.
$ sudo apt-get install build-essential libffi-dev python python-dev python-pip libfuzzy-dev
Build and install Python module.
$ sudo pip install ssdeep
Python 3¶
Use included ssdeep lib
Install required packages.
$ sudo apt-get install build-essential libffi-dev python3 python3-dev python3-pip automake autoconf libtool
Build and install Python module.
$ sudo BUILD_LIB=1 pip3 install ssdeep
Use ssdeep from Debian repository
Install required packages.
$ sudo apt-get install build-essential libffi-dev python3 python3-dev python3-pip libfuzzy-dev
Build and install Python module.
$ sudo pip3 install ssdeep
Install on Ubuntu 12.04¶
Python 2¶
Use included ssdeep lib
Install required packages.
$ sudo apt-get install build-essential libffi-dev python python-dev python-pip automake autoconf libtool
Build and install Python module.
$ sudo BUILD_LIB=1 pip install ssdeep
Python 3¶
Use included ssdeep lib
Install required packages.
$ sudo apt-get install build-essential libffi-dev python3 python3-dev python3-setuptools automake autoconf libtool
Build and install Python module.
$ sudo easy_install3 pip
$ sudo BUILD_LIB=1 pip3 install ssdeep
Install on Ubuntu 14.04¶
Python 2¶
Use included ssdeep lib
Install required packages.
$ sudo apt-get install build-essential libffi-dev python python-dev python-pip automake autoconf libtool
Build and install Python module.
$ sudo BUILD_LIB=1 pip install ssdeep
Python 3¶
Use included ssdeep lib
Install required packages.
$ sudo apt-get install build-essential libffi-dev python3 python3-dev python3-pip automake autoconf libtool
Build and install Python module.
$ sudo BUILD_LIB=1 pip3 install ssdeep
Install on Ubuntu 16.04¶
Python 2¶
Use lib from official Ubuntu repository (recommended)
Install required packages.
$ sudo apt-get install build-essential libffi-dev python python-dev python-pip libfuzzy-dev
Build and install Python module.
$ pip install ssdeep
Use included ssdeep lib
Install required packages.
$ sudo apt-get install build-essential libffi-dev python python-dev python-pip automake autoconf libtool
Build and install Python module.
$ BUILD_LIB=1 pip install ssdeep
Python 3¶
Use lib from official Ubuntu repository (recommended)
Install required packages.
$ sudo apt-get install build-essential libffi-dev python3 python3-dev python3-pip libfuzzy-dev
Build and install Python module.
$ pip3 install ssdeep
Use included ssdeep lib
Install required packages.
$ sudo apt-get install build-essential libffi-dev python3 python3-dev python3-pip automake autoconf libtool
Build and install Python module.
$ BUILD_LIB=1 pip3 install ssdeep
Install on Fedora 27¶
Python 2¶
Use lib from Fedora repository
Install required packages.
$ sudo dnf groupinstall "Development Tools"
$ sudo dnf install libffi-devel python-devel python-pip ssdeep-devel ssdeep-libs
Build and install Python module.
$ sudo pip install ssdeep
Python 3¶
Use lib from Fedora repository
Install required packages.
$ sudo dnf groupinstall "Development Tools"
$ sudo dnf install libffi-devel python3-devel python3-pip ssdeep-devel ssdeep-libs
Build and install Python module.
$ sudo pip3 install ssdeep
Usage¶
Import the required module.
>>> import ssdeep
Use the ssdeep.hash()
function to compute a fuzzy hash.
>>> hash1 = ssdeep.hash('Also called fuzzy hashes, Ctph can match inputs that have homologies.')
>>> hash1
'3:AXGBicFlgVNhBGcL6wCrFQEv:AXGHsNhxLsr2C'
>>> hash2 = ssdeep.hash('Also called fuzzy hashes, CTPH can match inputs that have homologies.')
>>> hash2
'3:AXGBicFlIHBGcL6wCrFQEv:AXGH6xLsr2C'
The ssdeep.compare()
function returns the match score of two hashes. The score is an integer value from 0 (no match) to 100.
>>> ssdeep.compare(hash1, hash2)
22
The ssdeep.hash_from_file()
function accepts a filename as argument and calculates the hash of the contents of the file.
>>> ssdeep.hash_from_file('/etc/resolv.conf')
'3:S3yE29cFrrMOoiECAaHJgvn:S3m+COoiUCuvn'
The ssdeep.Hash
class provides a hashlib like interface.
>>> h = ssdeep.Hash()
>>> h.update('Also called fuzzy hashes, ')
>>> h.digest()
'3:AXGBicFlF:AXGHR'
>>> h.update('Ctph can match inputs that have homologies.')
>>> h.digest()
'3:AXGBicFlgVNhBGcL6wCrFQEv:AXGHsNhxLsr2C'
FAQ¶
If comparing two hashes the result is always 0
The result depends on the algorithms in the ssdeep library. There are some issues if the length of provided data is too short or if the algorithm could not find enough patterns.
The following example must not return the expected value.
>>> hash1 = ssdeep.hash('foo' * 4096)
>>> hash2 = ssdeep.hash('foo' * 4096)
>>> ssdeep.compare(hash1, hash2)
0
Contributing¶
First of all, thank you for your interest in contributing to this project!
Filing bug reports¶
Bug reports are very welcome. Please file them on the GitHub issue tracker. Good bug reports come with extensive descriptions of the error and how to reproduce it. Try to use the provided issue template, it should be displayed by the GitHub website when creating a new issue.
Patches¶
All patches should be submitted in the form of pull requests to the main repository, DinoTools/python-ssdeep. These pull requests should satisfy the following properties:
Code¶
- A pull request should focus on one particular improvement or change.
- Create different pull requests for unrelated features or bugfixes.
- Python code should follow PEP 8, especially in the “do what code around you does” sense.
- Add test if possible
Documentation¶
When introducing new functionality, please remember to write documentation.
First time setup¶
- Download and install the latest version of git
- Configure git with your username and email
$ git config user.name 'Your Name'
$ git config user.email 'your.email@example.org'
- Make sure you have a GitHub account
- Fork DinoTools/python-ssdeep to your GitHub account by using the Fork button
- Clone the main repository locally
$ git clone https://github.com/DinoTools/python-ssdeep.git
$ cd python-ssdeep
- Add your fork as a remote to push your work to. Replace <username> with your username.
$ git remote add fork https://github.com/<username>/python-ssdeep
- Install pre-commit by using a virtualenv.
$ python3 -m venv venv_git
$ source venv_git/bin/activate
$ pip install pre-commit
- Install pre-commit hooks.
$ pre-commit install
Review¶
Finally, pull requests must be reviewed before merging. Everyone can perform reviews; this is a very valuable way to contribute, and is highly encouraged.
Changelog¶
3.4.1 (2021-12-13)¶
- Add internal build improvements
- Update CI pipelines
3.4 (2019-10-01)¶
- Update documentation
- Replace Jenkins and Travis CI with Drone CI
- Add new copy() function to Hash() and PseudoHash() class
- Add new attributes to Hash() and PseudoHash() class * name * block_size
3.3 (2018-01-10)¶
- Update ssdeep lib to 2.14.1
- Fix issues with Travis CI
- Add additional CI test with Python 3.6
- Build docs during CI builds
- Remove deprecated PKGBUILD
3.2 (2016-11-27)¶
- Update ssdeep lib to 2.13(thanks to Charles Lindsay)
- Update install instructions
- Add additional CI tests on CentOS 7, Debian 8 and Ubuntu 14.04/16.04
3.1.1 (2014-12-20)¶
- Updated ssdeep lib to 2.12
- Added additional tests
- Fixed build issues on Windows(thanks to Paul Chaignon)
- Added option to run tests with PyPy3
- Fixed build to prevent automake version missmatch errors
- Updated documentation
3.1 (2014-08-07)¶
- Fix build issue with ssdeep < 2.10
3.0 (2014-06-25)¶
- Completely rewritten to use CFFI
- Interface in the spirit of hashlib
- Use pytest and tox for tests
- Use installed fuzzy lib by default
2.9-0.3 (2013-03-12)¶
- Fix build issue with Python 2.6
2.9-0.2 (2012-10-11)¶
- Fixing small bug in setup.py
2.9-0.1 (2012-08-01)¶
- Updated ssdeep from 2.5 to 2.9
- Added Python 3.x support
2.5 (2010-09-03)¶
- Initial release
History¶
- The initial version was published in 2010 by Denis Bilenko on bitbucket.
- Since 2012 the source is maintained by PhiBo (DinoTools) and has been published on github.
- In 2014 the wrapper has been rewritten to use cffi.