TRUSTNOWIRE
Trust no wire -- including ours. Here's the proof.
REAL-TIME NETWORK MONITORING AND THREAT DETECTION FOR WINDOWS
DOWNLOAD v1.1.0FEATURES
LIVE CONNECTION TABLE
Every active TCP connection (IPv4 and IPv6) plus live UDP flows — QUIC and DNS included — with process name, remote IP, port, country, and Authenticode signature verification
PACKET CAPTURE
Real-time bandwidth monitoring via Npcap — IPv4, IPv6, and VLAN-tagged traffic — with per-connection byte counters and a live sparkline graph. Promiscuous mode is off by default and opt-in
DNS LOGGING
Intercepts and logs DNS queries with response IPs, TTLs, and the exact process that issued each query
THREAT SCORING
Automatic risk assessment based on process trust, port usage, traffic patterns, hosting provider reputation, and more
VIRUSTOTAL INTEGRATION
Auto-scan and manual scan of remote IPs against the VirusTotal database with your own API key
GEO-IP LOOKUP
Opt-in country, organization, and ASN resolution for remote IPs over HTTPS (ipinfo.io) — off by default, nothing leaves your machine until you enable it
WIDGET MODE
Win7-gadget-style micro dashboard showing live stats, bandwidth graph, and top threats at a glance
SYSTEM TRAY
Minimize to tray with tooltip, left-click restore, right-click menu
5 THEMES
Iron Man, Stealth, Cyberpunk, Light, Matrix -- each with matching glow effects
3 DISPLAY MODES
Compact, Normal, Expanded -- auto-resizes to fit your workflow
TOAST NOTIFICATIONS
Optional Windows toast alert the moment a new high-severity threat appears — trusted processes stay silent, and each threat only notifies once
CSV / JSON EXPORT
One click saves a snapshot of the full connection table and DNS log to your Downloads folder for offline analysis or evidence
SCREENSHOTS
DOWNLOAD
FAQ
TrustNoWire is built by LXB Studio LLC. This source code is public so you can verify exactly what it does on your machine. A network monitor you can't audit is a network monitor you shouldn't trust.
Get-AuthenticodeSignature and Get-FileHash in PowerShell and compare against the published values — the full walkthrough is in the Installer Verification section.CHANGELOG
INSTALLER VERIFICATION
Authenticode-signed by LXB Studio LLC. Starting with v1.0.1, every TrustNoWire artifact — the installer, the MSI, and the application binary inside the installer — is code-signed via Microsoft’s Azure Trusted Signing service. Right-click any download → Properties → Digital Signatures to see the “LXBSTUDIO LLC” publisher entry and verify the chain back to a Microsoft Code Signing CA.
On first launch you should see a clean UAC prompt that lists LXBSTUDIO LLC as the verified publisher. If your build of Windows hasn’t cached our signing reputation yet, SmartScreen may still ask you to confirm — click More info → Run anyway. Reputation builds quickly across users; the signature itself is what matters.
🔒 SHA-256 hashes for v1.1.0. The Authenticode signature above is your primary proof of authenticity. These hashes are here as an extra reference if you’d like to confirm the bytes you have on disk match the bytes we shipped.
Step 1 — open PowerShell in the folder where you downloaded the installer. For most users that’s the Downloads folder, so paste this in any PowerShell window:
cd $env:USERPROFILE\Downloads
Step 2 — verify the SHA-256 hash (use the line that matches your downloaded file):
Get-FileHash TrustNoWire_1.1.0_x64-setup.exe Get-FileHash TrustNoWire_1.1.0_x64_en-US.msi
The Hash
column in the output must match the SHA-256 value shown above for that file exactly.
Step 3 — verify the Authenticode signature (do this for whichever artifact you plan to run):
Get-AuthenticodeSignature TrustNoWire_1.1.0_x64-setup.exe | Format-List * Get-AuthenticodeSignature TrustNoWire_1.1.0_x64_en-US.msi | Format-List *
You should see Status : Valid
and a SignerCertificate.Subject
that begins with CN=LXBSTUDIO LLC,
issued by Microsoft ID Verified CS EOC CA 03. When both checks pass, you have the official LXBSTUDIO LLC release.