Skip to main content

Project for identifying executables that have command-line options that can be obfuscated, possibly bypassing detection rules.

Project description

Windows Command-Line Obfuscation

Background

analyse_obfuscation is a python3 module for finding common command-line obfuscation techniques for a given program, as described in this blog post.

By providing one or more commands, analyse_obfuscation will test if the following obfuscation techniques can be applied:

  1. Option Char substitution

    e.g. ping -n 1 localhost == ping /n 1 localhost

  2. Character substitution

    e.g. reg eˣport HKCU out.reg == reg export HKCU out.reg

  3. Character insertion

    e.g. wevtutil gࢯli (…) == wevtutil gli (…)

  4. Quotes insertion

    e.g. netsh ad"vfi"rewall show (…) == netsh advfirewall show (…)

  5. Shorthands

    e.g. powershell /encod (…) == powershell /encodedcommand (…)

Goals

Note that the goal of this project is to show that a given executable/command line can be obfuscated, not to give a complete list of possible obfuscations for a given command. It should however be possible to derive different obfuscation opportunities from analyse_obfuscation's output.

Blue teamers 🔵 may want to use this tool, for example, to check if an executable they have written a detection rule is vulnerable to command-line obfuscation, meaning the rule should be improved or additional rules are needed. Note that in some cases this game is unwinnable - please take a look at the recommendations in the blog post for suggestions on how to tackle this.

Red teamers 🔴 may want to use this tool to find opportunities for bypassing simple detection rules.

Usage

Run

The simplest way to use this project is by running it (without installation).

  • Run script: clone the entire repository, install all dependencies (pip3 install -r requirements.txt) and run via:
    python3 -m analyse_obfuscation.run --help
    

Install

By installing the project, it will be possible to simply call analyse_obfuscation from the command line.

  • Via PyPI: install the application via for example pip:
    pip3 install analyse_obfuscation
    
  • From source: you can install a local version of the module by cloning the entire repository, followed by these commands:
    (note that this requires setuptools to be installed)
    python3 setup.py sdist bdist_wheel
    pip3 install dist/analyse_obfuscation-*-py3-none-any.whl --upgrade
    

Examples

Screenshot Sample execution output of analyse_obfuscation

Each execution generates a high-level result overview on the stdout, as can be seen in the screenshot. Additionally a .log file providing examples of commands found to be working is created. Sample report files generated by the below commands can be found in the sample_results/ folder.

# Check simple 'ping' command
analyse_obfuscation --command "ping /n 1 localhost"

# Check 'net share' command using {random}, which will be replaced by random string for each execution
analyse_obfuscation --command "net share x=c:\ /remark:{random}"

# Check 'powershell /encodedcommand' command with increased timeout, as executions tend to take long
analyse_obfuscation --command "powershell /encodedcommand ZQBjAGgAbwAgACIAQAB3AGkAZQB0AHoAZQAiAA==" --timeout 5

# Check 'systeminfo' command by only looking at the exit code, not the output - since every output will be different due to (changing) timestamps
analyse_obfuscation --command "systeminfo /s localhost" --timeout 5 --exit_code_only

# Check all commands as specified in sample.json, saving all reports in 'reports/'
analyse_obfuscation --json_file sample/sample.json --report_dir reports/

Note that the results may contain false positives - especially when single-character command-line options are being tested (such as /n in ping /n 1 localhost). In such cases, character insertion (method 3) may contain whitespace characters, which doesn't really 'count' as insertion character as whitespaces between command-line arguments are usually filtered out anyway. Similarly, character substitution (method 2) may change the entire option: e.g. ping /s 1 localhost and ping /r 1 localhost are functionally different, but happen to give the same output.

All options

All command-line options of this project can be requested by using the --help option:

usage: analyse_obfuscation [--threads n] [--verbose] [--report_dir c:\path\to\dir] [--log_file c:\path\to\file.log] [--help] [--command "proc /arg1 /arg2"] [--range {full,educated,ascii,custom}] [--custom_range 0x??..0x?? [0x??..0x?? ...]] [--char_offset n] [--post_command process_name] [--exit_code_only] [--timeout n] [--json_file c:\path\to\file.jsonl]

Tool for identifying executables that have command-line options that can be obfuscated.

required arguments (either is required):
  --command "proc /arg1 /arg2"
                        Single command to test
  --json_file c:\path\to\file.jsonl
                        Path to JSON file (JSON Line formatted) containing commands config

optional --command arguments:
  --range {full,educated,ascii,custom}
                        Character range to scan (default=educated)
  --custom_range 0x??..0x?? [0x??..0x?? ...]
                        Range to scan
  --char_offset n       Character position used for insertion and replacement
  --post_command process_name
                        Command to run unconditionally after each attempt (e.g. to clean up)
  --exit_code_only      Only base success on the exit code (and not the output of the command)
  --timeout n           Number of seconds per execution before timing out.

optional arguments:
  --threads n           Number of threads to use
  --verbose             Increase output verbosity
  --report_dir c:\path\to\dir
                        Path to save report files to
  --log_file c:\path\to\file.log
                        Path to save log to
  --help                Show this help message and exit

Repository Contents

Item Description
analyse_obfuscation/ Code for python3 module, enabling one to analyse executables for common command-line obfuscation techniques.
sample/ Sample config file to analyse built-in Windows executables, as well as related input files. Used to generate results in the above folder.
sample_results/ Report files generated using the JSONL file in the above sample folder.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

analyse_obfuscation-1.1.0.tar.gz (26.2 kB view details)

Uploaded Source

Built Distribution

analyse_obfuscation-1.1.0-py3-none-any.whl (26.0 kB view details)

Uploaded Python 3

File details

Details for the file analyse_obfuscation-1.1.0.tar.gz.

File metadata

  • Download URL: analyse_obfuscation-1.1.0.tar.gz
  • Upload date:
  • Size: 26.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for analyse_obfuscation-1.1.0.tar.gz
Algorithm Hash digest
SHA256 9ddb4aebabe46ea0c5dd34243288d14e739edd76d3ce20cb76443c7afc6ce43c
MD5 ec29f4573190b39dffb7aebf3d3ee45e
BLAKE2b-256 4f3deb74380aec1abb66c942a8990b877a6341fb6bd519148e51c22667f0b01f

See more details on using hashes here.

File details

Details for the file analyse_obfuscation-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for analyse_obfuscation-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 009a404c83f5df7b0c1f5107d4fcac70a2283e29dbf73012539817fe363eaa7c
MD5 daa9ee851df49d986f69e0a0b1bcef6a
BLAKE2b-256 7c361c82619200dcacf0c97c2823c96711904452fac69bb028088f8a173e43eb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page