PicBlocks
An experimental project using position-independent code hashing over basic blocks for code similarity estimation.
Usage
Both module files in ./picblocks and in ./utils are runnable and contain examples of their usage:
$ python -m picblocks.blockhasher <target_binary_path>- produces ablock-reportfor a single binary.$ python -m picblocks.blockhashmatcher <block_reports_path>- creates a new./db/picblocksdb.jsonfrom theblock-reportslocated in<block_reports_path>$ python -m picblocks.blockhashmatcher <block_reports_path> <target_binary_path>- matches a binary against data stored in./db/picblocksdb.jsonif it exists, or otherwise creates./db/picblocksdb.jsonfrom theblock-reportslocated in<block_reports_path>$ python -m utils.import_picblocksdb_to_mongoassumes some mongodb configurations (please check inside the file to adapt to yours) it merely takes the json generated DB into a most easy to manage (and query) mongodb.$ python -m utils.make_statsit assumes a mongodb connection (please check inside the file to adapt to yours), the generated json db intodb/picblocksdb.json(you can change it directly in the relative varible) and the generated blocks report into./block-reports/folder. It builds up some statistics about detections and DB composition. The results would be available in a dedicated (and very simple) stats web ui. Without MongoDB it writesdb/stats.jsoninstead.
Creating a Database
The script hash_malpedia.py is an example of how to process a collection of binaries into ./block-reports, which will then be aggreated into a ./db/picblocksdb.json.
Database Evaulation
In oder to quantify and to measure the quality of your detection rate you should check some basic informations about tests run against your db.
The simple (and preliminary) script named make_stats.py would build up some initial stats for you about detection rates.
It assumes to have a mongodb connection, the generated json db into db/picblocksdb.json (you can change it directly in the relative varible) and the generated blocks reports into ./block-reports/ folder (you can change it directly on the specified variable).
Once you run it, it takes every single block report and check it against the json database.
It build some stats and saves all the matching results into db.
A dedicated web page (and a relative API) is built to show the detection rates and some more interesting statistics on your database.
Running as a Service
If a ./db/picblocksdb.json exists, you can run
$ python app.py
to spawn a local demo server (http://127.0.0.1:9001) to query against.
Screenshots
Just few screenshots about the initial stage of web user interface
The submit form. Once you have a given database (./db/picblocksdb.json) you can check matching from samples by submitting your samples from
this form.
If the submitted sample gets some matches against the given database you should see a block similarity matrix (still under development for a better visualization)
Finally the matching database statistics generated by the script into utils/make_stats.py which takes all the generated block_reports (block-reports/) and check them against the generated databases (./db/picblocksdb.json) in order to estimate the detection rate on a given database.
Contributors
Scores changed in v2.1.0
Up to v2.0.1 the matcher credited a family once per distinct block hash, while
block_bytes - the denominator every percentage is divided by - counts every block
occurrence. A block shared by ten functions therefore contributed its size ten times to
the denominator and once to the numerator, so all four percentages read too low. They now
credit once per matching function, and reported percentages go up accordingly. Measured
over a database built from the Malpedia block reports, matching a sample that is itself in
the database moved from 87.6-99.0% to 98.2-99.4%.
Match reports produced by older versions are not comparable with new ones.
A known residual gap keeps that self-match just under 100%: a report stores the function
ids a block was seen in as a set, so the same hash occurring twice inside one function
counts twice in block_bytes but once when scoring. Over the Malpedia block reports this
is ~2.4% of block_bytes. Closing it would change the block report format.
Version History
- 2026-09-13: v2.1.0 - architecture-aware PIC escaping (SMDA >= 4.2.13, AArch64/CIL/Dalvik as well as Intel), corrected matcher scoring (see above), dump/baseaddress routing, report/UI fixes, and a test suite
- 2023-11-24: v2.0.1 - SMDA pinned to 1.12.7 before our bigger fix for PIC calculation
- 2022-09-08: v2.0.0 - (BREAKING CHANGE) now intraprocedural control flow transfers are wildcarded by default, which should improve matching
- 2022-08-04: v1.1.3 - extended format for blockhash representation of functions
- 2021-10-01: v1.1.1 - added script to check detection rates and relative web interface page
- 2021-09-28: v1.1.0 - added simple web user interface and a db connection
- 2021-09-12: v1.0.6 - added submission form fields for bitness and base address to force overrides for those values.
- 2021-08-24: v1.0.5 - improved parsing of bitness from submission filenames.
- 2021-08-20: v1.0.4 - Tweaked result visualization, now showing all unique matches beyond the first 20.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file picblocks-2.1.0.tar.gz.
File metadata
- Download URL: picblocks-2.1.0.tar.gz
- Upload date:
- Size: 24.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88a19f43a73d3a106001fc4a8bfbb4d0fad8fad3559f2265cd2a068afd8e8c9f
|
|
| MD5 |
0086f638cd89e215fc6f8c93575e718c
|
|
| BLAKE2b-256 |
0a5bd6fb2c9c0455e7be48638ee891e681fd6fd383212dd8db118652b08ea98d
|
File details
Details for the file picblocks-2.1.0-py3-none-any.whl.
File metadata
- Download URL: picblocks-2.1.0-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6dedf5723e54cb80f95382a84582618eb100f8459af988e63bf4308c41c28efe
|
|
| MD5 |
a8c466bf06633d74a4c2a47a1936c81c
|
|
| BLAKE2b-256 |
a3618680ac53f26d823bce046f5d0ab45473f41912d12b03110a3ad9dbf18633
|