https://github.com/velocidex/registry_hunter
Hunt the windows Registry automatically using VQL
https://github.com/velocidex/registry_hunter
Last synced: 3 months ago
JSON representation
Hunt the windows Registry automatically using VQL
- Host: GitHub
- URL: https://github.com/velocidex/registry_hunter
- Owner: Velocidex
- License: mit
- Created: 2024-03-20T15:50:09.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-01T04:35:03.000Z (about 1 year ago)
- Last Synced: 2025-03-06T15:47:07.941Z (3 months ago)
- Language: Rebol
- Size: 3.09 MB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Registry Hunter
This repository aims to simplify the process of inspecting the
Registry for forensically relevant details.This project is inspired by the RECmd Batch files project
(https://github.com/EricZimmerman/RECmd/tree/master/BatchExamples)## How does it work?
This project maintains a set of `Rules` which are YAML files following
a simple format. This project implements a compiler which compiles
these rules into a VQL artifact that may be consumed by Velociraptor.The Rule file starts with the attibute Rules and contains a list of
rules:```
Rules:
- Author: Andrew Rathbun
Description: Prefetch Status
Category: System Info
Comment: 0 = Disabled, 1 = Application Prefetching Enabled, 2 = Boot Prefetching
Enabled, 3 = Application and Boot Prefetching Enabled
Glob: ControlSet00*\Control\Session Manager\Memory Management\PrefetchParameters\EnablePrefetcher
Root: HKEY_LOCAL_MACHINE\System
```* Author: This is the name of the author or the rule (optional)
* Description: The description will be shown in the generated artifact
output
* Category: The category will be shown in the generated artifact
output
* Comment: The comment will be shown in the generated artifact output
* Glob: The glob represents a search expression (See
https://docs.velociraptor.app/vql_reference/plugin/glob/ ) the will
search the registry under the Root key.
* Root: The is a root registry path. This can only be one of the
following values as described below