-
Notifications
You must be signed in to change notification settings - Fork 10
Quarantine
Chris edited this page Jul 14, 2026
·
1 revision
When a scan detects malware, Soterios moves the file to a local quarantine vault instead of leaving it in place.
- The file is read and hashed (SHA-256).
- Contents are obfuscated with a lightweight XOR transform to prevent accidental execution.
- The encrypted copy is stored in
%USERPROFILE%\.soterios-quarantine\. - A record is written to the local database (original path, hash, engine, threat name, reason).
- The original file is removed from its location.
Quarantine is not cryptographic encryption — it prevents double-click execution while keeping restore possible.
Open Quarantine from the sidebar. Each entry shows:
- Original file path
- Threat name and detection engine
- Quarantine date
- File hash
- Select the entry in the Quarantine list.
- Click Restore.
- Soterios decrypts the file and writes it back to the original path.
Restore fails if a file already exists at the original location. Delete or rename the conflicting file first.
- Select one or more entries.
- Click Delete (or use Delete All for bulk removal).
This removes both the encrypted quarantine file and the database record. The action cannot be undone.
- Restore All — Attempts to restore every quarantined item.
- Delete All — Permanently removes all quarantined items.
Review the list carefully before using bulk delete.