A Network Engineer's Guide to Digital Fingerprinting
What Your IP Really Says
Your Public IP is your exit point to the internet. While it shows your ISP and the general city where your connection terminates (the Point of Presence), it doesn't give away your street address. For us engineers, seeing the ISP "Organization" is key to verifying if BGP routing is efficient or if we're being throttled through a sub-par backbone provider.
The Complexity of User Agents
Modern browsers include a massive "User Agent" string that identifies your engine (Blink, WebKit, Gecko) and OS version. We use this telemetry to ensure the site's CSS and Javascript are optimized for your specific hardware. Knowing your exact OS and browser helps troubleshoot "ghost bugs" that only appear on specific software patches.
Resolution vs. Viewport Sizing
Your Screen Resolution is the physical pixel count of your panel. Your Viewport Size is the actual canvas the browser uses. If these numbers don't match, it's usually because of high-DPI scaling (like a 4K screen at 150% scaling) or because of browser UI elements. This data is essential for testing responsive breakpoints.
Layer 1 & Layer 2 Limitations
For security, browsers cannot see your MAC address or your WiFi frequency (2.4GHz vs 5GHz). However, via the Network Information API, we can see your Effective Connection Type. If your phone is on 5G but congested, the browser correctly reports it as "4G" behavior because it's measuring actual throughput and latency (RTT).