The CVSS 7.1 rating for CVE-2026-72607 fundamentally misrepresents the severity of this vulnerability. The 'SELECT-only' framing treats data exfiltration as a consolation prize when the attack actually yields the highest-value target in any system: the credential database. Staff bcrypt password hashes and patron PII represent exactly what SELECT is designed to retrieve—this is not a limited outcome, it's the jackpot. The 7.1 score reflects exploit complexity (authentication requirement plus multi-step payload storage and cron trigger), not impact.

The permission model is a critical vulnerability multiplier. The 'tools => items_batchmod' permission governs routine cataloging workflows and is commonly held by acquisitions staff, catalogers, and circulation managers—not IT administrators. This permission grants access to a data surface capable of controlling SQL construction through system preferences, creating a pathway from routine workflow to the entire credential store. Treat this permission as a privileged security role in your deployment.

The systemic pattern is more important than this single CVE: Koha stores unvalidated input in system preferences and later interpolates that configuration directly into SQL within cron jobs. This is not an isolated bug—it is a data flow architecture flaw where configuration stores bypass the scrutiny that user-facing inputs receive. The payload persists indefinitely in the database and executes every time the agefield cron fires, creating a scheduled exfiltration loop that looks like legitimate system maintenance.

For detection, focus on cron execution telemetry rather than request logs—the temporal separation between payload planting and execution means web application logs will be clean. Flag system preference modifications by non-administrative accounts, particularly for preferences that are rarely touched after initial setup. Audit your scheduled jobs for SQL queries pulling from system preferences without parameterization; this attack surface likely exists elsewhere in the codebase.