https://issues.apache.org/bugzilla/show_bug.cgi?id=49829

           Summary: CGI index command line arguments excessively escaped
           Product: Apache httpd-2
           Version: 2.2.9
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: trivial
          Priority: P2
         Component: mod_cgi
        AssignedTo: [email protected]
        ReportedBy: [email protected]


A CGI query of the form cgiscript?foo+b*r results in two command line arguments
being passed to the CGI script, "foo", and "b\*r".  The former is correct, the
latter should be "b*r".  The following CGI script demonstrates this:

#!/bin/sh
echo Content-Type: text/plain
echo
echo "$@"

I have tested this with other (non-shell) languages as well and had the same
result.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to