Digler: A Powerful Tool for Forensic Disk Analysis and File Recovery
This repository profile is provided by osrepos.com, an open source repository discovery platform.
Summary
Digler is an open-source tool built in Go, designed for comprehensive forensic disk analysis and file recovery. It empowers users to unearth lost or deleted data from various disk images and raw devices. Offering both a powerful command-line interface and a user-friendly desktop application, Digler provides a flexible and efficient solution for digital forensics, leveraging a plugin-based architecture for extensibility.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
Digler is an open-source tool built in Go, designed for comprehensive forensic disk analysis and file recovery. It empowers users to unearth lost or deleted data from various disk images and raw devices. With both a powerful command-line interface and a user-friendly desktop application, Digler offers a flexible and efficient solution for digital forensics professionals and casual users alike, leveraging a plugin-based architecture for extensibility.
Why Use Digler
While many data recovery tools exist, few offer the combination of simplicity, flexibility, and modern design with deep disk analysis and effective file carving. Digler was created to fill this gap by providing a streamlined, plugin-extensible tool for data recovery that’s both powerful and easy to use. It offers both a command-line interface and a user-friendly desktop application, making it accessible for professionals and casual users alike. Whether you prefer the speed and scriptability of the CLI or the convenience of a visual interface, Digler adapts to your workflow without the complexity of heavyweight GUIs or fragmented tools. Built in Go, Digler leverages the language’s strengths in performance, cross-platform support, and maintainability to deliver a fast and dependable solution for today’s data recovery challenges.
Installation
Digler can be installed in a few straightforward ways.
From Source:
git clone https://github.com/ostafen/digler.git
cd digler
make build
From Precompiled Binaries:
Precompiled binaries for Linux, macOS, and Windows are available on the Releases page.
Examples
Digler follows a simple yet powerful workflow: scan first, recover later. This approach allows for thorough analysis before file extraction.
1. Scan a Disk Image or Device
digler scan dfrws-2006-challenge.raw
Or to scan an entire disk partition:
digler scan /dev/nvme0n1 # or C: on Windows
You can optionally specify a dump directory to recover files immediately during scanning:
digler scan <image_or_device> --dump <path/to/dump/dir>
2. Mount Scan Results as a Filesystem (Linux only)
digler mount dfrws-2006-challenge.raw report.xml --mountpoint /mnt/recover
This mounts a FUSE filesystem, enabling you to browse and access recovered files directly from the scan report.
3. Recover Files Based on Scan Report
digler recover dfrws-2006-challenge.raw report.xml --dir ./recover
Test Datasets:
To help you get started, here are some publicly available disk image datasets commonly used in digital forensics research:
- DFRWS 2006 Challenge
- Digital Corpora Repository
- NIST Computer Forensics Reference Data Sets (CFReDS)
Links
For more detailed information, contributions, or to report issues, please visit the official Digler GitHub repository.
Related repositories
Similar repositories that may be relevant next.
Gogcli: Google Workspace Management from Your Terminal
June 24, 2026
Gogcli is a powerful command-line interface for Google Workspace, allowing users to manage Gmail, Calendar, Drive, Docs, Sheets, and many other services directly from their terminal. It is designed for both interactive use and robust automation, providing predictable output, agent safety features, and support for multiple accounts.

PinchTab: High-Performance Browser Automation for AI Agents
June 21, 2026
PinchTab is a high-performance browser automation bridge and multi-instance orchestrator, designed to give AI agents direct control over Chrome. Built in Go, it offers advanced stealth injection, real-time dashboards, and token-efficient web interaction. It supports both headless and headed modes, enabling robust and secure automation workflows for various applications.

Multigres: Vitess Adaptation for Scalable Postgres Databases
June 3, 2026
Multigres is an innovative project that adapts Vitess for use with PostgreSQL, aiming to bring advanced sharding and scalability features to Postgres environments. Currently in early development, it offers a promising solution for managing large-scale Postgres deployments. Users can explore its capabilities and contribute to its growth.
mcp-grafana: An MCP Server for Seamless Grafana Integration
June 2, 2026
mcp-grafana is a Model Context Protocol (MCP) server designed to provide comprehensive access to your Grafana instance and its surrounding ecosystem. It enables powerful programmatic interaction with Grafana dashboards, datasources, alerting, and more, facilitating advanced automation and integration with AI assistants.
Source repository
Open the original repository on GitHub.