Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2014-4650: Issue 21766: CGIHTTPServer File Disclosure

The CGIHTTPServer module in Python 2.7.5 and 3.3.4 does not properly handle URLs in which URL encoding is used for path separators, which allows remote attackers to read script source code or conduct directory traversal attacks and execute unintended code via a crafted character sequence, as demonstrated by a %2f separator.

CVE
#vulnerability#js#perl#xpath

From the security list:

The CGIHTTPServer Python module does not properly handle URL-encoded path separators in URLs. This may enable attackers to disclose a CGI script’s source code or execute arbitrary scripts in the server’s document root.

Details

Product: Python CGIHTTPServer Affected Versions: 2.7.5, 3.3.4 (possibly others) Fixed Versions: <FIXED-VERSIONS> Vulnerability Type: File Disclosure, Directory Traversal Security Risk: high Vendor URL: https://docs.python.org/2/library/cgihttpserver.html Vendor Status: notified Advisory URL: https://www.redteam-pentesting.de/advisories/rt-sa-2014-008 Advisory Status: private CVE: GENERIC-MAP-NOMATCH CVE URL: https://cve.mitre.org/cgi-bin/cvename.cgi?name=GENERIC-MAP-NOMATCH

Introduction

The CGIHTTPServer module defines a request-handler class, interface compatible with BaseHTTPServer. BaseHTTPRequestHandler and inherits behavior from SimpleHTTPServer. SimpleHTTPRequestHandler but can also run CGI scripts.

(from the Python documentation)

More Details

The CGIHTTPServer module can be used to set up a simple HTTP server with CGI scripts. A sample server script in Python may look like the following:


#!/usr/bin/env python2

import CGIHTTPServer import BaseHTTPServer

if __name__ == "__main__": server = BaseHTTPServer.HTTPServer handler = CGIHTTPServer.CGIHTTPRequestHandler server_address = ("", 8000) # Note that only /cgi-bin will work: handler.cgi_directories = ["/cgi-bin", “/cgi-bin/subdir”] httpd = server(server_address, handler) httpd.serve_forever()


This server should execute any scripts located in the subdirectory "cgi-bin". A sample CGI script can be placed in that directory, for example a script like the following:


#!/usr/bin/env python2 import json import sys

db_credentials = “SECRET” sys.stdout.write(“Content-type: text/json\r\n\r\n”) sys.stdout.write(json.dumps({"text": "This is a Test"}))


The Python library CGIHTTPServer.py implements the CGIHTTPRequestHandler class which inherits from SimpleHTTPServer.SimpleHTTPRequestHandler:

class SimpleHTTPRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler): […] def do_GET(self): “""Serve a GET request.""” f = self.send_head() if f: try: self.copyfile(f, self.wfile) finally: f.close()

def do\_HEAD(self):
    """Serve a HEAD request."""
    f = self.send\_head()
    if f:
        f.close()

def translate\_path(self, path):
\[...\]
    path = posixpath.normpath(urllib.unquote(path))
    words = path.split('/')
    words = filter(None, words)
    path = os.getcwd()
    \[...\]

The CGIHTTPRequestHandler class inherits, among others, the methods do_GET() and do_HEAD() for handling HTTP GET and HTTP HEAD requests. The class overrides send_head() and implements several new methods, such as do_POST(), is_cgi() and run_cgi():

class CGIHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): […] def do_POST(self): […] if self.is_cgi(): self.run_cgi() else: self.send_error(501, “Can only POST to CGI scripts”)

def send\_head(self):
    """Version of send\_head that support CGI scripts"""
    if self.is\_cgi():
        return self.run\_cgi()
    else:
        return SimpleHTTPServer.SimpleHTTPRequestHandler.send\_head(self)

def is\_cgi(self):
    \[...\]
    collapsed\_path = \_url\_collapse\_path(self.path)
    dir\_sep = collapsed\_path.find('/', 1)
    head, tail = collapsed\_path\[:dir\_sep\], collapsed\_path\[dir\_sep+1:\]
    if head in self.cgi\_directories:
        self.cgi\_info = head, tail
        return True
    return False

[…] def run_cgi(self): “""Execute a CGI script.""” dir, rest = self.cgi_info

    \[...\]

    # dissect the part after the directory name into a script name &
    # a possible additional path, to be stored in PATH\_INFO.
    i = rest.find('/')
    if i >= 0:
        script, rest = rest\[:i\], rest\[i:\]
    else:
        script, rest = rest, ''

    scriptname = dir + '/' + script
    scriptfile = self.translate\_path(scriptname)
    if not os.path.exists(scriptfile):
        self.send\_error(404, "No such CGI script (%r)" % scriptname)
        return
    if not os.path.isfile(scriptfile):
        self.send\_error(403, "CGI script is not a plain file (%r)" %
                        scriptname)
        return
    \[...\]

