SlopScupper
00 crowd

PhoinixDR

Open-source data recovery for everyone.
Open repo on GitHubgithub.com/pcoronaf/PhoinixDR
Rust · ★ 32 · 1 forks · Apache-2.0 · paperwork by the Cap'mmostly ai (inferred)light human (inferred)works-on-my-machine (inferred)other
listed 8 hours ago by pcoronaf · last checked 10 minutes ago
The owner didn't write this. This repo never submitted itself. The Cap'm found it on a truffle trawl and wrote its paperwork from what GitHub already shows. Picked by hand by the Cap'm on 2026-09-11: an open-source data recovery engine, CLI and desktop app for NTFS, FAT, exFAT and ext drives, whose docs declare "Yes, PHOINIX is vibecoded". 32 stars; Apache-2.0 license. The owner did not submit this. Votes count; awards don't until the owner claims it.

I'm not calling your project slop! Geeze, it's a joke... Do you own this repo?

Log in with GitHub as pcoronaf. There's no account to make: SlopScupper only asks GitHub who you are (read:user), never sees your code, and keeps just your id, login and avatar. Then you can:

  • Keep it, on your terms. Commit your own slopscore.md (spec) and press Refresh. Your paperwork replaces the Cap'm's, and you can submit it for Slop of the Day.
  • Take it down. One click on Remove. It stays gone; the trawl never brings it back.

Log in with GitHub

Can't log in as the owner? Request a takedown. No login needed, and a trawled listing comes down right away.

GitHub says
Open-source data recovery for everyone.
created
2026-09-04 · pushed 6 days ago · 37 commits · 2 contributors
release
v0.1.4 · 2026-09-06
languages
Rust 86%TypeScript 6%Python 3%HTML 2%Shell 1%CSS 1%
paperwork
code of conductcode of conduct filecontributinglicensereadme 85% health
dependencies
no dependency graph (no manifest, or disabled) · OSV.dev, checked 8 hours ago

Disclosures, inferred by the Cap'm

slopbucket
vibe-coded
category
other
ai_generated
mostly
human_touch
light
status
works-on-my-machine
language (detected)
csshtmljavascriptpythonrustshelltypescript
license (detected)
apache-2.0

The Cap'm's log

The Cap'm wrote this paperwork, not the owner. This repo never submitted itself to SlopScore. The Cap'm picked it by hand: an open-source data recovery engine, CLI and desktop app for NTFS, FAT, exFAT and ext drives, whose docs declare "Yes, PHOINIX is vibecoded". It carries the Apache-2.0 license. The disclosures above are his best guess from what GitHub shows.

Is this yours? Commit a real slopscore.md and press Refresh to replace this, or remove the listing in one click. There's no account to make: you log in with GitHub.

README — the repo's own words, folded up so the grading fits on one screen

PhoinixDR — Lost data lives again

Open Source Data Recovery · by @pcoronaf
Lost data lives again. Recover lost files. Understand your chances.

Download for Windows · Other platforms · Website · Documentation · User guide · Changelog · Documentación en español

PhoinixDR (PHOINIX Data Recovery) is a data-recovery engine, command-line tool and desktop application that reconstructs lost data from filesystems, raw media, disk images and damaged storage structures while explaining how likely each recovered object is to be intact.

Select source → Scan → Find lost data → Assess recoverability → Preview → Recover

Status: early engineering preview. The repository implements milestones M0–M11 of the technical specification: the read-only block layer, MBR/GPT discovery, native NTFS, FAT12/16/32, exFAT and ext2/3/4 readers with undelete (journal-assisted on ext3/ext4), deep scan (signature carving of unallocated space), lost-partition recovery (virtual mounts, no table writes), forensic and virtual-disk image containers (E01, split E01, split RAW, VHD, VHDX, VMDK) with hash verification and exportable recovery reports, evidence-based recovery health, a verified recovery writer, the phoinix CLI and a desktop application (Tauri 2 + React) with sessions, previews and recovery.

