Go to file
huihun 96971fd0a7 Merge branch 'master' into detached
# Conflicts:
#	Genius3/raw-feature-extractor/convert_pkl_to_json.py
#	Genius3/raw-feature-extractor/preprocessing_ida.py
2024-03-03 16:59:09 +08:00
.idea 批量化操作 2024-03-01 16:11:26 +08:00
Genius3 Merge branch 'master' into detached 2024-03-03 16:59:09 +08:00
README.md Update README.md 2021-11-19 21:15:15 +08:00

Forked from qian-feng/Gencoding. Genius3 is my pycharm project.


This project provides two components of Genius, a graph-based bug search framework. The first component is the raw feature extraction. The second is the online bug search engine.

  1. The raw feature extraction is designed to achieve following two goals:

    -> Extract the control flow graph for each binary function

    -> Extract the attributes for each node in the grap

    The feature extraction is built on top of IDA-pro. We wrote the scripts based on ida-python and extract the attributed control flow graph. ``preprocessing_ida.py'' is the main program to extract the ACFG.

  2. The online bug search engine is used for real-time search:

    -> It utilized localality sensitive hashing for indexing

    -> Nearest-neighbor search algorithm for search

    The online search is based on nearpy (https://github.com/pixelogik/NearPy).