SYS: ONLINE DOJ: MONITORING
OFFICIAL_SOURCES
Comprehensive source aggregation: DOJ, FBI, Congress, Courts, Community
PRIMARY OFFICIAL SOURCES
DOJ EPSTEIN LIBRARY OFFLINE
https://www.justice.gov/epstein

Primary source for all released Epstein files. 12 datasets, 1.38M+ files. All direct dataset URLs return 404 as of Feb 2026. Use Internet Archive mirror.

DOJ DISCLOSURES OFFLINE
https://www.justice.gov/epstein/doj-disclosures

Compliance tracking and disclosure documentation. URL returning 404. See archive.org mirror.

FBI VAULT FOIA ACTIVE
https://vault.fbi.gov/

Pre-release FOIA documents and FBI investigation files.

HOUSE OVERSIGHT COMMITTEE ACTIVE
https://oversight.house.gov/

Congressional investigations, subpoenas, and depositions. Active Epstein probe with scheduled depositions through March 2026.

WEXNER DEPOSITION VIDEO (5hr) OFFICIAL RELEASE 20K ESTATE DOCS 33K DOJ RECORDS
PACER FEDERAL COURTS REQUIRES ACCOUNT
https://pacer.uscourts.gov/

SDNY Maxwell trial records, Florida case files.

CONGRESSIONAL RECORD ACTIVE
congress.gov / public record

Rep. Khanna's floor speech naming six individuals, H.R. 4405 Epstein Files Transparency Act legislative record.

INTERNET ARCHIVE (MIRROR) ACTIVE
archive.org/details/epstein-doj-datasets-9-11-jan2026

Mirror of DOJ datasets 9-11, January 2026 release. Preserved against removal.

GOOGLE PINPOINT ACTIVE
journaliststudio.google.com/pinpoint/

AI-searchable database of Epstein documents. Journalist tool with full-text search.

FAA N-NUMBER REGISTRY ACTIVE
registry.faa.gov/AircraftInquiry/

Aircraft ownership verification. Key registrations: N908JE, N212JE, N120JE.

COMMUNITY TOOLS & ARCHIVES
RINGMAST4R / EPSTEIN GITHUB
github.com/Ringmast4r/Epstein

Flight map, network graph, DOJ monitoring. Base data for this platform.

ERIKVELAND / EPSTEIN-ARCHIVE GITHUB
github.com/ErikVeland/epstein-archive

86,000+ entities extracted, significance ratings applied per record.

EPSTEIN-DOCS GITHUB
github.com/epstein-docs/epstein-docs.github.io

OCR processed documents with searchable full text extraction.

EPSTEIN-FILE-EXPLORER GITHUB
github.com/Donnadieu/Epstein-File-Explorer

React-based document explorer with AI analysis features and entity linking.

EPSTEIN TEXT MESSAGES GITHUB
github.com/michelcrypt4d4mus/epstein_text_messages

Extracted and structured text message data from released files.

YUNG-MEGAFONE / EPSTEIN-FILES GITHUB
github.com/yung-megafone/Epstein-Files

Complete archive index with all download links. Bulk access preservation.

EPSTEIN'S BLACK BOOK SEARCHABLE
epsteinsblackbook.com/all-names

Searchable directory of 1,971 names from Ghislaine Maxwell's contact book.

KEY LEGISLATION
Epstein Files Transparency Act
H.R. 4405  |  Public Law 119-38
Introduced July 15, 2025
Sponsors Rep. Khanna (D-CA) & Rep. Massie (R-KY)
House Vote 427-1 — Nov 18, 2025
Senate Vote Unanimous — Nov 18, 2025
Signed Into Law Nov 19, 2025
DOJ Compliance Deadline Dec 19, 2025
Public Law Number 119-38
Bill Number H.R. 4405
DOJ DATASET DIRECTORY
# Description DOJ Files Indexed Coverage Status Archive
01 FBI 302s & Police Reports 3,158 3,142 99.5% OFFLINE
02 FBI Investigative Reports 574 577 100% OFFLINE
03 Prosecution Files 67 69 100% OFFLINE
04 Court Records & Motions 152 154 100% OFFLINE
05 Grand Jury Materials 120 122 100% OFFLINE
06 Supplemental Records 13 15 100% OFFLINE
07 Supplemental Files 17 19 100% OFFLINE
08 FBI Evidence Collection 10,595 11,036 100% OFFLINE
09 Emails & DOJ Internal 531,285 531,285 100% OFFLINE
10 Property Photos & Video 503,154 503,154 100% OFFLINE
11 Financial Records & Flights 331,659 331,659 100% OFFLINE
12 Supplemental Release 152 154 100% OFFLINE
TOTAL 1,380,946 1,380,234 100.0%
[i] "Indexed" = files catalogued and verified by this platform. DS 1-9, 11, 12 downloaded locally from archive mirrors with SHA-256 verification. DS 10 pending.
[i] All 1.38M files are browseable via the document viewer. DS 1-9, 11, 12 served from local archive; DS 10 via community mirrors.
[!] DOJ removed ALL direct file links ~Feb 11, 2026. All datasets archived via Internet Archive mirrors and community torrents. [GeekenDev mirror offline as of Feb 22]
[+] 877,756 PDFs OCR-processed via Tesseract 5.5.1 — 1,063 entities matched across 81,006 verified document-entity links.
MEDIA COVERAGE
BULK DOWNLOAD & TOOLS
RESEARCHER BULK ACCESS

The DOJ datasets total over 1.38 million files. Community-maintained URL manifests allow researchers to mirror the full corpus using standard download utilities. Use the commands below with the manifest files linked in this section.

[!] WARNING: Total corpus size is multiple terabytes. Ensure adequate disk space and bandwidth before initiating a full mirror. DOJ bulk ZIP downloads were disabled 2026-02-11 — individual file URLs via manifest remain accessible.
aria2c FASTEST — PARALLEL DOWNLOADS
# Install: apt install aria2 / brew install aria2
# Download manifest, then run:

aria2c \
  --input-file=dataset-1-urls.txt \
  --max-concurrent-downloads=16 \
  --split=4 \
  --min-split-size=1M \
  --continue=true \
  --dir=./epstein-dataset-1
wget STANDARD — RECURSIVE
# Download files listed in a manifest:

wget \
  --input-file=dataset-1-urls.txt \
  --continue \
  --tries=3 \
  --wait=1 \
  --directory-prefix=./epstein-dataset-1

# Resume interrupted downloads with -c flag
curl SINGLE FILE — SCRIPTED LOOP
# Loop over a manifest file:

mkdir -p ./epstein-dataset-1
while IFS= read -r url; do
  filename=$(basename "$url")
  curl -L -C - \
    --retry 3 \
    --output "./epstein-dataset-1/$filename" \
    "$url"
done < dataset-1-urls.txt
URL MANIFEST FILES

Ringmast4r maintains per-dataset URL lists covering all 12 DOJ releases. Feed these directly into aria2c or wget.

github.com/Ringmast4r/Epstein/tree/master/manifests/urls/ →
[i] One .txt file per dataset. Each line is a direct DOJ PDF URL.
INTERNET ARCHIVE MIRRORS

Datasets 9-11 (January 2026 release) are mirrored on the Internet Archive. Use as a fallback if DOJ links degrade or files are removed.

archive.org/details/epstein-doj-datasets-9-11-jan2026 →
[i] Archive.org also supports bulk download via their S3-like API and the internetarchive CLI tool.