Detect Antivirus Scrubbing of SecLists Files

Security suites sometimes quarantine offensive payloads, shrinking SecLists silently.

Verification

git status
# or
find SecLists -type f | sort | sha256sum > inventory.txt

Compare inventories across machines:

sha256sum -c inventory.txt

Diagram

  flowchart LR
    A[SecLists install] --> B[Endpoint AV]
    B -->|quarantine| C[Missing files]
    C --> D[Integrity check]

Whitelist SecLists/ or move it to a controlled network segment to prevent tampering.