Gencoding_Ke/README.md

13 lines
682 B
Markdown
Raw Normal View History

2016-09-15 09:54:41 +08:00
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 graph
2016-12-17 08:34:29 +08:00
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.
2016-09-15 09:54:41 +08:00
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
2016-12-17 08:34:29 +08:00