If you would need to see what Information a Site has on you, based on the Cookie ID that they've stored on your Computer, how exactly would one do that?
Backspying on spying Website
87 views Asked by NickyBarnes At
2
There are 2 answers
0
Paul Oliver
On
Unless the site stores things in your cookie, you're probably not able to get much. The cookie often has a userId or sessionId in it that the site uses to look up the information it knows about you. That information is stored in a database that you won't be able to get access to.
Some things you could do:
- Open the developer tools in your browser and look at the internet traffic that goes back and forth. You may be able to see some information about yourself there.
- Use a tool like Fiddler or BurpSuite to sniff the traffic between your computer and the site in question.
It may be wise to delete your cookies regularly or find a browser plugin like Self-Destructing Cookies if this bothers you.
Related Questions in COOKIES
- Loading Google Analytics after the user consents to cookie usage
- Express session is not seened in server code
- Cookie doesn't send different domain django and react
- Storing settings in cookies
- Cant handle Session's cookie when Safari/iOS
- Create new cookie with host only set to false in chrome extension
- 3rd Party cookies error on deployment server
- Access Cookies in TRPC fetch handler
- My project uses cookiebot but when I accept cookies at the start of website it deletes my localstorage data
- Postman receiving cookie but my browser isn't receiving it when I try
- Nextjs: Ability to fetch HTTPS-ONLY cookies using server actions, is there a vulnerability?
- Cant send cookie at res when user using Safari/iOS
- Initialize a singleton from cookies for a ASP.NET Core Razor project
- JS doesn't put cookies after domain change for localhost
- Unable to set cookies from hosted backend (https://dev.abcd.com) to localhost of frontend
Related Questions in BROWSER
- (in promise) TypeError: NetworkError when attempting to fetch resource
- How could i add a bookmark and tabs function in PySide6?
- Difficulty Accessing HTTP URLs/IP Addresses Due to Browser Redirecting to HTTPS: Seeking Solutions
- Can be their an extension to save pages in as offline in the browser itself?
- Connecting puppeteer to an existing Brave Browser instance using
- How can I modify javascript native fetch function from an extension?
- Update your browser to use...in android webview application
- Why does throwing an error in any browser developer console not get caught by window.addEventListener('error')?
- The javascript and css files cached by chrome do not belong to the same version
- Unlike chrome Unable to create multiple instance of sidepanel while creating extension for edge browser
- Cannot import a class from a WebPacked javascript file
- How do I keep the same time input style in both firefox and chrome
- Use GUI application on Github Codespace
- get cpu / gpu capabilities from client in react / typescript?
- How to close a browser context after multiple test is written in same file
Related Questions in DATA-TRANSFER
- Python PyUSB NotImplemented Error dev.write(), dev.read(), dev.ctrl_transfer()
- Thunderbird: Get Subject dynamically in HTML Signature
- Transfer linked list values from one linked list to another in C
- Data Transfer From Table to Table in BigQuery
- How can I access errors[] collection after transfer failed?
- How to copy data to identical Postgres table with foreign key using Delphi?
- dataTransfer.dropEffect doesn't work in dragenter event handler
- Empty file when uploaded via Playwright test
- error on uploading file with playwright js
- SPI Mode 2 (Clock Polarity: 1, Clock Phase: 0) is not working when I am interfacing ADS1293 with ESP32 Wroom 32
- Is it possible to transfer an in-game item to another player without cloning?
- Google Apps Script. Transfer data from current active sheet to another by URL (on Edit event)
- Data from Postgres Production DB to a postgres staging database
- How can I set custom drag data in Safari without breaking some native drag drop behavior?
- HDMI input in laptop through USB 3.1 type c or USB A 3.0
Related Questions in DATAFLOW
- Issue Pickling Dataflow Pipeline on Airflow
- How to convert SQL rows to an array of json objects in Azure Data Factory?
- Dataflow doesn’t create an empty partition when writing to a Bigquery time-unit column partition
- how to save logs from c++ binary in beam python?
- Google cloud data flow exmaple
- Apache Beam: WriteToFiles Based on Filename
- DataflowRunner "Cannot convert GlobalWindow to apache_beam.utils.windowed_value._IntervalWindowBase" using SlidingWindows yet DirectRunner works?
- Use apache beam arguments within the pipeline
- Pass/Refer a SQL file in Apache Beam instead of string
- Can not pass varible to region in MKCoordinateRegion in swift
- Dataflow- dynamic create disposition Apache Beam
- Read CSV to a class Dataflow Java from GCS
- Dataflow Job extracting meta information
- Output multiple tuples at same time in apache beam pipeline
- Dataflow WindowIntoBatches WithShardedKey error (Python)
Related Questions in SPYING
- How do you spy on structuredClone() using Jest?
- Unit testing that a method was called in another object's method in Python
- Pytest - spying method calls on a dependent object
- Jasmine on AngularJS: ensuring number of calls to a spied method
- Different monitors causing Blue Prism region spying error
- Blueprism attach to window in Navigation stage with childindex not working
- Blue Prism - Issue in Process/Object Element 'Not Connected'
- Spying of Sharepoint is very slow in Blue Prism
- Spying in Blue prism
- Mock/Spy sessionStorage in jasmine when executing tests in Nodejs and not Browser
- HTML and Accessibility mode differences in Blue Prism
- Spying Elements in Blue Prism - HTML
- Multi threading with 2 shareable objects java
- Backspying on spying Website
- Cannot spy on Titanium.Network methods with Jasmine
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)

You can't.
A cookie is best considered an opaque ticket, passed from the server to the client, for the client to return to the server as a means of storing state, or a reference to server-side persisted state, without the server needing to keep track of it itself.
Granted, some cookies are non-opaque, especially those that are intentionally exposed to Javascript (such as storing client-side preferences), but I'm assuming you're not interested in those.
So there is no way for a HTTP client to peer into a webserver's stored state. That's the point. Otherwise it would be insecure.
Here's a simple demonstration:
(weeks pass)
(weeks pass)
(more time passes)
So even though the cookie in this case is merely the number "3", the client has no way of knowing what the server has stored about it.