Tamper Data gives all the cookie context i wish to automate that. Session-Id and Login Credentials.
WGET or Wapiti kinda stuff.. but these are cmnd line based ..
i wish a web-based one ! the Tamper data values i need to pass are under the red box of screenshot.
Tamper Data gives all the cookie context i wish to automate that. Session-Id and
Share
Relying on the
request-header‘s values is dicey and it is flawed since therequest-headervalues can be easily manipulated (one example is what you yourself are showing).If you want to login automatically into another web-application using the credentials you have provided in some other web-application then you can use Single Sign-on (SSO). More info can be found in this answer.
If you have some other requirement, then you can included that in the question so that it can be seen & answered accordingly.
Here is how you can get the request-header in a JSP:
request.getHeader("cookie")orrequest.getHeader("user-agent").Or can use:
request.getHeaderNames()to get all the headers and then loop through the names and get each header value by using point#1 like this:This link might be helpful: Reading HTTP Request Headers
Here is how you can get the request headers in PHP: