AUTARCH v1.9 — remote monitoring, SSH manager, daemon, vault, cleanup

- Add Remote Monitoring Station with PIAP device profile system
- Add SSH/SSHD manager with fail2ban integration
- Add privileged daemon architecture for safe root operations
- Add encrypted vault, HAL memory, HAL auto-analyst
- Add network security suite, module creator, codex training
- Add start.sh launcher script and GTK3 desktop launcher
- Remove Output/ build artifacts, installer files, loose docs
- Update .gitignore for runtime data and build artifacts
- Update README for v1.9 with new launch method, screenshots, and features

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
SsSnake
2026-03-24 06:59:06 -07:00
parent 1092689f45
commit da53899f66
382 changed files with 15277 additions and 493964 deletions

View File

@@ -162,6 +162,7 @@ function rfidLFSearch() {
if (data.error) { renderOutput('rfid-scan-output', 'Error: ' + data.error); return; }
renderOutput('rfid-scan-output', data.output || 'No card detected.');
if (data.card) rfidUpdateLastCard(data.card);
halAnalyze('RFID/NFC', JSON.stringify(data, null, 2), 'rfid', 'analyze');
}).catch(function() { setLoading(btn, false); });
}
@@ -173,6 +174,7 @@ function rfidHFSearch() {
if (data.error) { renderOutput('rfid-scan-output', 'Error: ' + data.error); return; }
renderOutput('rfid-scan-output', data.output || 'No card detected.');
if (data.card) rfidUpdateLastCard(data.card);
halAnalyze('RFID/NFC', JSON.stringify(data, null, 2), 'rfid', 'analyze');
}).catch(function() { setLoading(btn, false); });
}
@@ -184,6 +186,7 @@ function rfidNFCScan() {
if (data.error) { renderOutput('rfid-scan-output', 'Error: ' + data.error); return; }
renderOutput('rfid-scan-output', data.output || 'No NFC tag detected.');
if (data.card) rfidUpdateLastCard(data.card);
halAnalyze('RFID/NFC', JSON.stringify(data, null, 2), 'rfid', 'analyze');
}).catch(function() { setLoading(btn, false); });
}
@@ -203,6 +206,7 @@ function rfidEMClone() {
postJSON('/rfid/clone/em410x', {card_id: id}).then(function(data) {
setLoading(btn, false);
renderOutput('rfid-em-output', data.message || data.error || 'Done');
halAnalyze('RFID/NFC', JSON.stringify(data, null, 2), 'rfid', 'analyze');
}).catch(function() { setLoading(btn, false); });
}
@@ -212,6 +216,7 @@ function rfidMFDump() {
postJSON('/rfid/dump/mifare', {}).then(function(data) {
setLoading(btn, false);
renderOutput('rfid-mf-dump-output', data.output || data.error || 'No output');
halAnalyze('RFID/NFC', JSON.stringify(data, null, 2), 'rfid', 'analyze');
}).catch(function() { setLoading(btn, false); });
}
@@ -223,6 +228,7 @@ function rfidMFClone() {
postJSON('/rfid/clone/mifare', {dump_path: path}).then(function(data) {
setLoading(btn, false);
renderOutput('rfid-mf-clone-output', data.message || data.error || 'Done');
halAnalyze('RFID/NFC', JSON.stringify(data, null, 2), 'rfid', 'analyze');
}).catch(function() { setLoading(btn, false); });
}