Open a new tab. Go to any website you use regularly. Press F12. Click the Console tab. Reload the page. Watch what happens.
If you've never done this before, you're about to see things that will probably surprise you. Most websites are constantly logging information to the browser console, and most of that information is meant for the developers of the site, not for you. But it's there in plain text, and it tells you a lot about what's actually happening inside the page you're viewing.
This is one of the most underused security and privacy tools that's already installed on every computer. The browser console is free, it requires no special access, and it works on every site. It just requires you to know it exists and know how to use it.
What you'll typically find
The first thing you'll see on most sites is a wall of network requests. The page didn't just load HTML. It loaded fonts from Google. It loaded ads from a dozen different ad networks. It loaded analytics scripts from Google Analytics, Mixpanel, Hotjar, FullStory, and several others. It loaded social media pixels from Facebook, Twitter, LinkedIn, and TikTok. Each one of these is a third-party service that now knows you visited the page.
The second thing you'll see on developer-friendly sites is messages the developers left for visitors. Stripe leaves recruitment messages in the console. GitHub leaves easter eggs. TerminalFeed leaves a 2600-themed message because the people who built it know that the kind of person who opens the console is the kind of person worth talking to. These messages are a small but charming reminder that there are humans on the other end of the screen.
The third thing you'll see, on sites that haven't been carefully audited, is errors. JavaScript errors, network errors, deprecation warnings. These tell you something about the quality of the code running in your browser. A site with a dozen console errors per page load is a site that probably has bugs you'll encounter eventually. It's also a site whose developers aren't paying close attention to detail.
What you'll find that should worry you
Beyond the routine stuff, the console can reveal things you really should know about the sites you use.
Tracking pixels that follow you across the entire web. Facebook's pixel, Google's tag manager, TikTok's tracker, LinkedIn's insight tag. These don't just log that you visited one page. They build a profile of your browsing behavior across every site that uses them, which is a significant percentage of the web. Looking at the console makes this concrete in a way that abstract privacy discussions don't. You can literally see your browser sending data to Facebook on a site that has nothing to do with Facebook.
Session replay scripts. Tools like Hotjar, FullStory, and LogRocket record everything you do on a webpage: every mouse movement, every keystroke, every scroll, every click. The recordings get sent back to the site owner, who can play them back later as if watching over your shoulder. Most users have no idea this is happening. The console will reveal it.
Content security policy violations. These warnings on poorly configured sites indicate that the site is loading resources from places it shouldn't, which sometimes means the site has been compromised by an attacker who injected malicious code. CSP warnings are a useful early signal that a site might not be safe.
Leaked API keys. This is rare but it does happen. Developers occasionally leave debug code in production that prints API keys, internal endpoints, or user information to the console. If you're ever curious whether a site is well-built, the console is a quick check. A site that logs sensitive information to the console is a site whose developers don't understand what they're doing.
How to actually use it for security
The console isn't just for passive observation. It's also a tool you can use actively to protect yourself.
You can run JavaScript directly in the console. This means you can manipulate any page in your browser. If a paywall is blocking text you want to read, you can often remove the blocking element with one line of JavaScript. If a site is using infinite scroll to keep you trapped, you can stop the scrolling. If a site has hidden content you want to see, you can reveal it.
This isn't hacking in any meaningful sense. You're not affecting other users or the site itself. You're just modifying what your own browser displays. The browser is your computer running their code, and you have every right to change how that code runs in your browser.
You can also use the console to inspect what data a form is about to submit. If you fill out a form on a sketchy site and you're worried about what they're collecting, you can monitor the network tab while submitting and see exactly what gets sent. Sometimes you'll find that the form is secretly sending more data than you typed in.
You can disable JavaScript entirely from the developer tools. This breaks most modern websites but it's a useful nuclear option for sites that won't let you see content without enabling notifications, signing up for an account, or accepting tracking cookies. Disable JavaScript, refresh, and many sites will reveal their underlying content because the paywall logic only runs in JavaScript.
Make it a habit
This is the actual recommendation. Get in the habit of opening the console on sites you visit regularly, especially the first time you visit a new site. It takes ten seconds. It tells you a lot. Over time you'll develop an instinct for which sites are well-built and which are sloppy, which sites respect your privacy and which sell you out to thirty different ad networks before you've even read the first paragraph.
The console isn't a perfect privacy tool. You also need a good ad blocker, a tracker blocker, and maybe a VPN depending on your threat model. But the console gives you visibility that no other tool gives you. It shows you what the site is actually doing, not what the site claims to be doing. That visibility is the foundation of every privacy decision you can make.
Open it tonight. Visit your most-used sites. See what they're loading. Notice which ones make you uncomfortable and which ones don't. Adjust your habits accordingly. The console has been waiting on every website you've ever visited. You just had to open it.
TerminalFeed tracks zero users and loads zero third-party scripts. Open F12 and see for yourself.
Open TerminalFeed Dashboard