Posts: 37,098
Threads: 2,599
Joined: May 2025
Reputation:
0
I'm trying to take apart a web app and figure out how it operates, particularly the flow of form information. Yes, this should be simple. Unfortunately there is a lot of javascript in the way. A LOT. I'd like to see what form values are being sent in the end.
Any ideas?
Posts: 21,885
Threads: 1,109
Joined: Mar 2024
Reputation:
0
are you dealing with PHP here? I don't know much about it, but some forms will store their value inside the URL / address bar as you navigate around.
Posts: 37,098
Threads: 2,599
Joined: May 2025
Reputation:
0
thats a "GET" for as opposed to a "POST" form. unfortunately its a POST
Posts: 1,940
Threads: 195
Joined: Jan 2018
Suggestion 1: You probably already have tried this, but search for the
Posts: 4,930
Threads: 69
Joined: May 2025
Edit a copy of the page and make the form action a script that you control. In the new receiving script, print out the submitted values. How you do that depends on the language. Using PHP as the receiving language, print out all the values of $_POST[] using something like this:
echo "
\n";
foreach ($_POST as $key => $value) {
echo "- $key = $value
\n";
}
echo "
\n";
Posts: 13,726
Threads: 599
Joined: Nov 2024
Reputation:
0
In addition to what Tom says, FireFox->WebDevXT->Forms can be helpful.
Posts: 37,098
Threads: 2,599
Joined: May 2025
Reputation:
0
The Tamper Data extension is what I needed. Its quite nice, even lets you set cookies.
Posts: 4,930
Threads: 69
Joined: May 2025
[quote mattkime]even lets you set cookies.
Mmmmm.... Cookies.
If it also comes with Java, that would go well with cookies.