Detects and extracts obfuscated, embedded content from files.
Project description
Malcarve
Detects and extracts obfuscated, embedded content from files.
Overview
Malcarve is a tool for detecting and extracting obfuscated, embedded content from files. In particular it is targeted at extracting malicious payloads such as those contained in malware attack documents and droppers.
This version of malcarve has been adapted from https://github.com/shendo/malcarve. Some functionality has been simplified and improved, while other functionality has been removed.
Installation
Malcarve requires gcc to compile its components written in C:
sudo apt install gcc
Note that only linux x86_64 is supported.
Install using pip:
pip install malcarve-cbl
If installed in editable mode, the C compilation script will need to be manually called:
./malcarve-cbl/malcarve_cbl/ext/build.sh
pip install -e malcarve-cbl
Usage
Binary data can be checked for embedded and/or encrypted data via carve_buffer():
from malcarve_cbl.malcarve_cbl import FoundFormat, carve_buffer
data: bytes = b"abYWJjWVdKakVmTG4wTjZBNlB1RWxwcGxaVTVLU1RzNlRSTVM1N2pRMmRlNDk0eUIwRzEzQ1ZZNExEY1hHT1NP"
found_formats: list[FoundFormat] = carve_buffer(data)
print(found_formats[0].content.decode())
print(found_formats[0].encoding_info.encoding_offsets_string)
print(found_formats[0].encoding_info.keyed_encoding_string)
Output:
https://exampleurl.com/this/is/an/example
base64(0x0-0x56)->base64(0x2-0x41)->xor(0x6-0x2f)
xor(key:0x79, bytes:1, increment:13)
In this case, malcarve found an url which had been xor'd, then base64 encoded twice. the xor was identified as being a 2 byte incrementing xor where every time a set of 2 bytes were encoded, the key incremented by 13. The starting key was 0x79.
Dependency management
Dependencies are managed in the pyproject.toml and debian.txt file.
Version pinning is achieved using the uv.lock file.
Because the uv.lock file is configured to use a private UV registry, external developers using UV will need to delete the existing uv.lock file and update the project configuration to point to the publicly available PyPI registry instead.
To add new dependencies it's recommended to use uv with the command uv add <new-package>
or for a dev package uv add --dev <new-dev-package>
The tool used for linting and managing styling is ruff and it is configured via pyproject.toml
The debian.txt file manages the debian dependencies that need to be installed on development systems and docker images.
Sometimes the debian.txt file is insufficient and in this case the Dockerfile may need to be modified directly to install complex dependencies.
Acknowledgements
This repository was based off of https://github.com/shendo/malcarve
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file malcarve_cbl-11.0.11.tar.gz.
File metadata
- Download URL: malcarve_cbl-11.0.11.tar.gz
- Upload date:
- Size: 135.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fa32ec764a0b700d2eb75805de73ad4b347f77a15326e747bb6073e6eef4e56
|
|
| MD5 |
9883ebbdcb871d194ae1a36f8f297251
|
|
| BLAKE2b-256 |
770812c18bd1dd73670d41cec3e8fd8b8e0eceb2e90d3c59dac5800a875977e4
|
File details
Details for the file malcarve_cbl-11.0.11-py3-none-any.whl.
File metadata
- Download URL: malcarve_cbl-11.0.11-py3-none-any.whl
- Upload date:
- Size: 42.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
911705bb2b4612c9ad2724bcbd5069d27d26ec0595bddfcc651a414555bdb0c6
|
|
| MD5 |
9748f736a85e43e211c2c32729a5fb4b
|
|
| BLAKE2b-256 |
81cf169e20c4259c78c6403a1a075cd5e2c90d41088e91bdbffe4ebc0610e615
|