Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
asclepius — Asclepius validates backup integrity by restoring files and actively testing their recoverability. Instead of trusting metadata, it attempts to parse real file formats (documents, images, archives, configs) to confirm backups can actually be read. | Kitploit
Tools/GitHubGitHub/matank001/asclepius
Vulnerability AnalysisForensicsData RecoveryMalware AnalysisUtilities & Frameworks
GitHubmatank001/asclepius

asclepius

Asclepius validates backup integrity by restoring files and actively testing their recoverability. Instead of trusting metadata, it attempts to parse real file formats (documents, images, archives, configs) to confirm backups can actually be read.

View Repository
1148 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Asclepius

Asclepius Logo

Asclepius validates backup integrity by restoring files and actively testing their recoverability. Instead of trusting metadata, it attempts to parse real file formats (documents, images, videos, archives, emails) to confirm backups can actually be read and are safe to use.

Installation

root@kitploit:~
git clone https://github.com/matank001/asclepius
cd asclepius
uv sync

Additional Dependencies

FFmpeg (for video validation)

root@kitploit:~
# macOS
brew install ffmpeg

# Ubuntu/Debian
sudo apt install ffmpeg

# Arch Linux
sudo pacman -S ffmpeg

Usage

Single File Validation

root@kitploit:~
uv run asclepius -f /path/to/file.pdf

Directory Validation

root@kitploit:~
# Validate all files in directory
uv run asclepius -d /path/to/backups

# Randomly sample N files from directory
uv run asclepius -d /path/to/backups --rand-sample 100

Restic Integration

Unlike restic check which verifies repository structure and data integrity, Asclepius performs functional validation by restoring snapshots and testing if files are actually readable and parseable.

Repository Check Only

Runs metadata checks to verify repository integrity:

root@kitploit:~
uv run asclepius --restic-repo /path/to/repo --restic-passwd your-password

Restore & Validate All Snapshots

Restores each snapshot to a temporary directory and validates all files:

root@kitploit:~
# Validate all files in all snapshots
uv run asclepius --restic-repo /path/to/repo --restic-passwd your-password --recover

# Validate random 100 files from each snapshot (faster for large backups)
uv run asclepius --restic-repo /path/to/repo --restic-passwd your-password --recover --rand-sample 100

Restore & Validate Specific Snapshot

Restores and validates a single snapshot by ID:

root@kitploit:~
# Validate all files in specific snapshot
uv run asclepius --restic-repo /path/to/repo --restic-passwd your-password --recover --snapshot ab4eb95a

# Validate random 50 files from specific snapshot
uv run asclepius --restic-repo /path/to/repo --restic-passwd your-password --recover --snapshot ab4eb95a --rand-sample 50

Validators

  • Documents (PDF, DOCX, PPTX, etc.) - MarkItDown parsing + entropy analysis
  • Images (JPEG, PNG, GIF, etc.) - PIL structural verification
  • Videos (MP4, AVI, MKV, etc.) - FFprobe corruption detection
  • Archives (ZIP, TAR) - Integrity check + recursive content validation
  • Emails (EML) - Parse validation + header verification
  • Malware (All formats) - YARA rule scanning

Configuration

Validators are configured in validators.yaml. Each validator specifies supported MIME types, file extensions, and validation settings.

YARA Rules Setup

The YARA validator scans all files for malware signatures. To enable it:

  1. Clone a YARA rules repository or add your own rules:
root@kitploit:~
git clone [email protected]:embee-research/Yara-detection-rules.git
  1. Configure the path in validators.yaml:
root@kitploit:~
settings:
  yara_rules_path: "Yara-detection-rules"

If YARA rules are not found or fail to compile, the validator will skip scanning with a single warning at startup.

License

MIT License - see LICENSE for details.

Download Tool