A context preserving IOC extraction library
Project description
Multidecoder
Multidecoder is a python library and command line tool for extracting indicators of compromise (IOCs) from a file. Multidecoder preserves the context of where and how an IOC is found to allow automated detection of patterns of obfuscation. Multidecoder is currently in beta, and uses semantic versioning to indicate compatability between releases.
Indicators of compromise extracted by Multidecoder:
- network IOCS: urls, domains, emails, ip addressses
- executable filenames
- embedded PowerShell
- embedded PE files
- a customizable set of keywords
Deobfuscations and decodings supported:
- base64 encoding
- hexadecimal encoding
- string concatenation
- powershell escape characters
Installing
Multidecoder can be installed from pypi using pip:
pip install -U multidecoder
Alternatly, it can also be installed from the repository:
pip install -U https://github.com/CybercentreCanada/Multidecoder/archive/main.zip
To test the latest development version, install from the dev branch:
pip install -U https://github.com/CybercenterCanada/Multidecoder/archive/dev.zip
Command Line
After being installed Multidecoder can be run on a file from the command-line
> multidecoder file
which will output a list of indicators found. Indicators are printed one per line, with a string representation of the context of the indicator followed by the indicator.
The raw json result can be output with the --json
flag
> multidecoder --json file
if no filename is given multidecoder takes its standard input as the file to be scanned.
Python library
Multidecoder can be used as a python library through the Multidecoder class, which can scan data to give a dictionary tree similar to the command-line json output.
from multidecoder.multidecoder import Multidecoder
md = Multidecoder()
context_tree = md.scan(data)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file multidecoder-1.6.1.tar.gz
.
File metadata
- Download URL: multidecoder-1.6.1.tar.gz
- Upload date:
- Size: 96.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e57239494489ffd34dba52de2450bb74705f87da6d21413b34e9de4d0165459 |
|
MD5 | 245bc847936750a46f7f75413a2c0152 |
|
BLAKE2b-256 | f79a236ffc8706b56b395f7cca245308f7b695df90092315eae9e440a76da18a |
File details
Details for the file multidecoder-1.6.1-py3-none-any.whl
.
File metadata
- Download URL: multidecoder-1.6.1-py3-none-any.whl
- Upload date:
- Size: 111.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 658020ce56b6b9c8d506a5df33890eaf7e7e80f960bbc2b3167552268e90bf0e |
|
MD5 | 2663a91d4d537fa7abbe43531e0d7200 |
|
BLAKE2b-256 | 234af5bd2a1583d569a540d3ce59b563c77a431a184a5e96fc0552a1e1c57308 |