About the project

  • Where PHOINIX Came From: why a complete, modern recovery platform rather than another utility or a front-end for TestDisk, and why no code is copied from existing projects.
  • Development Declaration: how AI-assisted development is used, and why that is never taken as evidence of correctness.
  • Yes, PHOINIX is vibecoded: Vibecode the implementation. Engineer the system. Verify the result.

Download and run

The standard Windows release is a single portable executable: no installation, no separately installed dependencies, only the WebView2 runtime that ships with Windows 10 (21H2+) and Windows 11 (requirement REL-001). Get PhoinixDR-<version>-windows-x64-portable.exe from the latest release together with the command-line phoinix.exe, the Linux tarball and SHA256SUMS.txt. There are two ways to recover: run PhoinixDR as administrator and recover straight from the disk or USB stick, or image the device first with an imaging tool and open the image in PhoinixDR, which then needs no elevation. See getting started.

Principles

  • Read-only by default. The block abstraction has no write primitive. No crate in the recovery core can modify source media.
  • Recovery methods stay independent. Undelete, carving, filesystem reconstruction and partition reconstruction produce different evidence and different confidence.
  • Filesystem knowledge lives in filesystem crates. NTFS rules never leak into generic recovery logic.
  • Every score is explainable. Recovery likelihood and assessment confidence are separate numbers, and each is traceable to concrete evidence.
  • The core is independent of any GUI. The same engine drives the CLI, tests, and the desktop application.
  • Third-party libraries sit behind adapters.

See docs/architecture/overview.md, the architectural decision records, the NTFS reader notes, the FAT/exFAT engine notes, the ext2/3/4 engine notes, the deep scan / carving notes, the lost-partition recovery notes, the image container notes, the desktop architecture, the health model, the undelete corpora, the real-hardware test procedure and the FAQ.

Repository layout

apps/phoinix-cli        command-line application
apps/desktop            desktop application: Tauri 2 shell (src-tauri) + React/TypeScript front-end
crates/phoinix-core     identifiers, byte ranges, checked arithmetic, byte parsing helpers, CRC-32C
crates/phoinix-block    read-only BlockReader, RAW images, subrange views, fingerprints
crates/phoinix-device   physical device enumeration and read-only access (Linux, Windows)
crates/phoinix-image    image containers (EWF/E01, split RAW, VHD, VHDX, VMDK) and hash verification
crates/phoinix-volume   MBR / extended MBR / GPT discovery and partition views
crates/phoinix-fs       filesystem-neutral contracts: probes, recovery candidates
crates/phoinix-fs-ntfs  native NTFS reader and undelete engine
crates/phoinix-fs-fat   native FAT12/16/32 reader and undelete engine
crates/phoinix-fs-exfat native exFAT reader and undelete engine
crates/phoinix-fs-ext   native ext2/3/4 reader, jbd2 journal reader and undelete engine
crates/phoinix-health   recovery evidence model, scoring and explanations
crates/phoinix-carve    deep scan: signature carving with structural assembly
crates/phoinix-recovery recovery writer with destination safety, SHA-256 verification and reports
crates/phoinix-partition-recovery  lost-partition search: boot sectors and superblocks, virtual mounts
crates/phoinix-session  application service layer: scans with progress, sessions, recovery, previews
tests/fixtures          compressed disk-image fixtures with ground-truth manifests
tests/generated         scripts that build the fixtures deterministically
tests/integration       end-to-end tests across crates
docs/                   guides, architecture, filesystem notes, decision records
site/                   the project website (GitHub Pages); docs are rendered into it
assets/                 logo

Building

PhoinixDR is a standard Cargo workspace on stable Rust (edition 2024).

cargo build --release
cargo test --workspace

Desktop application

cd apps/desktop
npm ci
npm run tauri dev                                     # development window
npx tauri build --no-bundle                           # single portable executable (src-tauri/target/release)
npm run tauri build                                   # the same plus optional installers under src-tauri/target/release/bundle

