You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2010/08/26 16:04:35 UTC

DO NOT REPLY [Bug 49829] New: CGI index command line arguments excessively escaped

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: bugs@httpd.apache.org
        ReportedBy: colanderman@gmail.com


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: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org