mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 08:30:20 +00:00
Place useful parts of the surrounding repos into sica-fondt by layer, per the
body model (Ada = membrane; brain/endocrine/capabilities/knowledge non-Ada):
- brain/ LLM reasoning + providers (dapr, hermes, MoMoA)
- capabilities/ REPRAG sidecars: hermes tools/skills, dapr tools, parallel
dispatch, A51 channels, and the OSINT cluster
- knowledge/ LORAG corpus: 754 cyber-skills, agency personas, secure-coding,
MITRE ATT&CK data
- reference/ defensive threat-reference (C3, shhbruh doc) + AdaYaml parser
License handling: AGPL sources (worldosint, advanced_evolution, mercury,
Reticulum) and GPL DeTTECT are SPEC-only clean-room/port descriptions — no
copyleft code copied. MIT/Apache/data parts copied as working trees.
Safety: shhbruh escape/persistence material and C3 covert-C2 kept as reference
only, not wired into the running organism. See CONSOLIDATION.md.
https://claude.ai/code/session_01UehUqEXXJJCsHoA4voCU5c
29 lines
1.1 KiB
Markdown
29 lines
1.1 KiB
Markdown
# Standards and References - MFT Deleted File Recovery
|
|
|
|
## Standards
|
|
- NIST SP 800-86: Guide to Integrating Forensic Techniques into Incident Response
|
|
- ISO/IEC 27037: Guidelines for identification, collection, acquisition and preservation of digital evidence
|
|
- SWGDE Best Practices for Computer Forensics
|
|
|
|
## Key Technical References
|
|
- NTFS Documentation (Microsoft): File system internals and MFT structure
|
|
- MFTECmd by Eric Zimmerman: Primary parsing tool for $MFT, $J, $LogFile, $Boot
|
|
- analyzeMFT (Python): Open-source MFT parser for cross-platform analysis
|
|
- ntfstool (GitHub): Forensics tool for NTFS parsing, MFT, BitLocker, deleted files
|
|
|
|
## MITRE ATT&CK Mappings
|
|
- T1070.004 - Indicator Removal: File Deletion
|
|
- T1070.006 - Indicator Removal: Timestomping
|
|
- T1485 - Data Destruction
|
|
- T1561 - Disk Wipe
|
|
|
|
## NTFS Specifications
|
|
- MFT Record Size: 1024 bytes (default)
|
|
- MFT Entry 0: $MFT (self-reference)
|
|
- MFT Entry 1: $MFTMirr (mirror of first 4 entries)
|
|
- MFT Entry 2: $LogFile (transaction log)
|
|
- MFT Entry 5: Root directory
|
|
- MFT Entry 6: $Bitmap (cluster allocation)
|
|
- MFT Entry 8: $BadClus (bad cluster list)
|
|
- MFT Entry 11: $Extend (extended metadata)
|