MohamadMansouri / funcDiffEval

Evaluating function diffing existing techniques

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FuncDiffEval

This project aims to evaluate different existing function diffing techniques. It was created as a a semester prokect in Eurecom engineering school and was supported by Talos team.

You can find the slides about the project here

Contributions are thankfully appreciated :)

The DB:

The database was built from source codes that were compiled for different archs and platforms with different compilers, compiler versions and compiler flags. The compiled source codes are:

  • Mirai: A botnet malware that was first seen in the summer of 2016
  • unrar: A program used for compressing and decompressing files
  • libclamav: An antivirus authored by Talos team

Also a modified version of the mirai source code was compiled after making four modification to 15 function of the source code. The 15 function was chosen where 5 are of small size, 5 are of medium size and 5 are of large size. The four types of modifications are:

  • 0 : change a const
  • 1 : add a check
  • 2 : remove one line
  • 3 : negate if condition

Function names are extracted using objdump tool (for ELF binaries) and pdbdump (for PE binaries). They are used to match functions across different versions of the compiled binaries.

generate_indices.py is a python code that create symbol files for each binary in the ELF and PE directories. The symbol files contain the address and name of each funtion in the binaries. Then it create DB files from each pair of functions found in the symbol files.

The symbol files and database files are found in the db directory. More information about the db are found in the slides

Function Diffing Techniques:

Until this point we evaluated 4 available tools:

  1. Fcatalog
  2. Machoke
  3. idenLib
  4. nmt4binaries

Results

Results are stored in the results directory in csv format. The interpretation of the results is explained in the slides

About

Evaluating function diffing existing techniques


Languages

Language:Max 99.6%Language:C 0.3%Language:Python 0.1%Language:Shell 0.0%Language:Makefile 0.0%