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 best solutions below
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
- Scrapy encountered http status <521>
- NodeJS not getting cookie
- How to accept cookies when using a webservice - Android?
- I Want to get the page count using cookie
- Superagent share session / cookie info with actual browser
- CookieContainer does not store cookies for internationalized domain names
- Setting a cookie in Wordpress functions.php - cant echo it using an other function
- JavaScript's document.cookie does not replace cookie in the subdomain
- How to assign cookie expiry date?
- How to read a JavaScript cookie?
- How can I redirect to an error page in my Play app?
- Python - Cookies & BeautifulSoup
- Express.js CookieParser does not get Angular.js $cookies
- Check Cookies AND Session in Same IF Statement
- How do I read the value of a cookie that comes with a cross domain image?
Related Questions in BROWSER
- Why does Angular send Http Request Method: Options before POST?
- Trick browser into resizing the viewport dimensions by 1px
- Why is it so hard to style <select> and <option> elements?
- Change writing language at browser
- Selenium stops running after click() function runs
- Are there any debugging tools for the Opera Mini mobile browser?
- place 1 label top, 1 input bottom and 2 buttons left
- Why clear cache does not work with all browsers?
- Opening Browser Instances from different Vendors
- Browser's not displaying images correctly
- Open a html document with php
- How to run a .jar inside browser?
- Why/how does the browser decide ☃.net goes to xn--n3h.net
- How do you invoke another app from a child browser
- Firefox and SSL pages - takes very long on certain sites
Related Questions in DATA-TRANSFER
- how can I use WCSessionUserInfoTransfer in watchos?
- How to transfer sensor data and audio data saved in internal memory of Moto 360 to an Android phone?
- Moving data from SQL into elasticsearch without rivers
- Is there a script that can transfer text from an excel file into an Adobe design program?
- openacc - async - gaining speedup in data transfer when using many async queues
- Data Transfer over Wi-Fi with out using Internet Data
- How to send an array from client side javascript to node js
- linux cpio to copy directory structure and file names?
- Data transfer insert into by chunk of 10,000 rows each time
- Node.js data transfer
- Computer Architecture: Cache Transfer Analysis
- How can we transfer data between classes when using swift programming language
- How to transfer data between Android phone and PC via USB?
- Transfer wiki between different MediaWiki versions manually by copying files
- Transferring Data using Audio using Python
Related Questions in DATAFLOW
- failed to compile dataflow sample
- Run Magento 1.9.1.0 Dataflow Import Profile Programmatically
- TPL Dataflow block never completes on PropagateCompletion
- Error importing csv products in magento
- TPL Dataflow block consumes all available memory
- Remote NiFi input ports are not exposed
- Data transfer between components React-native
- Google Dataflow job failing continuously: "Pipe broken"
- Training and Prediction in Spark Streaming Machine Learning Model
- How can one create a data flow graph (DFG/SDFG) for any application from its source code
- The concept groupwin is like the unaligned windows?
- Data shows in BIDS preview but won't load when running
- How do I generate a data flow graph with clang or other tools?
- Dataflow from SPARQL to RDBMS in Virtuoso
- Troubleshooting apache beam pipeline import errors [BoundedSource objects is larger than the allowable limit]
Related Questions in SPYING
- How do i monitor when and where an image from my server is loaded?
- Spying in Blue prism
- Unit testing that a method was called in another object's method in Python
- Blueprism attach to window in Navigation stage with childindex not working
- Jasmine on AngularJS: ensuring number of calls to a spied method
- Spying udp packets in windows with wireshark
- Backspying on spying Website
- How do you spy on structuredClone() using Jest?
- Spying of Sharepoint is very slow in Blue Prism
- C# is there a a spying framework like mockito for .NET 3.5?
- Pytest - spying method calls on a dependent object
- Cannot spy on Titanium.Network methods with Jasmine
- Blue Prism - Issue in Process/Object Element 'Not Connected'
- Multi threading with 2 shareable objects java
- HTML and Accessibility mode differences in Blue Prism
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)
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?

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.