ID

VAR-201710-1086


CVE

CVE-2017-11122


TITLE

Broadcom BCM4355C0 of Wi-Fi Vulnerability that triggers information disclosure on chip

Trust: 0.8

sources: JVNDB: JVNDB-2017-009425

DESCRIPTION

On Broadcom BCM4355C0 Wi-Fi chips 9.44.78.27.0.1.56, an attacker can trigger an information leak due to insufficient length validation, related to ICMPv6 router advertisement offloading. Broadcom BCM4355C0 Wi-Fi chips is a Wi-Fi chip of Broadcom (Broadcom). Wi-Fi firmware is the firmware used in it. There is a security vulnerability in version 9.44.78.27.0.1.56 of the Broadcom BCM4355C0 Wi-Fi chip. The vulnerability is caused by the insufficient calculation length of the program. An attacker could exploit this vulnerability to obtain information. These chips are present in both mobile devices and Wi-Fi routers, and are capable of handling many Wi-Fi related events without delegating to the host OS. In order to reduce overhead on the host, some Broadcom Wi-Fi chips support offloading of certain ICMPv6 packets, including Router Advertisements, Neighbor Advertisements and Neighbor Solicitations. On the BCM4355C0 SoC with firmware version 9.44.78.27.0.1.56, the ICMPv6 offloading is performed by ROM function 0x39AF8. This function first inspects the ethertype and ensures that it is an IPv6 packet. Then, it reads the protocol number in the "Next Header" field to verify that this is indeed an ICMPv6 packet (IPv6_ICMP). Lastly, the function reads the ICMPv6 "Type" field, and dispatches the packet to the appropriate handler. In the case of "Router Advertisment" packets (type 134), ROM function 0x399A0 is called to handle the packet. The function has the following approximate high-level logic: int function_0x399A0(void* ctx, char* ipv6_header, ...) { ... //Reading some IPv6 fields uint16_t payload_length = ntohs(*((uint16_t*)(ipv6_header + 4))); uint16_t router_lifetime = ntohs(*((uint16_t*)(ipv6_header + 46))); //Searching for a matching RA struct ra_context_t* ra_array = (struct ra_context_t*)(*((uint32_t*)ctx + 151)); for (int i=0; i<10; i++) { struct ra_context_t* ra = &(ra_array[i]); if (memcmp(ra->src_addr, ipv6_header + 8, 0x10)) continue; if (ra->payload_length != payload_length) continue; if (memcmp(ra->data, ipv6_header + 40, payload_length)) continue; if (1000 * router_lifetime <= 180000) continue; if (firmware_timestamp() >= ra->timestamp + 60000) continue; //Found a match! return 2; //Indicates that the packet is filtered and not passed //on to the OS } //Find the entry to overwrite uint8_t* insertion_idx_ptr = (uint8_t*)((void*)ra_array + 322); if (*insertion_idx_ptr > 9) *insertion_idx_ptr = 0; struct ra_context_t* ra = &(ra_array[*insertion_idx_ptr]); //Populate the entry ra->payload_length = payload_length; ra->timestamp = firmware_timestamp(); memcpy(ra->src_addr, ipv6_header + 8, 0x10); char* new_ra_data = malloc(payload_length); memcpy(new_ra_data, ipv6_header + 40, payload_length); if (ra->ra_data) free(ra->ra_data); ra->ra_data = new_ra_data; (*insertion_idx_ptr)++; return 0; //Pass the packet on to the OS } Where "ra_context_t" has the following structure: struct ra_context_t { char* ra_data; uint32_t payload_length; uint32_t unused; char src_addr[0x10]; uint32_t timestamp; }; As we can see above, the function fails to validate that the IPv6 "Payload Length" field does not exceed the length of the packet. As a result, if the incoming RA fails to match any of the 10 cached RAs, a new entry will be saved, triggering a copy of packet's content into a newly allocated buffer, using the attacker-controlled "payload length" field (thereby triggering an OOB read). An attacker can use this as an oracle to leak data from the firmware. First, the attacker can send an RA with a payload length field that exceeds the real packet length by a single byte. Then, the attacker may send additional RAs in which the payload length field does indeed match the length of the packet's payload, and is also the same value as the one sent previously. By doing so, the attacker can modify the last byte of the sent RA, iterating over at-most 10 different values. If the attacker guesses the last byte (which was read OOB) correctly, the packet will be filtered. Otherwise, the packet will be forwarded to the host. In order to distinguish between these two cases, an attacker can craft the ICMPv6 packet so that a "regular" host will send back an ICMPv6 error message. For example, by setting the TTL field to zero, the host would generate a ICMPv6 "Time Exceeded" error message. This bug is subject to a 90 day disclosure deadline. After 90 days elapse or a patch has been made broadly available, the bug report will become visible to the public. Found by: laginimaineb

Trust: 1.8

sources: NVD: CVE-2017-11122 // JVNDB: JVNDB-2017-009425 // VULHUB: VHN-101513 // PACKETSTORM: 144461

AFFECTED PRODUCTS

vendor:applemodel:tvosscope:lteversion:10.2.2

Trust: 1.0

vendor:broadcommodel:bcm4355c0scope:lteversion:9.44.78.27.0.1.56

Trust: 1.0

vendor:applemodel:iphone osscope:lteversion:10.3.3

Trust: 1.0

vendor:broadcommodel:bcm4355c0scope: - version: -

Trust: 0.8

vendor:applemodel:iosscope:ltversion:11 (ipad air or later )

Trust: 0.8

vendor:applemodel:iosscope:ltversion:11 (iphone 5s or later )

Trust: 0.8

vendor:applemodel:iosscope:ltversion:11 (ipod touch first 6 generation )

Trust: 0.8

vendor:applemodel:tvosscope:ltversion:11 (apple tv first 4 generation )

Trust: 0.8

vendor:applemodel:tvscope:eqversion:10.2.2

Trust: 0.6

vendor:applemodel:iphone osscope:eqversion:10.3.3

Trust: 0.6

sources: JVNDB: JVNDB-2017-009425 // CNNVD: CNNVD-201707-295 // NVD: CVE-2017-11122

CVSS

SEVERITY

CVSSV2

CVSSV3

nvd@nist.gov: CVE-2017-11122
value: HIGH

Trust: 1.0

NVD: CVE-2017-11122
value: HIGH

Trust: 0.8

CNNVD: CNNVD-201707-295
value: HIGH

Trust: 0.6

VULHUB: VHN-101513
value: MEDIUM

Trust: 0.1

nvd@nist.gov: CVE-2017-11122
severity: MEDIUM
baseScore: 5.0
vectorString: AV:N/AC:L/AU:N/C:P/I:N/A:N
accessVector: NETWORK
accessComplexity: LOW
authentication: NONE
confidentialityImpact: PARTIAL
integrityImpact: NONE
availabilityImpact: NONE
exploitabilityScore: 10.0
impactScore: 2.9
acInsufInfo: NONE
obtainAllPrivilege: NONE
obtainUserPrivilege: NONE
obtainOtherPrivilege: NONE
userInteractionRequired: NONE
version: 2.0

Trust: 1.8

VULHUB: VHN-101513
severity: MEDIUM
baseScore: 5.0
vectorString: AV:N/AC:L/AU:N/C:P/I:N/A:N
accessVector: NETWORK
accessComplexity: LOW
authentication: NONE
confidentialityImpact: PARTIAL
integrityImpact: NONE
availabilityImpact: NONE
exploitabilityScore: 10.0
impactScore: 2.9
acInsufInfo: NONE
obtainAllPrivilege: NONE
obtainUserPrivilege: NONE
obtainOtherPrivilege: NONE
userInteractionRequired: NONE
version: 2.0

Trust: 0.1

nvd@nist.gov: CVE-2017-11122
baseSeverity: HIGH
baseScore: 7.5
vectorString: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
attackVector: NETWORK
attackComplexity: LOW
privilegesRequired: NONE
userInteraction: NONE
scope: UNCHANGED
confidentialityImpact: HIGH
integrityImpact: NONE
availabilityImpact: NONE
exploitabilityScore: 3.9
impactScore: 3.6
version: 3.0

Trust: 1.8

sources: VULHUB: VHN-101513 // JVNDB: JVNDB-2017-009425 // CNNVD: CNNVD-201707-295 // NVD: CVE-2017-11122

PROBLEMTYPE DATA

problemtype:CWE-200

Trust: 1.9

sources: VULHUB: VHN-101513 // JVNDB: JVNDB-2017-009425 // NVD: CVE-2017-11122

THREAT TYPE

remote

Trust: 0.6

sources: CNNVD: CNNVD-201707-295

TYPE

information disclosure

Trust: 0.6

sources: CNNVD: CNNVD-201707-295

CONFIGURATIONS

sources: JVNDB: JVNDB-2017-009425

PATCH

title:HT208112url:https://support.apple.com/en-us/HT208112

Trust: 0.8

title:HT208113url:https://support.apple.com/en-us/HT208113

Trust: 0.8

title:HT208112url:https://support.apple.com/ja-jp/HT208112

Trust: 0.8

title:HT208113url:https://support.apple.com/ja-jp/HT208113

Trust: 0.8

title:Top Pageurl:https://www.broadcom.com/

Trust: 0.8

title:Broadcom BCM4355C0 Wi-Fi Fixes for chip security vulnerabilitiesurl:http://www.cnnvd.org.cn/web/xxk/bdxqById.tag?id=90654

Trust: 0.6

sources: JVNDB: JVNDB-2017-009425 // CNNVD: CNNVD-201707-295

EXTERNAL IDS

db:NVDid:CVE-2017-11122

Trust: 2.6

db:PACKETSTORMid:144461

Trust: 1.8

db:JVNid:JVNVU99806334

Trust: 0.8

db:JVNDBid:JVNDB-2017-009425

Trust: 0.8

db:CNNVDid:CNNVD-201707-295

Trust: 0.7

db:VULHUBid:VHN-101513

Trust: 0.1

sources: VULHUB: VHN-101513 // JVNDB: JVNDB-2017-009425 // PACKETSTORM: 144461 // CNNVD: CNNVD-201707-295 // NVD: CVE-2017-11122

REFERENCES

url:https://support.apple.com/ht208112

Trust: 1.7

url:https://support.apple.com/ht208113

Trust: 1.7

url:https://support.apple.com/en-us/ht208112

Trust: 1.7

url:https://support.apple.com/en-us/ht208113

Trust: 1.7

url:http://packetstormsecurity.com/files/144461/broadcom-icmpv6-information-leak.html

Trust: 1.7

url:https://bugs.chromium.org/p/project-zero/issues/detail?id=1300

Trust: 1.7

url:https://nvd.nist.gov/vuln/detail/cve-2017-11122

Trust: 0.9

url:http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2017-11122

Trust: 0.8

url:http://jvn.jp/vu/jvnvu99806334/index.html

Trust: 0.8

sources: VULHUB: VHN-101513 // JVNDB: JVNDB-2017-009425 // PACKETSTORM: 144461 // CNNVD: CNNVD-201707-295 // NVD: CVE-2017-11122

CREDITS

Google Security Research, laginimaineb

Trust: 0.1

sources: PACKETSTORM: 144461

SOURCES

db:VULHUBid:VHN-101513
db:JVNDBid:JVNDB-2017-009425
db:PACKETSTORMid:144461
db:CNNVDid:CNNVD-201707-295
db:NVDid:CVE-2017-11122

LAST UPDATE DATE

2024-11-23T19:27:47.221000+00:00


SOURCES UPDATE DATE

db:VULHUBid:VHN-101513date:2019-03-08T00:00:00
db:JVNDBid:JVNDB-2017-009425date:2017-11-10T00:00:00
db:CNNVDid:CNNVD-201707-295date:2019-03-13T00:00:00
db:NVDid:CVE-2017-11122date:2024-11-21T03:07:08.997

SOURCES RELEASE DATE

db:VULHUBid:VHN-101513date:2017-10-04T00:00:00
db:JVNDBid:JVNDB-2017-009425date:2017-11-10T00:00:00
db:PACKETSTORMid:144461date:2017-10-02T01:11:11
db:CNNVDid:CNNVD-201707-295date:2017-07-10T00:00:00
db:NVDid:CVE-2017-11122date:2017-10-04T01:29:02.010