This is a summary of the AI-generated 10-question deep analysis. The full version (longer answers, follow-up Q&A, related CVEs) requires login. Read the full analysis β
Q1What is this vulnerability? (Essence + Consequences)
π¨ **Essence**: CUPS-browsed binds to `INADDR_ANY:631` (UDP), trusting ANY source. π‘ **Consequences**: Attackers send malicious IPP requests to controlled URLs.β¦
π‘οΈ **CWE**: CWE-1327 (Improper Restriction of Print Image Rendering). π **Flaw**: The daemon binds to all interfaces without source validation. π« **Result**: It blindly trusts packets from any IP address on the network.
Q3Who is affected? (Versions/Components)
π’ **Vendor**: OpenPrinting. π¨οΈ **Product**: `cups-browsed` (part of CUPS). π§ **OS**: Unix/Linux systems running the CUPS printing system. β οΈ **Scope**: Any instance where `cups-browsed` is active and bound to UDP 631.
Q4What can hackers do? (Privileges/Data)
π **Privileges**: Exploits run as **ROOT**. π¨οΈ **Action**: Remote addition of printers. π **Data**: Triggers HTTP callbacks to attacker-controlled servers.β¦
π **Threshold**: LOW. π **Auth**: None required (PR:N). π **Access**: Network level (AV:N). π±οΈ **UI**: No user interaction needed (UI:N). π― **AC**: Low complexity. Easy to exploit remotely.
Q6Is there a public Exp? (PoC/Wild Exploitation)
π₯ **Public Exp**: YES. Multiple PoCs available on GitHub. π οΈ **Tools**: `spill`, `CVE-2024-47176-Scanner`, Python scripts. π **Status**: Wild exploitation possible via simple UDP packet sends to port 631.
Q7How to self-check? (Features/Scanning)
π **Check**: Scan UDP port 631. π‘ **Method**: Send crafted IPP request & listen for HTTP callback. π§° **Tools**: Use Go-based scanners (`spill`) or Python scripts.β¦
π§ **Workaround**: Disable `cups-browsed` service if not needed. π« **Network**: Block UDP 631 inbound from untrusted networks. π **Config**: Restrict binding to localhost (`127.0.0.1`) if possible.β¦