Fix Insufficient Logging & Monitoring in CherryPy
Insufficient Logging & Monitoring (OWASP A09:2021) is a gift to attackers. In CherryPy, relying on default stdout or failing to track security-critical events like 4xx/5xx spikes and authentication failures means you're blind to active exploitation. To harden the stack, we must implement structured logging, persistent storage for audit trails, and proactive monitoring hooks.
The Vulnerable Pattern
import cherrypyclass VulnerableApp: @cherrypy.expose def login(self, username, password): # FAIL: No logging of login attempts. # If an attacker brute-forces this, there is no record in the logs. if username == ‘admin’ and password == ‘password123’: return ‘Welcome’ return ‘Access Denied’
if name == ‘main’: # FAIL: Default config only logs to stdout/stderr; no persistent log files or rotation. cherrypy.quickstart(VulnerableApp())
The Secure Implementation
The secure implementation fixes the visibility gap by: 1. Explicitly enabling 'log.access_file' and 'log.error_file' to ensure persistence. 2. Utilizing 'cherrypy.log' within sensitive endpoints to record security events (Auth Success/Failure) along with the source IP. 3. Integrating a 'RotatingFileHandler' to prevent Disk Exhaustion (DoS) from bloated log files. 4. Disabling 'show_tracebacks' in production to prevent information leakage while still recording the full trace in the internal error log for forensics.
import cherrypy import logging from logging.handlers import RotatingFileHandlerConfigure structured logging with rotation
log_handler = RotatingFileHandler(‘security.log’, maxBytes=1000000, backupCount=5) log_handler.setFormatter(logging.Formatter(’%(asctime)s - %(levelname)s - %(message)s’))
class SecuredApp: @cherrypy.expose def login(self, username, password): client_ip = cherrypy.request.remote.ip if username == ‘admin’ and password == ‘password123’: cherrypy.log(f”AUTH_SUCCESS: User {username} logged in from {client_ip}”, severity=logging.INFO) return ‘Welcome’
# SECURE: Log failed attempts with metadata for SIEM/Fail2Ban ingestion cherrypy.log(f"AUTH_FAILURE: Failed login attempt for {username} from {client_ip}", severity=logging.WARNING) raise cherrypy.HTTPError(401, "Unauthorized")config = { ‘global’: { ‘log.screen’: False, ‘log.access_file’: ‘access.log’, ‘log.error_file’: ‘error.log’, ‘request.show_tracebacks’: False } }
if name == ‘main’: app = cherrypy.tree.mount(SecuredApp(), ’/’, config) app.log.error_log.addHandler(log_handler) cherrypy.engine.start() cherrypy.engine.block()
Your CherryPy API
might be exposed to Insufficient Logging & Monitoring
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.