Jump to content

Fuzzy hashing

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Maslen (talk | contribs) at 04:41, 13 December 2022. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Fuzzy hashing, also known as similarity hashing[1], is a technique for detecting data that is similar, but not exactly the same, as other data. This is in contrast to cryptographic hash functions, which are designed to have significantly different hashes for even minor differences. Fuzzy hashing has been used to identify malware and has potential for other applications, like data loss prevention.[2]

Background

A hash function is a mathematical algorithm which maps arbitrary-sized data to a fixed size output[3]. Many solutions use cryptographic hash functions like SHA-256 to detect duplicates or check for known files within large collection of files[4]. However, cryptographic hash functions cannot be used for determining if a file is similar to a known file, because one of the requirements of a cryptographic hash function is that a small change to the input should change the hash value so extensively that the new hash value appears uncorrelated with the old hash value (avalanche effect)[5].

Fuzzy hashing exists to solve this problem of detecting data that is similar, but not exactly the same, as other data. Fuzzy hashing algorithms specifically use algorithms in which two similar inputs will generate two similar hash values. This property is the exact opposite of the avalanche effect desired in cryptographic hash functions.

Fuzzy hashing can also be used to detect when one object is contained within another.[1]

Approaches for fuzzy hashing

There are a few approaches used for building fuzzy hash algorithms:[6]

  • Context Triggered Piecewise Hashing (CTPH), which constructs a hash by splitting the input into multiple pieces, calculating traditional hashes for each piece, and then combining those traditional hashes into a single string.
  • Locality Sensitive Hashing places similar input items into the same "buckets", which can be used for data clustering and nearest neighbor searches

Notable fuzzy hashing tools and algorithms

  • spamsum is a tool written by Andrew Tridgell that uses fuzzy hashing to determine whether an email is similar to known spam. It operates by generating a fuzzy hash for an email that it compares against the fuzzy hashes from known spam emails to generate a match result between 0 (complete mismatch) to 100 (perfect match). If the match result is high enough, the email is classified as spam.[7] [8]
  • Nilsimsa Hash is an anti-spam focused locality-sensitive hashing algorithm.
  • ssdeep is a fuzzy hashing tool based on context-piecewise triggered hashing to compare binary data.
  • sdhash is a fuzzy hashing tool based on using bloom filters to determine whether one binary file is contained within another or how similar two binary files are to each other.
  • TLSH

ssdeep Concept of Operation

ssdeep operates by splitting the file into separate pieces, and calculating a hash for each piece. Those piecewise hashes are then combined to create a single hash value that can be compared to other hash values to compute the distance between them. The lower the distance, the more similar the files are to each other.


Reread:

Applications

Fuzzy Hashing has applications for the following scenarios:


See also

References

  1. ^ a b "NIST Special Publication 800-168" (PDF). NIST.gov. Retrieved June 30, 2022.
  2. ^ Kornblum, Jesse (2006). "Identifying almost identical files using context triggered piecewise hashing". Digital Investigation. 3, Supplement (September 2006): 91–97. doi:10.1016/j.diin.2006.06.015. Retrieved June 30, 2022.
  3. ^ Schueffel, Patrick; Groeneweg, Nikolaj; Baldegger, Rico (2019). The Crypto Encyclopdia - Coins, tokens and digital assets from A to Z. Bern, Fribourg: Growth Publisher / HEG Fribourg. p. 27. ISBN 978-2-940384-47-1.
  4. ^ Kornblum, Jesse (2006). "Identifying almost identical files using context triggered piecewise hashing". Digital Investigation. 3, Supplement (September 2006): 91–97. doi:10.1016/j.diin.2006.06.015. Retrieved June 30, 2022.
  5. ^ Al-Kuwari, Saif; Davenport, James H.; Bradford, Russell J. (2011). "Cryptographic Hash Functions: Recent Design Trends and Security Notions". Cryptology ePrint Archive. Report 2011/565.
  6. ^ Jonathan Oliver; et al. (2021). "Designing the Elements of a Fuzzy Hashing Scheme" (PDF). Archived (PDF) from the original on 14 April 2021. Retrieved 14 April 2021.
  7. ^ "spamsum README". samba.org. Retrieved December 11, 2022.
  8. ^ "spamsum.c". samba.org. Retrieved December 11, 2022.
Cite error: A list-defined reference named "sdhash" is not used in the content (see the help page).