-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Florian Roth
committed
Aug 14, 2017
1 parent
5645a37
commit dd90be5
Showing
1 changed file
with
59 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,88 +9,52 @@ | |
|
||
Yara Rule Generator | ||
by Florian Roth | ||
February 2017 | ||
Version 0.17.0 | ||
August 2017 | ||
Version 0.18.0 | ||
|
||
### What does yarGen do? | ||
|
||
yarGen is a generator for [YARA](https://github.com/plusvic/yara/) rules | ||
|
||
The main principle is the creation of yara rules from strings found in malware | ||
files while removing all strings that also appear in goodware files. Therefore | ||
yarGen includes a big goodware strings and opcode database as ZIP archives that | ||
have to be extracted before the first use. | ||
The main principle is the creation of yara rules from strings found in malware files while removing all strings that also appear in goodware files. Therefore yarGen includes a big goodware strings and opcode database as ZIP archives that have to be extracted before the first use. | ||
|
||
Since version 0.12.0 yarGen does not completely remove the goodware strings from | ||
the analysis process but includes them with a very low score depending on the | ||
number of occurences in goodware samples. The rules will be included if no | ||
Since version 0.12.0 yarGen does not completely remove the goodware strings from the analysis process but includes them with a very low score depending on the number of occurences in goodware samples. The rules will be included if no | ||
better strings can be found and marked with a comment /* Goodware rule */. | ||
Force yarGen to remvoe all goodware strings with --excludegood. Also | ||
since version 0.12.0 yarGen allows to place the "strings.xml" from | ||
[PEstudio](https://winitor.com/) in the program directory in order to apply the | ||
blacklist definition during the string analysis process. You'll get better | ||
results. | ||
|
||
Since version 0.14.0 it uses naive-bayes-classifier by Mustafa Atik and Nejdet | ||
Yucesoy in order to classify the string and detect useful words instead of | ||
compression/encryption garbage. | ||
|
||
Since version 0.15.0 yarGen supports opcode elements extracted from the | ||
.text sections of PE files. During database creation it splits the .text | ||
sections with the regex [\x00]{3,} and takes the first 16 bytes of each part | ||
to build an opcode database from goodware PE files. During rule creation on | ||
sample files it compares the goodware opcodes with the opcodes extracted from | ||
the malware samples and removes all opcodes that also appear in the goodware | ||
database. (there is no further magic in it yet - no XOR loop detection etc.) | ||
The option to activate opcode integration is '--opcodes'. | ||
|
||
Since version 0.16.0 yarGen supports the Binarly. Binarly is a "binary search | ||
engine" that can search arbitrary byte patterns through the contents of tens | ||
of millions of samples, instantly. It allows you to quickly get answers to | ||
questions like “What other files contain this code/string?” or “Can this | ||
code/string be found in clean applications or malware samples?”. This means | ||
that you can use Binarly to quickly verify the quality of your YARA strings. | ||
Furthermore, Binarly has a YARA file search functionality, which you can | ||
use to scan their entire collection (currently at 7.5+ Million PE files, 3.5M | ||
clean - over 6TB) with your rule in a less than a minute. | ||
For yarGen I integrated their [public API](https://github.com/binarlyhq/binarly-sdk). | ||
In order to be able to use it you just need an API key that you can get for | ||
free if you contact them at [email protected]. The option to activate binarly | ||
lookups is '--binarly'. | ||
|
||
Since version 0.17.0 yarGen allows creating multiple databases for | ||
opcodes and strings. You can now easily create a new database by using | ||
"-c" and an identifier "-i identifier" e.g. "office". It will then create two new | ||
database files named "good-strings-office.db" and "good-opcodes-office.db" | ||
that will be initialized during startup with the built-in databases. | ||
|
||
The rule generation process also tries to identify similarities between the | ||
files that get analyzed and then combines the strings to so called "super rules". | ||
Up to now the super rule generation does not remove the simple rule for the | ||
files that have been combined in a single super rule. This means that there | ||
is some redundancy when super rules are created. You can supress a simple rule | ||
for a file that was already covered by super rule by using --nosimple. | ||
Force yarGen to remvoe all goodware strings with --excludegood. Also since version 0.12.0 yarGen allows to place the "strings.xml" from [PEstudio](https://winitor.com/) in the program directory in order to apply the blacklist definition during the string analysis process. You'll get better results. | ||
|
||
Since version 0.14.0 it uses naive-bayes-classifier by Mustafa Atik and Nejdet Yucesoy in order to classify the string and detect useful words instead of compression/encryption garbage. | ||
|
||
Since version 0.15.0 yarGen supports opcode elements extracted from the `.text` sections of PE files. During database creation it splits the `.text` sections with the regex [\x00]{3,} and takes the first 16 bytes of each part | ||
to build an opcode database from goodware PE files. During rule creation on sample files it compares the goodware opcodes with the opcodes extracted from the malware samples and removes all opcodes that also appear in the goodware | ||
database. (there is no further magic in it yet - no XOR loop detection etc.) The option to activate opcode integration is '--opcodes'. | ||
|
||
Since version 0.17.0 yarGen allows creating multiple databases for opcodes and strings. You can now easily create a new database by using "-c" and an identifier "-i identifier" e.g. "office". It will then create two new | ||
database files named "good-strings-office.db" and "good-opcodes-office.db" that will be initialized during startup with the built-in databases. | ||
|
||
Since version 0.18.0 yarGen supports extra conditions that make use of the `pe` module. This includes [imphash](https://www.fireeye.com/blog/threat-research/2014/01/tracking-malware-import-hashing.html) values and the PE file's exports. We provide pre-generated imphash and export databases. | ||
|
||
The rule generation process also tries to identify similarities between the files that get analyzed and then combines the strings to so called **super rules**. The super rule generation does not remove the simple rule for the files that have been combined in a single super rule. This means that there is some redundancy when super rules are created. You can supress a simple rule for a file that was already covered by super rule by using --nosimple. | ||
|
||
### Installation | ||
|
||
1. Make sure you have at least 4GB of RAM on the machine you plan to use yarGen (6GB if opcodes are included in rule generation, use with --opcodes) | ||
1. Make sure you have at least 4GB of RAM on the machine you plan to use yarGen (8GB if opcodes are included in rule generation, use with --opcodes) | ||
2. Download the latest release from the "release" section | ||
3. Install all dependancies with ```sudo pip install scandir lxml naiveBayesClassifier pefile``` (@twpDone reported that in case of errors try ```sudo pip install pefile``` and ```sudo pip install scandir lxml naiveBayesClassifier```) | ||
4. Clone and install [Binarly-SDK](https://github.com/binarlyhq/binarly-sdk/) and install it with ```python ./setup.py install``` | ||
5. Run python ```yarGen.py --update``` to automatically download the built-in databases or download them manuall from [here](https://drive.google.com/drive/folders/0B2S_IOa0MiOHS0xmekR6VWRhZ28) and place them in a new './dbs' sub folder | ||
4. Run python ```yarGen.py --update``` to automatically download the built-in databases. The are saved into the './dbs' sub folder. (Download: 913 MB) | ||
6. See help with ```python yarGen.py --help``` for more information on the command line parameters | ||
|
||
### Memory Requirements | ||
Warning: yarGen pulls the whole goodstring database to memory and uses at least | ||
4 GB of memory for a few seconds - 6 GB if opcodes evaluation is used. | ||
|
||
I've already tried to migrate the database to sqlite but the numerous string | ||
comparisons and lookups made the analysis inacceptably slow. | ||
Warning: yarGen pulls the whole goodstring database to memory and uses at least 3 GB of memory for a few seconds - 6 GB if opcodes evaluation is activated (--opcodes). | ||
|
||
I've already tried to migrate the database to sqlite but the numerous string comparisons and lookups made the analysis painfully slow. | ||
|
||
# Multiple Database Support | ||
|
||
yarGen allows creating multiple databases for opcodes or strings. You can easily create a new database by using "-c" for new database creation and "-i identifier" to give the new database a unique identifier as e.g. "office". It will the create two new database files named "good-strings-office.db" and "good-opcodes-office.db" that will from then on be initialized during startup with the built-in databases. | ||
|
||
### Example | ||
|
||
Create a new strings and opcodes database from an Office 2013 program directory: | ||
``` | ||
yarGen.py -c --opcodes -i office -g /opt/packs/office2013 | ||
|
@@ -106,28 +70,18 @@ You can update the once created databases with the "-u" parameter | |
``` | ||
yarGen.py -u --opcodes -i office -g /opt/packs/office365 | ||
``` | ||
This would update the "office" databases with new strings extracted from files in the given directory. | ||
|
||
## Binarly | ||
|
||
In order to use the Binarly lookup, you need an API key placed in a file named | ||
```apikey.txt``` in the ```./config``` subfolder. | ||
|
||
Request an Binarly API key by mail to: [email protected] | ||
|
||
### Offline | ||
Feb 2017: The Binarly API service is currently offline. There will be a replacement in the near future which will then be supported by yarGen. | ||
This would update the "office" databases with new strings extracted from files in the given directory. | ||
|
||
## Command Line Parameters | ||
|
||
``` | ||
usage: yarGen.py [-h] [-m M] [-l min-size] [-z min-score] [-x high-scoring] | ||
usage: yarGen.py [-h] [-m M] [-y min-size] [-z min-score] [-x high-scoring] | ||
[-s max-size] [-rc maxstrings] [--excludegood] | ||
[-o output_rule_file] [-a author] [-r ref] [-p prefix] | ||
[--score] [--nosimple] [--nomagic] [--nofilesize] [-fm FM] | ||
[--globalrule] [--nosuper] [-g G] [-u] [-c] [-i I] [--nr] | ||
[--oe] [-fs size-in-MB] [--debug] [--opcodes] [-n opcode-num] | ||
[--binarly] | ||
[-o output_rule_file] [-a author] [-r ref] [-l lic] | ||
[-p prefix] [--score] [--nosimple] [--nomagic] [--nofilesize] | ||
[-fm FM] [--globalrule] [--nosuper] [--update] [-g G] [-u] | ||
[-c] [-i I] [--nr] [--oe] [-fs size-in-MB] [--noextras] | ||
[--debug] [--opcodes] [-n opcode-num] | ||
yarGen | ||
|
@@ -136,10 +90,10 @@ optional arguments: | |
Rule Creation: | ||
-m M Path to scan for malware | ||
-l min-size Minimum string length to consider (default=8) | ||
-y min-size Minimum string length to consider (default=8) | ||
-z min-score Minimum score to consider (default=5) | ||
-x high-scoring Score required to set string as 'highly specific | ||
string' (default: 30, +10 with binarly) | ||
string' (default: 30) | ||
-s max-size Maximum length to consider (default=128) | ||
-rc maxstrings Maximum number of strings per rule (default=20, | ||
intelligent filtering will be applied) | ||
|
@@ -149,6 +103,7 @@ Rule Output: | |
-o output_rule_file Output rule file | ||
-a author Author Name | ||
-r ref Reference | ||
-l lic License | ||
-p prefix Prefix for the rule description | ||
--score Show the string scores as comments in the rules | ||
--nosimple Skip simple rule creation for files included in super | ||
|
@@ -162,9 +117,12 @@ Rule Output: | |
various files | ||
Database Operations: | ||
--update Update the local strings and opcodes dbs from the | ||
online repository | ||
-g G Path to scan for goodware (dont use the database | ||
shipped with yaraGen) | ||
-u Update local standard goodware database (use with -g) | ||
-u Update local standard goodware database with a new | ||
analysis result (used with -g) | ||
-c Create new local goodware database (use with -g and | ||
optionally -i "identifier") | ||
-i I Specify an identifier for the newly created databases | ||
|
@@ -176,14 +134,14 @@ General Options: | |
--oe Only scan executable extensions EXE, DLL, ASP, JSP, | ||
PHP, BIN, INFECTED | ||
-fs size-in-MB Max file size in MB to analyze (default=10) | ||
--noextras Don't use extras like Imphash or PE header specifics | ||
--debug Debug output | ||
Other Features: | ||
--opcodes Do use the OpCode feature (use this if not enough high | ||
scoring strings can be found) | ||
-n opcode-num Number of opcodes to add if not enough high scoring | ||
string could be found (default=3) | ||
--binarly Use binarly to lookup string statistics | ||
``` | ||
|
||
## Best Practice | ||
|
@@ -240,14 +198,6 @@ In order to use only strings for your rules that match a certain minimum score u | |
|
||
```python yarGen.py --opcodes -a "Florian Roth" -r "http://goo.gl/c2qgFx" -m /opt/mal/case33 -o rules33.yar``` | ||
|
||
### Exclude all strings from Goodware samples | ||
|
||
```python yarGen.py --excludegood -m /opt/mal/case_441``` | ||
|
||
### Supress simple rule if alreay covered by a super rules | ||
|
||
```python yarGen.py --nosimple -m /opt/mal/case_441``` | ||
|
||
### Show debugging output | ||
|
||
```python yarGen.py --debug -m /opt/mal/case_441``` | ||
|
@@ -262,10 +212,27 @@ This will generate two new databases for strings and opcodes named: | |
|
||
The new databases will automatically be initialized during startup and are from then on used for rule generation. | ||
|
||
### Update a goodware strings database (append new strings to the old ones) | ||
### Update a goodware strings database (append new strings, opcodes, imphashes, exports to the old ones) | ||
|
||
```python yarGen.py -u -g /home/user/Downloads/office365 -i office``` | ||
|
||
### My Best Pratice Command Line | ||
|
||
```python yarGen.py --opcodes -a "Florian Roth" -r "Internal Reserahc" -m /opt/mal/apt_case_32 -o rules32.yar``` | ||
```python yarGen.py -a "Florian Roth" -r "Internal Research" -m /opt/mal/apt_case_32``` | ||
|
||
# db-lookup.py | ||
|
||
A tool named `db-lookup.py`, which was introduced with version 0.18.0 allows you to query the local databases in a simple command line interface. The interface takes an input value, which can be `string`, `export` or `imphash` value, detects the query type and then performs a lookup in the loaded databases. This allows you to query the yarGen databases with `string`, `export` and `imphash` values in order to check if this value appears in goodware that has been processed to generate the databases. | ||
|
||
This is a nice feature that helps you ta answer the following questions: | ||
|
||
* Does this string appear in goodware samples of my database? | ||
* Does this export name appear in goodware samples of my database? | ||
* Does a sample in my goodware database has this imphash? | ||
|
||
However, there are several drawbacks: | ||
|
||
* It does only match on the full string (no contains, no startswith, no endswith) | ||
* Opcode lookup is not supported (yet) | ||
|
||
I plan to release a new project named `Valknut` which extracts overlapping byte sequences from samples and creates searchable databases. This project will be the new backend API for yarGen allowing all kinds of queries, opcodes and string values, ascii and wide formatted. |