Kill Sessions and Cookies
Refs:
In the begining
Let us create a php file for starting the session
session_start()
creates a session or resumes the current one based on a session identifier passed
via a GET or POST request, or passed via a cookie.
Once we open the file in the browser, we will see that a cookie named PHPSESSID
is created

A session file is created in our server in the /tmp directory
Capture traffic in Burpsuite
The first time we visit the webpage, raw request is given below
When we visit the webpage again, we see that PHPSESSID
cookie also travels along with the
request
Play with Sessions
Let us set a few session variables, these are set with the PHP global variable $_SESSION. These variables can be accessed during lifetime of a session.
Now, when the user visits the webpage, an entry is made inside the sessions file in the server
The second and subsequent times, the user visits the webpage, "Welcome :burp" is displayed on the browser.