Arnav Goyal
Arnav Goyal

Reputation: 1

How to find HTTP POST Data sent to a CGI Page?

I searched google for a good number of hours. Maybe I searched for the wrong keywords. Here is what I want to do.

I'm posting data to a website which then makes a HTTP POST request and returns a .CGI webpage. I want to know the parameters the web page uses to send that HTTP POST request so that I can directly link a page from my Webpage to the final .CGI webpage by making the user enter the data on my own webpage.

How do I achieve it?

Upvotes: 0

Views: 364

Answers (1)

disjunction
disjunction

Reputation: 666

Usually the POST body is piped into STDIN, just read it as a normal file

Upvotes: 1

Related Questions