mirror of
https://github.com/smittix/intercept.git
synced 2026-07-19 14:58:10 -07:00
Add verbose results option to TSCM sweeps and setup improvements
- Add verbose_results flag to store full device details in sweep results - Add non-interactive mode (--non-interactive) to setup.sh - Add ask_yes_no helper for interactive prompts with TTY detection - Update reports.py to handle new results structure with fallbacks Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -7860,6 +7860,7 @@
|
||||
const wifiInterface = document.getElementById('tscmWifiInterface').value;
|
||||
const btInterface = document.getElementById('tscmBtInterface').value;
|
||||
const sdrDevice = document.getElementById('tscmSdrDevice').value;
|
||||
const verboseResults = document.getElementById('tscmVerboseResults').checked;
|
||||
|
||||
// Clear any previous warnings
|
||||
document.getElementById('tscmDeviceWarnings').style.display = 'none';
|
||||
@@ -7877,7 +7878,8 @@
|
||||
rf: rfEnabled,
|
||||
wifi_interface: wifiInterface,
|
||||
bt_interface: btInterface,
|
||||
sdr_device: sdrDevice ? parseInt(sdrDevice) : null
|
||||
sdr_device: sdrDevice ? parseInt(sdrDevice) : null,
|
||||
verbose_results: verboseResults
|
||||
})
|
||||
});
|
||||
|
||||
@@ -10562,4 +10564,4 @@
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user