Fix Improper Assets Management in CherryPy
Improper Asset Management in CherryPy occurs when developers expose the entire project filesystem or sensitive subdirectories via the 'tools.staticdir' configuration. By failing to isolate public assets from application logic and secrets, you create a massive information disclosure primitive. A common mistake is mounting the root URL to the current working directory, allowing attackers to exfiltrate .env files, git logs, and source code.
The Vulnerable Pattern
import cherrypy import osclass WebApp: @cherrypy.expose def index(self): return “Welcome to the insecure portal.”
VULNERABLE: Mapping root URL to the current working directory
config = { ’/’: { ‘tools.staticdir.on’: True, ‘tools.staticdir.dir’: os.path.abspath(os.getcwd()) } }
if name == ‘main’: cherrypy.quickstart(WebApp(), ’/’, config)
The Secure Implementation
The vulnerable configuration uses 'os.getcwd()' as the static directory for the root path ('/'). This exposes every file in the project, including sensitive configuration files and source code. The secure version fixes this by: 1. Creating a dedicated 'public_assets' directory that contains only non-sensitive files. 2. Moving the static asset mount point from the root ('/') to a specific sub-path ('/static'). 3. Explicitly disabling 'staticdir' for the root path to prevent inheritance misconfigurations. This limits the attack surface to only the files intended for public consumption.
import cherrypy import osclass WebApp: @cherrypy.expose def index(self): return “Welcome to the hardened portal.”
SECURE: Isolate assets to a specific ‘public’ folder and mount to a sub-path
base_dir = os.path.abspath(os.path.dirname(file)) static_path = os.path.join(base_dir, ‘public_assets’)
config = { ’/’: { ‘tools.staticdir.on’: False # Explicitly disable at root }, ‘/static’: { ‘tools.staticdir.on’: True, ‘tools.staticdir.dir’: static_path, ‘tools.staticdir.content_types’: {‘js’: ‘application/javascript’, ‘css’: ‘text/css’} } }
if name == ‘main’: # Ensure the directory exists to prevent startup crashes if not os.path.exists(static_path): os.makedirs(static_path) cherrypy.quickstart(WebApp(), ’/’, config)
Your CherryPy API
might be exposed to Improper Assets Management
74% of CherryPy apps fail this check. Hackers use automated scanners to find this specific flaw. Check your codebase before they do.
Free Tier • No Credit Card • Instant Report
Verified by Ghost Labs Security Team
This content is continuously validated by our automated security engine and reviewed by our research team. Ghost Labs analyzes over 500+ vulnerability patterns across 40+ frameworks to provide up-to-date remediation strategies.