---
title: "How to Check Cookies on a Webpage in Web Browsers"
description: "The web browser is a complex gateway into your personal computer and life. This is why we, and many others cautious about cybersecurity and information security (InfoSec), recommend you: Ensure your..."
url: https://www.inmotionhosting.com/support/website/check-cookies-on-a-webpage-in-web-browsers/
date: 2020-07-15
modified: 2021-08-16
author: "InMotion Hosting Contributor"
categories: ["Website"]
type: post
lang: en
---

# How to Check Cookies on a Webpage in Web Browsers

The web browser is a complex gateway into your personal computer and life. This is why we, and many others cautious about cybersecurity and information security (InfoSec), recommend you:

- Ensure your web browser(s), and all software in general, are [up-to-date](https://www.inmotionhosting.com/support/resources/how-to-update-your-web-browser/)
- Know how to create [incognito / private browsing sessions](https://www.inmotionhosting.com/support/resources/how-to-start-a-private-browsing-session/)
- Use browser security extensions like [Privacy Badger](https://privacybadger.org/) and [uBlock Origin](https://github.com/gorhill/uBlock/)
- Consider a virtual private network (VPN) to negate location tracking methods
- Consider using DNS resolvers that implement DNS Security Extensions [(DNSSEC) validation and DNS-over-HTTPS (DoH)](https://www.inmotionhosting.com/support/security/dns-over-https-encrypted-sni-in-firefox/)

This is only a small list of [ways to secure your web activity](https://www.inmotionhosting.com/blog/6-ways-to-secure-your-web-activity-from-your-computer/). Another way is managing how your web browser handles website cookies – files that store info to identify and track you when you visit websites. The option to remove them from your browser is normally near options to [clear your browser cache](https://www.inmotionhosting.com/support/website/how-to-clear-browser-cache-for-major-browsers/). The more popular browsers allow you to specify which sites can store cookies or whether cookies can be stored at all.

Two of the most popular cookie examples on the web in 2020:
– [**.cfduid**](https://support.cloudflare.com/hc/en-us/articles/200170156-Understanding-the-Cloudflare-Cookies) tracks users across websites using the [Cloudflare](https://www.inmotionhosting.com/support/website/setting-up-cloudflare/) content delivery network (CDN), including [Discord.com](https://discord.com/new), to identify malicious users
– [**wordpress_test_cookie**](https://wordpress.org/about/privacy/cookies/) checks if a web browser accepts cookies

In most browsers, there’s an option to see what cookies are stored in the browser. Below we cover:

- [How to check cookies in Firefox based browsers](#firefox)
- [How to check cookies in Google Chrome based browsers](#chrome)
- [How to read site cookie information](#read)

Need a web server but don’t want cPanel? Check out our bare-bones Debian [Cloud Server hosting](https://www.inmotionhosting.com/cloud-vps).

## Check Cookies in Firefox

Firefox-based browsers include Pale Moon and Tor Browser.

1. Press F12OrSelect the menu button in the upper-right corner, then **Web Developer**OrRight-click anywhere on a web page and select **Inspect Element**
2. Select the **Storage Inspector** tab If you don’t see it in the Web Development section, you may need to select the Settings icon in the upper-right corner, then check **Storage** to show the tab.
3. On the left, select the arrow beside **Cookies** to expand the list of domains with cookies on the current web page

For example, in the screenshot below, [Discord’s homepage](https://www.inmotionhosting.com/support/edu/discord/getting-started-with-discord/) shows 2 Cloudflare session cookies (`__cfduid` and `__cfruid` for rate limiting) and a locale cookie which tracks the visitor’s language setting (English in this case).

![View website cookies in Firefox](https://www.inmotionhosting.com/support/wp-content/uploads/2020/07/falkon-site-cookies-1024x189.png)

## Check Cookies in Google Chrome

Chrome-based web browsers include Chromium, Falkon (formerly QupZilla), Min, and Vivaldi.

1. Select the menu in the upper-right corner, then **Tools** and **Web Inspector**OrRight-click anywhere on the page and select **Inspect Element**
2. Select the **Application** tab if you’re not already there
3. Select the arrow beside beside **Cookies** to expand the list of domains with cookies on the current web page

In the example below, a [Meet.jit.si chatroom](https://www.inmotionhosting.com/support/edu/live-broadcasting/jitsi-meet/) has an Amplitude tracking cookie.

![View website cookies in Falkon](https://www.inmotionhosting.com/support/wp-content/uploads/2020/07/falkon-site-cookies-1-1024x189.png)

## How to Read Site Cookies

Below we briefly describe the columns for site cookies:

- **Name** – Cookie name
- **Value** – Content of the cookie
- **Domain** – Domain of the cookie
- **Path** – Path of the cookie
- **Expires / Max-Age** – How long until the cookie expires (or `Session` if only for that current session)
- **Size** – Cookie byte size
- **HttpOnly** – Whether the cookie is set to HTTP only to mitigate cross-site scripting (XSS) attacks (`true` of `false`)
- **Secure** – Whether the cookie is sent over HTTPS/TLS
- **SameSite** – Whether the cookie can be sent with external website requests
- **Last Accessed** – When you last used the cookie
- **Created** – When the cookie was created
- **HostOnly** – Whether the cookie domain matches the current website exactly

Have more questions about cookie security? Let us know if our [Community Support Center](https://www.inmotionhosting.com/support/questions/).
