reg2es
A command-line tool and Python library for extracting forensic artifacts from Windows NT Registry (REGF) hives and importing them into Elasticsearch.
The original plugin set is based on
airbus-cert/regrippy; the package
also includes reg2es-specific additions. The project also draws inspiration
from RegRipper. reg2es runs
standalone and does not require the regrippy package at runtime. Both
reg2es and reg2json use the same plugin runner and emit the same
ECS-oriented documents.
Usage
reg2es can be used as a standalone command-line tool or integrated directly into your Python scripts.
reg2es SYSTEM SOFTWARE SAM
reg2json NTUSER.DAT -o artifacts.json
from reg2es import reg2es
reg2es(["SYSTEM", "SOFTWARE", "SAM"])
Arguments
Multiple inputs passed in one invocation form one registry dataset. This lets
plugins such as localgroups enrich SAM results using SOFTWARE data, regardless
of the order of input paths.
reg2es SAM SOFTWARE
reg2es can recursively process all registry files under a specified directory:
tree .
regfiles/
├── NTUSER.DAT
├── NTUSER.MAN
├── SAM
└── subdirectory/
├── SOFTWARE
└── subsubdirectory/
├── SYSTEM
└── UsrClass.dat
reg2es /regfiles/ # Recursively collects hives as one dataset.
Directory scans process REGF hive files only. Registry transaction logs and unrelated files are not treated as standalone hives.
Common options
--plugin NAME: run one plugin; repeat to select several. By default, compatible, default-enabled plugins run. The exhaustiveregtimeplugin is opt-in.--list-plugins: print the 41 bundled plugins and exit.--size N: set the generation and indexing chunk size (default: 500).--tags tag1,tag2: add tags to every document.--quiet: suppress progress output.
reg2es also accepts Elasticsearch connection options including
--host, --port, --index, --scheme, --pipeline, --login, --pwd,
--ca-certs, and --no-verify-certs. TLS verification is enabled by default;
use --ca-certs /path/to/ca.pem for a private CA bundle. Run reg2es --help
or reg2json --help for the full current interface.
Examples
When using from the command line:
reg2es SYSTEM --plugin services --host localhost --index registry-artifacts
When using from a Python script:
reg2es(
["SYSTEM", "SOFTWARE"],
host="localhost",
index="registry-artifacts",
plugin_names=["services", "systeminfo"],
additional_tags=["host-01", "case-42"],
)
With Elasticsearch authentication:
reg2es SYSTEM --login elastic --pwd '******'
Appendix
reg2json
reg2es also includes reg2json, a command-line tool for converting Windows NT Registry into JSON files. 🍣 🍣 🍣
reg2json NTUSER.DAT --plugin userassist -o artifacts.json
reg2json also supports line-delimited output. --format jsonl (or ndjson)
writes one record per line without holding the entire dataset in memory. When
no output path is specified, the default extension is .jsonl:
reg2json NTUSER.DAT --plugin userassist --format jsonl -o artifacts.jsonl
Use --split to write one file per plugin. With --split, -o names the
output directory:
reg2json collected-hives/ --split -o artifacts/
The exhaustive regtime timeline is excluded from the default plugin set
because it emits one record for every registry key. Run it explicitly when
needed:
reg2json collected-hives/ --plugin regtime -o regtime.json
You can also convert registry files directly into a Python list[dict]:
from reg2es import reg2json
result: list[dict] = reg2json(
["SOFTWARE", "SAM"],
plugin_names=["localgroups"],
additional_tags=["host-01"],
)
Output Format Example
Each plugin result becomes one document. Standard event,
registry, log.file, tags, and @timestamp fields describe the artifact.
Lossless plugin-specific data and the original offline-hive location are kept
under reg2es.
When a plugin has a reliable artifact time, it uses that time for @timestamp.
Otherwise it uses the registry key's LastWrite; if no valid time exists,
@timestamp is omitted. Check reg2es.timestamp.source and
reg2es.timestamp.meaning before treating a result as an activity time.
Original values and fallback reasons remain in the document.
The current ECS output changes registry.data.bytes from a byte count to
Base64, uses REG_* names in registry.data.type, and includes the value
name in registry.path. Existing Elasticsearch mappings may conflict with
these fields; use a new index for the updated output.
{
"@timestamp": "2015-10-30T07:24:57.814133+00:00",
"event": {
"kind": "event",
"category": ["registry"],
"type": ["info"],
"action": "compname"
},
"registry": {
"hive": "HKLM",
"key": "SYSTEM\\ControlSet001\\Control\\ComputerName\\ComputerName",
"path": "HKLM\\SYSTEM\\ControlSet001\\Control\\ComputerName\\ComputerName\\ComputerName",
"value": "ComputerName",
"data": {
"type": "REG_SZ",
"strings": ["DESKTOP-EXAMPLE"]
}
},
"log": {
"file": {"path": "/evidence/SYSTEM"}
},
"tags": ["registry", "host-01"],
"reg2es": {
"plugin": {"name": "compname"},
"source": {
"hive": "SYSTEM",
"key_path": "ROOT\\ControlSet001\\Control\\ComputerName\\ComputerName"
},
"value_data": "DESKTOP-EXAMPLE",
"value_type": "RegSZ"
}
}
Installation
From PyPI
$ pip install reg2es
With uv
$ uv add reg2es
From GitHub Releases
Standalone binaries built with Nuitka are available from GitHub Releases for systems without a Python environment.
$ chmod +x ./reg2es
$ ./reg2es {{options...}}
> reg2es.exe {{options...}}
Contributing
The source code for reg2es is hosted on GitHub: https://github.com/sumeshi/reg2es. Please report issues and feature requests. 🍣 🍣 🍣
License
Standalone release ZIPs include LICENSES.txt with the project, bundled plugin,
runtime dependency and build Python license notices. Keep it with the executables
when redistributing them.
reg2es is released under the MIT License.
Third-Party Notices
This product includes code derived from regrippy v2.0.3 by Airbus CERT, licensed under Apache License 2.0. The included ShimCache parser carries the original copyright notice of Andrew Davis, Mandiant (2012). See the Apache 2.0 license text and the source-file notices.
Release files for reg2es 2.2.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| reg2es-2.2.2.tar.gz | 113.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| reg2es-2.2.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 196.6 kB
Release files / reg2es-2.2.2.tar.gz
| Download URL | reg2es-2.2.2.tar.gz |
|---|---|
| Size | 113.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d0cd227f647e39556b1842f3c7d2e10d8c10a1f12afd9dc60d1d8714ee2204a7
|
|
BLAKE2b-256 checksum How to use checksums |
6927b86efdde75eca29021f94744d4e769418ba4312099d1001da54646a136a8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / reg2es-2.2.2-py3-none-any.whl
| Download URL | reg2es-2.2.2-py3-none-any.whl |
|---|---|
| Size | 83.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
25356b9891adf3917a16f3b1d5f3096f3778d93f993549893b4f8694cda1ab40
|
|
BLAKE2b-256 checksum How to use checksums |
b8dc0e5c3479b07fc77ba18371e724187a5492ab0c7809ca35dd8d9506381dc9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|