Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternative to HTTP Cookies?

Tags:

People also ask

What are the 3 types of HTTP cookies?

There are three types of computer cookies: session, persistent, and third-party. These virtually invisible text files are all very different. Each with their own mission, these cookies are made to track, collect, and store any data that companies request.


They say Cookies are bad. I personally believe there should be a "smarter" way to detect the state of a user on a web app.

Say, currently this is how it works in a distributed environment where xyz.com has many pools and servers (which i know of):

  1. User logs in xyz.com
  2. The login module of xyz.com drops a cookie on client's local machine.
  3. Now, when the client goes to Feature1 of xyz.com, the feature1 pool checks for a local cookie, if he finds it and if it has not expired then Feature1 assumes that the client is good and lets him in.

So, feature1 blindly trusts the client due to the cookie dropped by login module.

But I feel a fundamental flaw here at stage 3. What if a hacker clones a cookie and tries to do something? (which is the first obvious thing a hacker will try to do, cookie sniffing)

So, is there any alternative to this? - how will web storage, flash stored objects do in future? or cookies will rule?

Not looking for an obvious answer, because there are none. I am interested in different viewpoints of approaching this probem.

Thanks