Skip to content

Latest commit

 

History

History
67 lines (51 loc) · 2.5 KB

README.md

File metadata and controls

67 lines (51 loc) · 2.5 KB

Quark Engine Detection Rules Auto-Generation Python 3.8 License: GPL v3

The Idea of Detection Rules Generation

  1. We generate rules with native API used in the APK file. So first, we will find each native API used in the APK.

  2. We find and create all combinations of the native API pair (one rule).

  3. We test every native API pair and see if those behavior got caught in the APK.

  4. If we find 100% confidence for one behavior (one detection rule), we insert this rule into database.

MongoDB Setup

We store and manage rules with MongoDB, so we need to setup database before generating detection rules for quark engine.

Here are three ways to install MongoDB.

  1. Install with Docker
$ docker pull mongo:4.2
$ docker run -d -p 27017:27017 -v data/db --name mongodb \
      -e MONGO_INITDB_ROOT_USERNAME=root \
      -e MONGO_INITDB_ROOT_PASSWORD=pass \
      mongo:4.2
  1. Install to local environment We provide a setup script to install database in your local environment.
$ sudo bash scripts/setup_db.sh
  1. Or you can follow the MongoDB official installation MongoDB Install to setup manually.

Install Scripts for Rule Generation

$ git clone https://github.com/quark-engine/quark-rule-generate.git; cd quark-rule-generate/
$ pipenv install --skip-lock
$ pipenv shell
$ git submodule init
$ git submodule update --remote; cd quark-engine/
$ python setup.py install; cd ..

Generate Detection Rules

A simple way to generate rules with an APK.

$ python start.py -a <apk-path>

However, the speed of generate progress will be very slow if the APK sample size is large, so we provide an option to generate rules with multiprocessing, here is the example.

Be Aware it probably will cost a lots of memory.

$ python start.py -a <apk-path> --multiprocess 3 # Using three processes to work

Export rules to JSON file

Since Quark-Engine is using JSON file to analyze APK, here is a way to export rules from database into JSON file.

$ python start.py -a <apk-path> --export <output-path>

See how it works!

asciicast