CVE Vulnerabilities

CVE-2016-5310

Out-of-bounds Write

Published: Apr 14, 2017 | Modified: Sep 09, 2021
CVSS 3.x
5.5
MEDIUM
Source:
NVD
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
CVSS 2.x
4.3 MEDIUM
AV:N/AC:M/Au:N/C:N/I:N/A:P
RedHat/V2
RedHat/V3
Ubuntu

The RAR file parser component in the AntiVirus Decomposer engine in Symantec Advanced Threat Protection: Network (ATP); Symantec Email Security.Cloud; Symantec Data Center Security: Server; Symantec Endpoint Protection (SEP) for Windows before 12.1.6 MP5; Symantec Endpoint Protection (SEP) for Mac; Symantec Endpoint Protection (SEP) for Linux before 12.1.6 MP6; Symantec Endpoint Protection for Small Business Enterprise (SEP SBE/SEP.Cloud); Symantec Endpoint Protection Cloud (SEPC) for Windows/Mac; Symantec Endpoint Protection Small Business Edition 12.1; CSAPI before 10.0.4 HF02; Symantec Protection Engine (SPE) before 7.0.5 HF02, 7.5.x before 7.5.4 HF02, 7.5.5 before 7.5.5 HF01, and 7.8.x before 7.8.0 HF03; Symantec Mail Security for Domino (SMSDOM) before 8.0.9 HF2.1, 8.1.x before 8.1.2 HF2.3, and 8.1.3 before 8.1.3 HF2.2; Symantec Mail Security for Microsoft Exchange (SMSMSE) before 6.5.8_3968140 HF2.3, 7.x before 7.0_3966002 HF2.1, and 7.5.x before 7.5_3966008 VHF2.2; Symantec Protection for SharePoint Servers (SPSS) before SPSS_6.0.3_To_6.0.5_HF_2.5 update, 6.0.6 before 6.0.6 HF_2.6, and 6.0.7 before 6.0.7_HF_2.7; Symantec Messaging Gateway (SMG) before 10.6.2; Symantec Messaging Gateway for Service Providers (SMG-SP) before 10.5 patch 260 and 10.6 before patch 259; Symantec Web Gateway; and Symantec Web Security.Cloud allows remote attackers to cause a denial of service (memory corruption) via a crafted RAR file that is mishandled during decompression.

Weakness

The product writes data past the end, or before the beginning, of the intended buffer.

Affected Software

Name Vendor Start Version End Version
Protection_engine Symantec * 7.0.5
Protection_for_sharepoint_servers Symantec 6.0.5 6.0.5
Mail_security_for_microsoft_exchange Symantec * 6.5.8
Messaging_gateway Symantec * 10.6.1
Mail_security_for_domino Symantec * 8.0.9
Endpoint_protection Symantec * 12.1.4
Mail_security_for_domino Symantec 8.1.3 8.1.3
Endpoint_protection_for_small_business Symantec * 12.1
Mail_security_for_microsoft_exchange Symantec 7.0.3 7.0.3
Web_security.cloud Symantec - -
Messaging_gateway_for_service_providers Symantec 10.6 10.6
Protection_for_sharepoint_servers Symantec 6.0.3 6.0.3
Mail_security_for_microsoft_exchange Symantec 7.0.4 7.0.4
Endpoint_protection Symantec * 12.1.6
Protection_engine Symantec 7.5.0 7.5.0
Mail_security_for_microsoft_exchange Symantec 7.5.2 7.5.2
Mail_security_for_microsoft_exchange Symantec 7.5.1 7.5.1
Protection_for_sharepoint_servers Symantec 6.0.7 6.0.7
Messaging_gateway_for_service_providers Symantec 10.5 10.5
Advanced_threat_protection Symantec - -
Mail_security_for_domino Symantec 8.1.2 8.1.2
Protection_for_sharepoint_servers Symantec 6.0.4 6.0.4
Protection_engine Symantec 7.5.1 7.5.1
Email_security.cloud Symantec - -
Mail_security_for_microsoft_exchange Symantec 7.0 7.0
Protection_engine Symantec 7.5.4 7.5.4
Endpoint_protection_cloud Symantec - -
Mail_security_for_microsoft_exchange Symantec 7.5 7.5
Mail_security_for_microsoft_exchange Symantec 7.5.3 7.5.3
Csapi Symantec * 10.0.4
Endpoint_protection_for_small_business Symantec - -
Endpoint_protection Symantec * 12.1.6
Protection_for_sharepoint_servers Symantec 6.0.6 6.0.6
Endpoint_protection_cloud Symantec - -
Protection_engine Symantec 7.8.0 7.8.0
Protection_engine Symantec 7.5.3 7.5.3
Protection_engine Symantec 7.5.2 7.5.2
Mail_security_for_microsoft_exchange Symantec 7.5.4 7.5.4
Web_gateway Symantec - -
Mail_security_for_microsoft_exchange Symantec 7.0.2 7.0.2
Protection_engine Symantec 7.5.5 7.5.5
Mail_security_for_microsoft_exchange Symantec 7.0.1 7.0.1
Symantec_data_center_security_server Broadcom - -

Potential Mitigations

  • Use a language that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.

  • For example, many languages that perform their own memory management, such as Java and Perl, are not subject to buffer overflows. Other languages, such as Ada and C#, typically provide overflow protection, but the protection can be disabled by the programmer.

  • Be wary that a language’s interface to native code may still be subject to overflows, even if the language itself is theoretically safe.

  • Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.

  • Examples include the Safe C String Library (SafeStr) by Messier and Viega [REF-57], and the Strsafe.h library from Microsoft [REF-56]. These libraries provide safer versions of overflow-prone string-handling functions.

  • Use automatic buffer overflow detection mechanisms that are offered by certain compilers or compiler extensions. Examples include: the Microsoft Visual Studio /GS flag, Fedora/Red Hat FORTIFY_SOURCE GCC flag, StackGuard, and ProPolice, which provide various mechanisms including canary-based detection and range/index checking.

  • D3-SFCV (Stack Frame Canary Validation) from D3FEND [REF-1334] discusses canary-based detection in detail.

  • Consider adhering to the following rules when allocating and managing an application’s memory:

  • Run or compile the software using features or extensions that randomly arrange the positions of a program’s executable and libraries in memory. Because this makes the addresses unpredictable, it can prevent an attacker from reliably jumping to exploitable code.

  • Examples include Address Space Layout Randomization (ASLR) [REF-58] [REF-60] and Position-Independent Executables (PIE) [REF-64]. Imported modules may be similarly realigned if their default memory addresses conflict with other modules, in a process known as “rebasing” (for Windows) and “prelinking” (for Linux) [REF-1332] using randomly generated addresses. ASLR for libraries cannot be used in conjunction with prelink since it would require relocating the libraries at run-time, defeating the whole purpose of prelinking.

  • For more information on these techniques see D3-SAOR (Segment Address Offset Randomization) from D3FEND [REF-1335].

  • Use a CPU and operating system that offers Data Execution Protection (using hardware NX or XD bits) or the equivalent techniques that simulate this feature in software, such as PaX [REF-60] [REF-61]. These techniques ensure that any instruction executed is exclusively at a memory address that is part of the code segment.

  • For more information on these techniques see D3-PSEP (Process Segment Execution Prevention) from D3FEND [REF-1336].

References