| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-06-24 | 1.7 kB | |
| v1.5.2 -- Asset Inventory + Dashboard geo map source code.tar.gz | 2026-06-24 | 4.0 MB | |
| v1.5.2 -- Asset Inventory + Dashboard geo map source code.zip | 2026-06-24 | 4.1 MB | |
| Totals: 3 Items | 8.1 MB | 0 | |
What's new
Asset Inventory (new module — 29th)
- Scans a CIDR range and collects OS, CPU, RAM, disk, uptime via SSH / WinRM / SNMP / Nmap
- Multiple credential sets: add as many SSH or WinRM user/password/key profiles as needed — the scanner tries each in order per host
- Zero-retention policy: credentials are never written to disk and are cleared from memory after the scan
- Export results as JSON / CSV / Markdown
Dashboard — animated geo map
- IP Geolocation section now includes an animated world map (240 px)
- Zoom-in animation followed by sonar ripples and a pulsing dot at the target coordinates
Bug fixes
SSH collection
- Disk on Linux: awk command with embedded quotes caused a syntax error — now parses
dfoutput in Python - RAM on BusyBox/Synology:
free -hnot supported; now uses plainfreeand formats KB value in Python - Synology disk:
df /showed the 2-4 GB system partition; now tries/volume1first - Unraid disk: now tries
/mnt/user(array share) and/mnt/disk1before falling back to/ - macOS OS field:
cat /etc/os-release | trpipeline exits 0 on empty input, blockingsw_vers; macOS now uses a dedicated code path withsw_vers | awk - macOS CPU:
machdep.cpu.brand_stringabsent on Apple Silicon; fallback tosysctl hw.model - macOS disk:
/is the APFS system snapshot; now uses/System/Volumes/Datafor the user data volume - lsb_release quotes: some distros wrap the output in double quotes; now stripped with
tr -d df | tail -1 || …false-success:tailexits 0 on empty input, preventing fallback; replaced withtest -d <path> && df …