views:

34

answers:

2

Is there any way to access My Own Browsers (IE8, FF3.6) Session data or POST Method data? For example when an item is sending using POST method i can change it.

www.example.com/index.php?menuitem=2

change to

www.example.com/index.php?menuitem=3

Is there any script or software to help?

+1  A: 

A firefox extension called HTTP Request String Editor enables you to edit the data sent to the server.

Note that you cannot change the session data itself, as it's stored on the server.

Ikke
I mean browser session data! but any way thanks for answer!
Jalal Amini
A: 

My suggestion would be to use Fiddler. It will work across all browsers and will let you modify just about anything in the header.

Justin Niessner