Git Product home page Git Product logo

Comments (2)

bennetthaselton avatar bennetthaselton commented on July 26, 2024

On 2/6/2015 8:29 PM, turmune wrote:

It load up the the http://www.google.com front page fine but when I
type anything into the search bar it gives:

"405. That’s an error.
The request method POST is inappropriate for the URL /search. That’s
all we know."


Reply to this email directly or view it on GitHub
#7.

The bug is apparently that the script converts GET request forms into
POST. So for example if you go to this page:
http://peacefire.org/testpages/test-get-form.html
without using a proxy, and submit the form, it takes you to
http://peacefire.org/showall.cgi?textfield=abc
which is a script that displays all available environment variables --
one of them is "REQUEST_METHOD: GET".

However, if you go to
https://unblockvideos.com/
and load the same page through the proxy and submit the form, the
resulting script shows "REQUEST_METHOD: POST".

Many CGI scripts will accept data submitted as both GET and POST, so
with those scripts there won't be a problem. The problem is that some
scripts -- like the Google search script, apparently -- will only accept
data submitted as GET, presumably because accepting data submitted via
POST has trickier security implications (such as the fact that it's
possible to submit much longer data strings in a POST request), so
it's safer just to turn it off when it's not needed.

Bennett

from php-proxy.

Athlon1600 avatar Athlon1600 commented on July 26, 2024

I'm very well aware of this problem, but changing request method from POST to GET is more complicated and ugly than it looks. It's on my TODO list don't you worry.

from php-proxy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.