RegRipper is an open source forensic software application used for Windows Registry data extraction.
2.8K
RegRipper is a fantastic DFIR tool for analysis Microsoft Windows registry hives.
This Docker image aims to make its installation and use very smooth, on any system.
It is best to declare a shell function inside your favorite shell (.bashrc or .zshrc) to make it easy to use:
function regripper () {
docker run -it --rm --user=$(id -u):$(id -g) -v $(pwd):/hive:ro phocean/regripper $@
}
Then, you can simply use it as follows:
➤ regripper -r /hive/NTUSER.DAT -p filehistory
You can build the image locally with:
docker build -t phocean/regripper .
Content type
Image
Digest
Size
42.4 MB
Last updated
about 5 years ago
docker pull phocean/regripper