You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(sqlite-forensic): surface recovered dropped schemas in audit
Add AnomalyKind::DroppedSchemaRecovered (code SQLITE-DROPPED-SCHEMA-RECOVERED,
Medium, Residue) and emit one per recover_dropped_schemas hit in audit(), so the
CLI `audit` command reports a dropped table/index/view/trigger's name + that its
definition survived the drop — a graded observation ("consistent with a dropped
<name>"), never a verdict.
- audit_surfaces_the_dropped_schema_as_a_finding pins it on the fixture.
- docs/index.md: anomaly-code table row.
- 100% function coverage; full workspace green; rustdoc/MSRV/mkdocs clean.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/index.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,7 @@ By default the `sqlite4n6 carve` CLI writes a **combined review workbook** (`evi
40
40
| Code | Severity | Observes |
41
41
|---|:-:|---|
42
42
|`SQLITE-DELETED-RECORD-RECOVERED`| Medium | A record-shaped cell recovered from unallocated space. |
43
+
|`SQLITE-DROPPED-SCHEMA-RECOVERED`| Medium | A deleted `sqlite_master` row recovered from page-1 free space — a dropped/replaced table/index/view/trigger and its `CREATE` statement. |
0 commit comments