[…]

For HTTP GET requests, do_GET() first invokes send_head(). That method calls is_cgi() to determine whether the requested path is to be executed as a CGI script. The is_cgi() method uses _url_collapse_path() to normalize the path, i.e. remove extraneous slashes (/),current directory (.), or parent directory (…) elements, taking care not to permit directory traversal below the document root. The is_cgi() function returns True when the first path element is contained in the cgi_directories list. As _url_collaps_path() and is_cgi() never URL decode the path, replacing the forward slash after the CGI directory in the URL to a CGI script with the URL encoded variant %2f leads to is_cgi() returning False. This will make CGIHTTPRequestHandler’s send_head() then invoke its parent’s send_head() method which translates the URL path to a file system path using the translate_path() method and then outputs the file’s contents raw. As translate_path() URL decodes the path, this then succeeds and discloses the CGI script’s file contents:

$ curl http://localhost:8000/cgi-bin%2ftest.py #!/usr/bin/env python2 import json import sys

db_credentials = “SECRET” sys.stdout.write(“Content-type: text/json\r\n\r\n”) sys.stdout.write(json.dumps({"text": "This is a Test"}))

Similarly, the CGIHTTPRequestHandler can be tricked into executing CGI scripts that would normally not be executable. The class normally only allows executing CGI scripts that are direct children of one of the directories listed in cgi_directories. Furthermore, only direct subdirectories of the document root (the current working directory) can be valid CGI directories.

This can be seen in the following example. Even though the sample server shown above includes “/cgi-bin/subdir” as part of the request handler’s cgi_directories, a CGI script named test.py in that directory is not executed:

$ curl http://localhost:8000/cgi-bin/subdir/test.py […] <p>Error code 403. <p>Message: CGI script is not a plain file (‘/cgi-bin/subdir’). […]

Here, is_cgi() set self.cgi_info to ('/cgi-bin’, ‘subdir/test.py’) and returned True. Next, run_cgi() further dissected these paths to perform some sanity checks, thereby mistakenly assuming subdir to be the executable script’s filename and test.py to be path info. As subdir is not an executable file, run_cgi() returns an error message. However, if the forward slash between subdir and test.py is replaced with %2f, invoking the script succeeds:

$ curl http://localhost:8000/cgi-bin/subdir%2ftest.py {"text": "This is a Test"}

This is because neither is_cgi() nor run_cgi() URL decode the path during processing until run_cgi() tries to determine whether the target script is an executable file. More specifically, as subdir%2ftest.py does not contain a forward slash, it is not split into the script name subdir and path info test.py, as in the previous example.

Similarly, using URL encoded forward slashes, executables outside of a CGI directory can be executed:

$ curl http://localhost:8000/cgi-bin/…%2ftraversed.py {"text": "This is a Test"}

Workaround

Subclass CGIHTTPRequestHandler and override the is_cgi() method with a variant that first URL decodes the supplied path, for example:

class FixedCGIHTTPRequestHandler(CGIHTTPServer.CGIHTTPRequestHandler): def is_cgi(self): self.path = urllib.unquote(self.path) return CGIHTTPServer.CGIHTTPRequestHandler.is_cgi(self)

Fix

<FIX>

Security Risk

The vulnerability can be used to gain access to the contents of CGI binaries or the source code of CGI scripts. This may reveal sensitve information, for example access credentials. This can greatly help attackers in mounting further attacks and is therefore considered to pose a high risk. Furthermore attackers may be able to execute code that was not intended to be executed.

The CGIHTTPServer code does contain this warning: “SECURITY WARNING: DON’T USE THIS CODE UNLESS YOU ARE INSIDE A FIREWALL” Even when used on a local computer this may allow other local users to execute code in the context of another user.

Related news

CVE-2022-34456: DSA-2022-267: Dell EMC Metronode VS5 Security Update for Multiple Third-Party Component Vulnerabilities

Dell EMC Metro node, Version(s) prior to 7.1, contain a Code Injection Vulnerability. An authenticated nonprivileged attacker could potentially exploit this vulnerability, leading to the execution of arbitrary OS commands on the application.

CVE: Latest News

CVE-2023-50976: Transactions API Authorization by oleiman · Pull Request #14969 · redpanda-data/redpanda
CVE-2023-6905
CVE-2023-6903
CVE-2023-6904
CVE-2023-3907