Cyberlium

Cybersecurity › Module 5 › Lesson 3

BeginnerModule 5Lesson 3/6

Browser Privacy Settings

Cookies, trackers, and a harder browser

15 min+18 XP3 quiz
Module progress3 of 6

Opening

Your browser is a window with thin glass by default

Out of the box, many browsers favor convenience and advertising ecosystems over privacy. They accept tracking cookies, run third-party scripts, sync identifiers across contexts, and help advertisers stitch a profile across unrelated sites you never thought of as connected. Hardening settings is one of the highest-return privacy upgrades you can do in about ten minutes on YOUR browser — no coding required. This lesson explains cookies, trackers, fingerprinting, and malvertising so your toggles mean something, then walks a practical checklist you apply only to devices you own.

1. Cookies: helpers vs cross-site spies

A cookie is a small piece of data a site stores in your browser. First-party cookies are set by the site you intentionally visited. They often keep you logged in, remember a language preference, or hold a shopping cart. They can still be abused, but their primary job is making that site work. Third-party cookies are set by other domains embedded in the page — ad networks, analytics beacons, social widgets. Those parties see you on Site A in the morning and Site B at night and try to join the timeline into one interest graph.

Browsers have been reducing classic third-party cookies, but tracking did not vanish. Alternatives include first-party tracking pixels that bounce through redirects, link decoration, local storage, and fingerprinting. Blocking third-party cookies / enabling strict tracking protection is still a high-value default because it cuts a large, well-understood class of cross-site surveillance. Expect some sites to ask you to log in more often — that friction is often the privacy trade.

  • First-party cookies

    Set by the site you are on. Login sessions, carts, preferences. Useful when the site is trustworthy.

  • Third-party cookies

    Set by embedded other domains. Classic cross-site ad tracking glue.

  • Storage beyond cookies

    LocalStorage, IndexedDB, cache, and service workers can also hold identifiers — clearing matters.

2. Trackers, fingerprinting, and malvertising

Trackers are scripts and pixels whose job is measurement and profiling: which pages you saw, for how long, what you clicked, and sometimes what you bought. Fingerprinting goes further by measuring your browser itself — fonts, canvas/WebGL behavior, screen size, timezone, language, installed extensions, audio stack quirks — to recognize you even after cookies are cleared. Perfect uniqueness is rare; "unique enough" among millions of users is enough for ad tech.

Malvertising is malicious advertising: hostile creatives or redirected ad chains that deliver drive-by downloads, fake update prompts, or phishing overlays. A reputable content blocker (installed only from the official extension store) reduces both annoyance and attack surface by refusing many tracker and ad scripts before they run. That is security hygiene, not just "clean looking pages." It does not replace HTTPS, updates, or phishing caution.

3. Profiles, search defaults, and everyday browser hygiene

Consider separating contexts on YOUR machine: a daily browsing profile with strict tracking protection, and a tighter banking profile or container with fewer extensions. Set a privacy-respecting default search engine if you prefer less query logging. Periodically clear cached junk you do not need. Disable unnecessary access to location, camera, and mic at the browser permission layer — same least-privilege idea as phone apps. Autofill for cards is convenient; on shared family PCs, treat it as a risk surface.

Extensions are powerful: they can read every page you visit. Install few, from official stores, with known publishers. Remove the ones you forgot. A random "Free VPN + Adblock Mega" extension is often worse than the ads it claims to stop. Your Module 5 theme continues: defend YOUR browser — never use extensions to spy on other people's sessions.

4. Wrong vs right: shopping after news

Worked failure — same browsing day on YOUR laptop:

  • Wrong

    Default browser, third-party cookies allowed, no tracker protection, eight forgotten extensions with "read all sites" permission. An ad network links your morning news habits to evening shopping and rebuilds recognition after you clear cookies once via fingerprinting. You also click a fake "Update Flash" ad on a sketchy banner.

  • Right

    Block third-party cookies / set Enhanced Tracking Protection or equivalent to Strict (or the strongest setting that still lets your daily sites work). Install one reputable blocker from the official store. Trim extensions. Accept more login prompts as the cost of less cross-site glue. Clear data periodically; combine with VPN habits from the previous lesson on hostile networks.

5. Practical: harden cookie and tracker settings today

Command guide

Browser privacy checklist (YOUR browser only)

Chrome / Edge (names vary slightly by version)

Command — copy this

Settings → Privacy and security
1. Cookies → Block third-party cookies (or equivalent)
2. Tracking prevention / Privacy → Strict or Balanced+ (prefer stricter)
3. Site settings → Location / Camera / Mic → Ask or Block by default
4. Clear browsing data periodically (cached files + cookies you do not need)
5. Extensions → remove anything you do not recognize

Firefox

Command — copy this

Settings → Privacy & Security → Enhanced Tracking Protection → Strict
Optional: containers for banking vs general browsing

Safari (macOS/iOS)

Command — copy this

Settings → Privacy → prevent cross-site tracking (enable)
Review Website settings for camera/mic/location

Extra win

Command — copy this

Install a reputable open-source blocker (e.g. uBlock Origin)
ONLY from the official extension store — never a random .exe / APK

Optional search privacy

Command — copy this

Default search → DuckDuckGo / Brave Search / similar privacy-focused option

Fingerprint humility

Command — copy this

Clearing cookies ≠ invisible forever
Combine: tracker blocking + fewer extensions + separate profiles

NEVER

Command — copy this

- Install spy extensions to monitor someone else
- Click "Allow all cookies" just to silence a banner on every site
- Trust "Do Not Track" alone as a complete defense (signal only)

Command guide

Terminal practice (Linux / Kali / macOS — YOUR machine only)

Record browser privacy choices locally (YOUR machine) Linux / Kali / macOS

Command — copy this

mkdir -p "$HOME/cyberlium-lab/notes"
cd "$HOME/cyberlium-lab/notes"
curl -I https://example.com
cat > browser-privacy.txt << 'EOF'
third_party_cookies_blocked:
tracking_prevention:
extensions_audited:
EOF

Command — copy this

chmod 600 browser-privacy.txt
ls -l browser-privacy.txt

Windows PowerShell

Command — copy this

New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\cyberlium-lab
otes" | Out-Null
Set-Location "$env:USERPROFILE\cyberlium-lab
otes"
curl.exe -I https://example.com

NEVER: fingerprint others' browsers or install stalkerware

Mission: block third-party cookies / strict tracking

1) Open your main browser privacy settings on a device YOU own. 2) Block third-party cookies (or set tracking protection to Strict / strongest workable). 3) Remove one unused extension. 4) Visit one site you use daily and confirm login still works — adjust only if a trusted site truly breaks. 5) Optional: note three toggles you changed for your own records.

Stuck? Ask Cyberlium AI Mentor

Ask: "Hint only: first-party vs third-party cookies — which one tracks me across many sites?" Or: "Hint only: why can fingerprinting survive clearing cookies?" Avoid asking Mentor to install unknown extensions or to build trackers — stick to official stores and defense on your devices.

Your browser is now less helpful to trackers and a smaller malvertising surface. Next — Public WiFi Security — we take VPN and browser habits into cafés, airports, and lookalike access points, teaching recognition and avoidance without any attack how-to.

Knowledge Check

1

APPLY: Which cookie type is mainly used to track you across many unrelated websites for ads?

Multiple choice

Knowledge Check

2

APPLY: Why can a reputable content / ad blocker improve security, not just reduce annoyance?

Multiple choice

Knowledge Check

3

APPLY: True or False: Clearing cookies once means advertisers can never recognize your browser again.

True or False

← Previous

Answer all 3 knowledge checks to continue. (0/3 answered)