Linux needs the WebKitGTK development packages first (libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev). Scanning physical disks requires an elevated process; disk images do not. See docs/desktop/architecture.md and the desktop guide.

Using the CLI

# Enumerate physical block devices (may require elevated privileges).
phoinix devices

# Identify partition table, filesystems and image container of a source.
phoinix inspect disk.img
phoinix inspect case.E01 --json

# Verify an image's stored hashes (E01) or document its hashes.
phoinix verify case.E01

# Native NTFS reader.
phoinix ntfs info volume.img
phoinix ntfs ls volume.img
phoinix ntfs record volume.img 5
phoinix ntfs extract volume.img --record 64 --output file.bin

# Undelete: list deleted candidates with recovery health.
phoinix scan disk.img --deleted

# Deep scan: also carve files by signature from the unallocated space
# (--carve-all for the whole volume; works on raw sources without a filesystem).
phoinix scan disk.img --deep
phoinix scan disk.img --deep --carve-types jpeg,pdf,docx

# Lost partitions: find volumes by their structures, then scan one virtually.
phoinix partitions disk.img
phoinix scan disk.img --lost 2
phoinix recover disk.img --lost 2 64 --output /mnt/recovery

# Explain the evidence behind a candidate's score (carved files are c<offset>).
phoinix explain disk.img 64
phoinix explain disk.img c1048576

# Recover candidates to another filesystem and verify by SHA-256.
phoinix recover disk.img 64 65 c1048576 --output /mnt/recovery --preserve-tree

# Recover with a report (.html, .md or .json) and case metadata.
phoinix recover case.E01 64 --output /mnt/recovery --report /mnt/recovery/report.html \
    --case-number 2026-017 --examiner "J. Doe" --verify-source

Example scan output on the test corpus:

ID   NAME                 SIZE      RECOVERY         CONF  PATH
68   tiny.txt             20 B      Excellent 97     82    \a\tiny.txt
77   photo.jpg            61.6 KiB  Excellent 95     97    \docs\photo.jpg
83   realloc_25.bin       256 KiB   Poor 59          82    \d\realloc_25.bin
87   wiped.jpg            61.6 KiB  Very poor 20     82    \g\wiped.jpg
96   document.txt         2.0 KiB   Very good 92     82    \?\document.txt
122  frag10.bin           640 KiB   Very good 87     82    \c\frag10.bin

explain lists the evidence behind each figure, for example "16 of 64 required clusters are currently allocated to active filesystem data" or "The JPEG image structure validates successfully".

scan, explain and recover detect the volume's filesystem (NTFS, FAT12/16/32, exFAT or ext2/3/4) and use the matching engine. Every command accepts a forensic or virtual-disk image (E01 and split E01, split RAW, VHD, VHDX, VMDK) in place of a RAW image. When a source contains a partition table they operate on the first supported partition by default; pass --partition N to choose another, or point them at a bare volume image. The command-line guide covers every option.

Safety

PhoinixDR never writes to the source. Recovery always targets another filesystem, and the recovery writer refuses destinations that appear to live on the source device. See SECURITY.md for the threat model and how to report vulnerabilities.

Disclaimer

PhoinixDR is provided “as is” and is used entirely at your own risk. Data recovery is inherently uncertain, and improper use may result in permanent data loss or damage. Always work from a copy or disk image when possible and recover files to a different storage device. See docs/disclaimer.md.

Community

Issues · Discussions · Contributing · Code of conduct · Security policy

License

SPDX-License-Identifier: MIT OR Apache-2.0

Licensed under either of

at your option. The Apache licence supplies the patent grant; the MIT licence keeps compatibility with projects that prefer a minimal permissive licence. Optional adapters for third-party libraries (for example The Sleuth Kit or libewf) may carry different terms and are reviewed dependency by dependency before any binary that includes them is released.

Read the rest on GitHub

Scan report · 2026-09-11
  • Prohibited terms or links
  • Repository eligibility
  • slopscore.md paperwork
  • Content policy
  • Risk review

0 comments

log in to comment.

report this listinglog in to report