2026-05-27 14:09:02 -04:00
|
|
|
# OOTT ToDo list
|
|
|
|
|
|
|
|
|
|
- [x] Add linting to CLAUDE.md for both Rust and Dart
|
2026-06-02 16:58:25 -04:00
|
|
|
- [x] Review and document the release process
|
2026-06-01 21:43:08 -04:00
|
|
|
- [ ] Add support for push notifications to the app (iOS and Android)
|
2026-06-02 18:54:43 -04:00
|
|
|
- [x] Review the README.md file
|
2026-05-27 14:09:02 -04:00
|
|
|
|
|
|
|
|
## Backend
|
|
|
|
|
|
2026-06-01 19:00:56 -04:00
|
|
|
- [x] Add configuration options to enable/disable each scanner
|
2026-06-01 08:40:32 -04:00
|
|
|
- [ ] Implement the pushover API call directly to support HTML content and review notification text to use it
|
2026-06-02 08:45:45 -04:00
|
|
|
- [x] Add "devices seen on last scan" to the ARP and SNMP scanners status
|
2026-06-02 08:57:01 -04:00
|
|
|
- [x] Modify the passive scanners status to count devices seen in the last hour
|
2026-06-02 10:14:50 -04:00
|
|
|
- [x] Simplify the code of scanners (repeated logic)
|
2026-06-02 16:11:27 -04:00
|
|
|
- [x] Modify the event management to ignore duplicate events if they happen within a time threshold
|
2026-06-02 08:31:17 -04:00
|
|
|
- [x] Review the recommended timings for the ARP scanner (change defaults) — SNMP defaults set to 10m/5s
|
2026-05-27 14:09:02 -04:00
|
|
|
|
|
|
|
|
## Frontend
|
|
|
|
|
|
2026-06-03 19:41:52 -04:00
|
|
|
- [x] Can we add front-end tests?
|
2026-06-02 10:24:37 -04:00
|
|
|
- [x] Break down oott_api.dart in modules
|
2026-05-28 11:35:49 -04:00
|
|
|
|
|
|
|
|
## Improve engine
|
|
|
|
|
|
|
|
|
|
Passive (low noise, no probing):
|
|
|
|
|
- Passive packet capture — observe any broadcast/multicast traffic; a device that never responds to ARP still generates traffic
|
|
|
|
|
|
|
|
|
|
Active (you probe the network):
|
|
|
|
|
- NDP (Neighbor Discovery Protocol) — IPv6 equivalent of ARP; important if the network uses IPv6
|
|
|
|
|
|
|
|
|
|
Via infrastructure:
|
2026-06-02 08:03:20 -04:00
|
|
|
- [x] SNMP query to router/firewall — pull the ARP table directly via SNMPv2c (no local probing); see `[snmp_scanner]` config
|
|
|
|
|
- Extend the SNMP scanner: SNMPv3 support, and switch MAC/forwarding table (port/VLAN) polling
|