CVE-2018-12207 Vulnerability Analysis & Exploit Details

CVE-2018-12207
Vulnerability Scoring

6.5
/10
High Risk

If left unpatched, CVE-2018-12207 could lead to major system disruptions or data loss.

Attack Complexity Details

  • Attack Complexity: Low
    Exploits can be performed without significant complexity or special conditions.
  • Attack Vector: Local
    Vulnerability requires local system access.
  • Privileges Required: Low
    Some privileges are necessary to exploit the vulnerability.
  • Scope: Changed
    Successful exploitation can impact components beyond the vulnerable component.
  • User Interaction: None
    No user interaction is necessary for exploitation.

CVE-2018-12207 Details

Status: Modified

Last updated: 🕞 21 Nov 2024, 03:44 UTC
Originally published on: 🕗 14 Nov 2019, 20:15 UTC

Time between publication and last update: 1833 days

CVSS Release: version 3

CVSS3 Source

nvd@nist.gov

CVSS3 Type

Primary

CVSS3 Vector

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:N/I:N/A:H

CVE-2018-12207 Vulnerability Summary

CVE-2018-12207: Improper invalidation for page table updates by a virtual guest operating system for multiple Intel(R) Processors may allow an authenticated user to potentially enable denial of service of the host system via local access.

Assessing the Risk of CVE-2018-12207

Access Complexity Graph

The exploitability of CVE-2018-12207 depends on two key factors: attack complexity (the level of effort required to execute an exploit) and privileges required (the access level an attacker needs).

Exploitability Analysis for CVE-2018-12207

CVE-2018-12207 presents an accessible attack vector with minimal effort required. Restricting access controls and implementing security updates are critical to reducing exploitation risks.

Understanding AC and PR

A lower complexity and fewer privilege requirements make exploitation easier. Security teams should evaluate these aspects to determine the urgency of mitigation strategies, such as patch management and access control policies.

Attack Complexity (AC) measures the difficulty in executing an exploit. A high AC means that specific conditions must be met, making an attack more challenging, while a low AC means the vulnerability can be exploited with minimal effort.

Privileges Required (PR) determine the level of system access necessary for an attack. Vulnerabilities requiring no privileges are more accessible to attackers, whereas high privilege requirements limit exploitation to authorized users with elevated access.

CVSS Score Breakdown Chart

Above is the CVSS Sub-score Breakdown for CVE-2018-12207, illustrating how Base, Impact, and Exploitability factors combine to form the overall severity rating. A higher sub-score typically indicates a more severe or easier-to-exploit vulnerability.

CIA Impact Analysis

Below is the Impact Analysis for CVE-2018-12207, showing how Confidentiality, Integrity, and Availability might be affected if the vulnerability is exploited. Higher values usually signal greater potential damage.

  • Confidentiality: None
    CVE-2018-12207 has no significant impact on data confidentiality.
  • Integrity: None
    CVE-2018-12207 poses no threat to data integrity.
  • Availability: High
    CVE-2018-12207 can disrupt system operations, potentially causing complete denial of service (DoS).

Exploit Prediction Scoring System (EPSS)

The EPSS score estimates the probability that this vulnerability will be exploited in the near future.

EPSS Score: 0.048% (probability of exploit)

EPSS Percentile: 20.46% (lower percentile = lower relative risk)
This vulnerability is less risky than approximately 79.53999999999999% of others.

CVE-2018-12207 References

External References

CWE Common Weakness Enumeration

CWE-20

CAPEC Common Attack Pattern Enumeration and Classification

  • Buffer Overflow via Environment Variables CAPEC-10 This attack pattern involves causing a buffer overflow through manipulation of environment variables. Once the adversary finds that they can modify an environment variable, they may try to overflow associated buffers. This attack leverages implicit trust often placed in environment variables.
  • Server Side Include (SSI) Injection CAPEC-101 An attacker can use Server Side Include (SSI) Injection to send code to a web application that then gets executed by the web server. Doing so enables the attacker to achieve similar results to Cross Site Scripting, viz., arbitrary code execution and information disclosure, albeit on a more limited scale, since the SSI directives are nowhere near as powerful as a full-fledged scripting language. Nonetheless, the attacker can conveniently gain access to sensitive files, such as password files, and execute shell commands.
  • Cross Zone Scripting CAPEC-104 An attacker is able to cause a victim to load content into their web-browser that bypasses security zone controls and gain access to increased privileges to execute scripting code or other web objects such as unsigned ActiveX controls or applets. This is a privilege elevation attack targeted at zone-based web-browser security.
  • Command Line Execution through SQL Injection CAPEC-108 An attacker uses standard SQL injection methods to inject data into the command line for execution. This could be done directly through misuse of directives such as MSSQL_xp_cmdshell or indirectly through injection of data into the database that would be interpreted as shell commands. Sometime later, an unscrupulous backend application (or could be part of the functionality of the same application) fetches the injected data stored in the database and uses this data as command line arguments without performing proper validation. The malicious data escapes that data plane by spawning new commands to be executed on the host.
  • Object Relational Mapping Injection CAPEC-109 An attacker leverages a weakness present in the database access layer code generated with an Object Relational Mapping (ORM) tool or a weakness in the way that a developer used a persistence framework to inject their own SQL commands to be executed against the underlying database. The attack here is similar to plain SQL injection, except that the application does not use JDBC to directly talk to the database, but instead it uses a data access layer generated by an ORM tool or framework (e.g. Hibernate). While most of the time code generated by an ORM tool contains safe access methods that are immune to SQL injection, sometimes either due to some weakness in the generated code or due to the fact that the developer failed to use the generated access methods properly, SQL injection is still possible.
  • SQL Injection through SOAP Parameter Tampering CAPEC-110 An attacker modifies the parameters of the SOAP message that is sent from the service consumer to the service provider to initiate a SQL injection attack. On the service provider side, the SOAP message is parsed and parameters are not properly validated before being used to access a database in a way that does not use parameter binding, thus enabling the attacker to control the structure of the executed SQL query. This pattern describes a SQL injection attack with the delivery mechanism being a SOAP message.
  • Double Encoding CAPEC-120 The adversary utilizes a repeating of the encoding process for a set of characters (that is, character encoding a character encoding of a character) to obfuscate the payload of a particular request. This may allow the adversary to bypass filters that attempt to detect illegal characters or strings, such as those that might be used in traversal or injection attacks. Filters may be able to catch illegal encoded strings, but may not catch doubly encoded strings. For example, a dot (.), often used in path traversal attacks and therefore often blocked by filters, could be URL encoded as %2E. However, many filters recognize this encoding and would still block the request. In a double encoding, the % in the above URL encoding would be encoded again as %25, resulting in %252E which some filters might not catch, but which could still be interpreted as a dot (.) by interpreters on the target.
  • Subverting Environment Variable Values CAPEC-13 The adversary directly or indirectly modifies environment variables used by or controlling the target software. The adversary's goal is to cause the target software to deviate from its expected operation in a manner that benefits the adversary.
  • Format String Injection CAPEC-135 An adversary includes formatting characters in a string input field on the target application. Most applications assume that users will provide static text and may respond unpredictably to the presence of formatting character. For example, in certain functions of the C programming languages such as printf, the formatting character %s will print the contents of a memory location expecting this location to identify a string and the formatting character %n prints the number of DWORD written in the memory. An adversary can use this to read or write to memory locations or files, or simply to manipulate the value of the resulting text in unexpected ways. Reading or writing memory may result in program crashes and writing memory could result in the execution of arbitrary code if the adversary can write to the program stack.
  • LDAP Injection CAPEC-136 An attacker manipulates or crafts an LDAP query for the purpose of undermining the security of the target. Some applications use user input to create LDAP queries that are processed by an LDAP server. For example, a user might provide their username during authentication and the username might be inserted in an LDAP query during the authentication process. An attacker could use this input to inject additional commands into an LDAP query that could disclose sensitive information. For example, entering a * in the aforementioned query might return information about all users on the system. This attack is very similar to an SQL injection attack in that it manipulates a query to gather additional information or coerce a particular return value.
  • Client-side Injection-induced Buffer Overflow CAPEC-14 This type of attack exploits a buffer overflow vulnerability in targeted client software through injection of malicious content from a custom-built hostile service. This hostile service is created to deliver the correct content to the client software. For example, if the client-side application is a browser, the service will host a webpage that the browser loads.
  • Input Data Manipulation CAPEC-153 An attacker exploits a weakness in input validation by controlling the format, structure, and composition of data to an input-processing interface. By supplying input of a non-standard or unexpected form an attacker can adversely impact the security of the target.
  • Flash Injection CAPEC-182 An attacker tricks a victim to execute malicious flash content that executes commands or makes flash calls specified by the attacker. One example of this attack is cross-site flashing, an attacker controlled parameter to a reference call loads from content specified by the attacker.
  • XSS Using MIME Type Mismatch CAPEC-209 An adversary creates a file with scripting content but where the specified MIME type of the file is such that scripting is not expected. The adversary tricks the victim into accessing a URL that responds with the script file. Some browsers will detect that the specified MIME type of the file does not match the actual type of its content and will automatically switch to using an interpreter for the real content type. If the browser does not invoke script filters before doing this, the adversary's script may run on the target unsanitized, possibly revealing the victim's cookies or executing arbitrary script in their browser.
  • Exploiting Trust in Client CAPEC-22 An attack of this type exploits vulnerabilities in client/server communication channel authentication and data integrity. It leverages the implicit trust a server places in the client, or more importantly, that which the server believes is the client. An attacker executes this type of attack by communicating directly with the server where the server believes it is communicating only with a valid client. There are numerous variations of this type of attack.
  • File Content Injection CAPEC-23 An adversary poisons files with a malicious payload (targeting the file systems accessible by the target software), which may be passed through by standard channels such as via email, and standard web content like PDF and multimedia files. The adversary exploits known vulnerabilities or handling routines in the target processes, in order to exploit the host's trust in executing remote content, including binary files.
  • Serialized Data with Nested Payloads CAPEC-230 Applications often need to transform data in and out of a data format (e.g., XML and YAML) by using a parser. It may be possible for an adversary to inject data that may have an adverse effect on the parser when it is being processed. Many data format languages allow the definition of macro-like structures that can be used to simplify the creation of complex structures. By nesting these structures, causing the data to be repeatedly substituted, an adversary can cause the parser to consume more resources while processing, causing excessive memory consumption and CPU utilization.
  • Oversized Serialized Data Payloads CAPEC-231 An adversary injects oversized serialized data payloads into a parser during data processing to produce adverse effects upon the parser such as exhausting system resources and arbitrary code execution.
  • Filter Failure through Buffer Overflow CAPEC-24 In this attack, the idea is to cause an active filter to fail by causing an oversized transaction. An attacker may try to feed overly long input strings to the program in an attempt to overwhelm the filter (by causing a buffer overflow) and hoping that the filter does not fail securely (i.e. the user input is let into the system unfiltered).
  • XML Injection CAPEC-250 An attacker utilizes crafted XML user-controllable input to probe, attack, and inject data into the XML database, using techniques similar to SQL injection. The user-controllable input can allow for unauthorized viewing of data, bypassing authentication or the front-end application for direct XML database access, and possibly altering database information.
  • Fuzzing for garnering other adjacent user/sensitive data CAPEC-261 An adversary who is authorized to send queries to a target sends variants of expected queries in the hope that these modified queries might return information (directly or indirectly through error logs) beyond what the expected set of queries should provide.
  • Leverage Alternate Encoding CAPEC-267 An adversary leverages the possibility to encode potentially harmful input or content used by applications such that the applications are ineffective at validating this encoding standard.
  • Fuzzing CAPEC-28 In this attack pattern, the adversary leverages fuzzing to try to identify weaknesses in the system. Fuzzing is a software security and functionality testing method that feeds randomly constructed input to the system and looks for an indication that a failure in response to that input has occurred. Fuzzing treats the system as a black box and is totally free from any preconceptions or assumptions about the system. Fuzzing can help an attacker discover certain assumptions made about user input in the system. Fuzzing gives an attacker a quick way of potentially uncovering some of these assumptions despite not necessarily knowing anything about the internals of the system. These assumptions can then be turned against the system by specially crafting user input that may allow an attacker to achieve their goals.
  • Using Leading 'Ghost' Character Sequences to Bypass Input Filters CAPEC-3 Some APIs will strip certain leading characters from a string of parameters. An adversary can intentionally introduce leading "ghost" characters (extra characters that don't affect the validity of the request at the API layer) that enable the input to pass the filters and therefore process the adversary's input. This occurs when the targeted API will accept input data in several syntactic forms and interpret it in the equivalent semantic way, while the filter does not take into account the full spectrum of the syntactic forms acceptable to the targeted API.
  • Accessing/Intercepting/Modifying HTTP Cookies CAPEC-31 This attack relies on the use of HTTP Cookies to store credentials, state information and other critical data on client systems. There are several different forms of this attack. The first form of this attack involves accessing HTTP Cookies to mine for potentially sensitive data contained therein. The second form involves intercepting this data as it is transmitted from client to server. This intercepted information is then used by the adversary to impersonate the remote user/session. The third form is when the cookie's content is modified by the adversary before it is sent back to the server. Here the adversary seeks to convince the target server to operate on this falsified information.
  • MIME Conversion CAPEC-42 An attacker exploits a weakness in the MIME conversion routine to cause a buffer overflow and gain control over the mail server machine. The MIME system is designed to allow various different information formats to be interpreted and sent via e-mail. Attack points exist when data are converted to MIME compatible format and back.
  • Exploiting Multiple Input Interpretation Layers CAPEC-43 An attacker supplies the target software with input data that contains sequences of special characters designed to bypass input validation logic. This exploit relies on the target making multiples passes over the input data and processing a "layer" of special characters with each pass. In this manner, the attacker can disguise input that would otherwise be rejected as invalid by concealing it with layers of special/escape characters that are stripped off by subsequent processing steps. The goal is to first discover cases where the input validation layer executes before one or more parsing layers. That is, user input may go through the following logic in an application: <parser1> --> <input validator> --> <parser2>. In such cases, the attacker will need to provide input that will pass through the input validator, but after passing through parser2, will be converted into something that the input validator was supposed to stop.
  • Buffer Overflow via Symbolic Links CAPEC-45 This type of attack leverages the use of symbolic links to cause buffer overflows. An adversary can try to create or manipulate a symbolic link file such that its contents result in out of bounds data. When the target software processes the symbolic link file, it could potentially overflow internal buffers with insufficient bounds checking.
  • Overflow Variables and Tags CAPEC-46 This type of attack leverages the use of tags or variables from a formatted configuration data to cause buffer overflow. The adversary crafts a malicious HTML page or configuration file that includes oversized strings, thus causing an overflow.
  • Buffer Overflow via Parameter Expansion CAPEC-47 In this attack, the target software is given input that the adversary knows will be modified and expanded in size during processing. This attack relies on the target software failing to anticipate that the expanded data may exceed some internal limit, thereby creating a buffer overflow.
  • Signature Spoof CAPEC-473 An attacker generates a message or datablock that causes the recipient to believe that the message or datablock was generated and cryptographically signed by an authoritative or reputable source, misleading a victim or victim operating system into performing malicious actions.
  • Embedding NULL Bytes CAPEC-52 An adversary embeds one or more null bytes in input to the target software. This attack relies on the usage of a null-valued byte as a string terminator in many environments. The goal is for certain components of the target software to stop processing the input when it encounters the null byte(s).
  • Postfix, Null Terminate, and Backslash CAPEC-53 If a string is passed through a filter of some kind, then a terminal NULL may not be valid. Using alternate representation of NULL allows an adversary to embed the NULL mid-string while postfixing the proper data so that the filter is avoided. One example is a filter that looks for a trailing slash character. If a string insertion is possible, but the slash must exist, an alternate encoding of NULL in mid-string may be used.
  • DOM-Based XSS CAPEC-588 This type of attack is a form of Cross-Site Scripting (XSS) where a malicious script is inserted into the client-side HTML being parsed by a web browser. Content served by a vulnerable web application includes script code used to manipulate the Document Object Model (DOM). This script code either does not properly validate input, or does not perform proper output encoding, thus creating an opportunity for an adversary to inject a malicious script launch a XSS attack. A key distinction between other XSS attacks and DOM-based attacks is that in other XSS attacks, the malicious script runs when the vulnerable web page is initially loaded, while a DOM-based attack executes sometime after the page loads. Another distinction of DOM-based attacks is that in some cases, the malicious script is never sent to the vulnerable web server at all. An attack like this is guaranteed to bypass any server-side filtering attempts to protect users.
  • Cross-Site Scripting (XSS) CAPEC-63 An adversary embeds malicious scripts in content that will be served to web browsers. The goal of the attack is for the target software, the client-side browser, to execute the script with the users' privilege level. An attack of this type exploits a programs' vulnerabilities that are brought on by allowing remote hosts to execute code and scripts. Web browsers, for example, have some simple security controls in place, but if a remote attacker is allowed to execute scripts (through injecting them in to user-generated content like bulletin boards) then these controls may be bypassed. Further, these attacks are very difficult for an end user to detect.
  • Using Slashes and URL Encoding Combined to Bypass Validation Logic CAPEC-64 This attack targets the encoding of the URL combined with the encoding of the slash characters. An attacker can take advantage of the multiple ways of encoding a URL and abuse the interpretation of the URL. A URL may contain special character that need special syntax handling in order to be interpreted. Special characters are represented using a percentage character followed by two digits representing the octet code of the original character (%HEX-CODE). For instance US-ASCII space character would be represented with %20. This is often referred as escaped ending or percent-encoding. Since the server decodes the URL from the requests, it may restrict the access to some URL paths by validating and filtering out the URL requests it received. An attacker will try to craft an URL with a sequence of special characters which once interpreted by the server will be equivalent to a forbidden URL. It can be difficult to protect against this attack since the URL can contain other format of encoding such as UTF-8 encoding, Unicode-encoding, etc.
  • Server Side Request Forgery CAPEC-664 An adversary exploits improper input validation by submitting maliciously crafted input to a target application running on a server, with the goal of forcing the server to make a request either to itself, to web services running in the server’s internal network, or to external third parties. If successful, the adversary’s request will be made with the server’s privilege level, bypassing its authentication controls. This ultimately allows the adversary to access sensitive data, execute commands on the server’s network, and make external requests with the stolen identity of the server. Server Side Request Forgery attacks differ from Cross Site Request Forgery attacks in that they target the server itself, whereas CSRF attacks exploit an insecure user authentication mechanism to perform unauthorized actions on the user's behalf.
  • String Format Overflow in syslog() CAPEC-67 This attack targets applications and software that uses the syslog() function insecurely. If an application does not explicitely use a format string parameter in a call to syslog(), user input can be placed in the format string parameter leading to a format string injection attack. Adversaries can then inject malicious format string commands into the function call leading to a buffer overflow. There are many reported software vulnerabilities with the root cause being a misuse of the syslog() function.
  • Blind SQL Injection CAPEC-7 Blind SQL Injection results from an insufficient mitigation for SQL Injection. Although suppressing database error messages are considered best practice, the suppression alone is not sufficient to prevent SQL Injection. Blind SQL Injection is a form of SQL Injection that overcomes the lack of error messages. Without the error messages that facilitate SQL Injection, the adversary constructs input strings that probe the target through simple Boolean SQL expressions. The adversary can determine if the syntax and structure of the injection was successful based on whether the query was executed or not. Applied iteratively, the adversary determines how and where the target is vulnerable to SQL Injection.
  • Using Unicode Encoding to Bypass Validation Logic CAPEC-71 An attacker may provide a Unicode string to a system component that is not Unicode aware and use that to circumvent the filter or cause the classifying mechanism to fail to properly understanding the request. That may allow the attacker to slip malicious data past the content filter and/or possibly cause the application to route the request incorrectly.
  • URL Encoding CAPEC-72 This attack targets the encoding of the URL. An adversary can take advantage of the multiple way of encoding an URL and abuse the interpretation of the URL.
  • User-Controlled Filename CAPEC-73 An attack of this type involves an adversary inserting malicious characters (such as a XSS redirection) into a filename, directly or indirectly that is then used by the target software to generate HTML text or other potentially executable content. Many websites rely on user-generated content and dynamically build resources like files, filenames, and URL links directly from user supplied data. In this attack pattern, the attacker uploads code that can execute in the client browser and/or redirect the client browser to a site that the attacker owns. All XSS attack payload variants can be used to pass and exploit these vulnerabilities.
  • Using Escaped Slashes in Alternate Encoding CAPEC-78 This attack targets the use of the backslash in alternate encoding. An adversary can provide a backslash as a leading character and causes a parser to believe that the next character is special. This is called an escape. By using that trick, the adversary tries to exploit alternate ways to encode the same character which leads to filter problems and opens avenues to attack.
  • Using Slashes in Alternate Encoding CAPEC-79 This attack targets the encoding of the Slash characters. An adversary would try to exploit common filtering problems related to the use of the slashes characters to gain access to resources on the target host. Directory-driven systems, such as file systems and databases, typically use the slash character to indicate traversal between directories or other container components. For murky historical reasons, PCs (and, as a result, Microsoft OSs) choose to use a backslash, whereas the UNIX world typically makes use of the forward slash. The schizophrenic result is that many MS-based systems are required to understand both forms of the slash. This gives the adversary many opportunities to discover and abuse a number of common filtering problems. The goal of this pattern is to discover server software that only applies filters to one version, but not the other.
  • Buffer Overflow in an API Call CAPEC-8 This attack targets libraries or shared code modules which are vulnerable to buffer overflow attacks. An adversary who has knowledge of known vulnerable libraries or shared code can easily target software that makes use of these libraries. All clients that make use of the code library thus become vulnerable by association. This has a very broad effect on security across a system, usually affecting more than one software process.
  • Using UTF-8 Encoding to Bypass Validation Logic CAPEC-80 This attack is a specific variation on leveraging alternate encodings to bypass validation logic. This attack leverages the possibility to encode potentially harmful input in UTF-8 and submit it to applications not expecting or effective at validating this encoding standard making input filtering difficult. UTF-8 (8-bit UCS/Unicode Transformation Format) is a variable-length character encoding for Unicode. Legal UTF-8 characters are one to four bytes long. However, early version of the UTF-8 specification got some entries wrong (in some cases it permitted overlong characters). UTF-8 encoders are supposed to use the "shortest possible" encoding, but naive decoders may accept encodings that are longer than necessary. According to the RFC 3629, a particularly subtle form of this attack can be carried out against a parser which performs security-critical validity checks against the UTF-8 encoded form of its input, but interprets certain illegal octet sequences as characters.
  • Web Server Logs Tampering CAPEC-81 Web Logs Tampering attacks involve an attacker injecting, deleting or otherwise tampering with the contents of web logs typically for the purposes of masking other malicious behavior. Additionally, writing malicious data to log files may target jobs, filters, reports, and other agents that process the logs in an asynchronous attack pattern. This pattern of attack is similar to "Log Injection-Tampering-Forging" except that in this case, the attack is targeting the logs of the web server and not the application.
  • XPath Injection CAPEC-83 An attacker can craft special user-controllable input consisting of XPath expressions to inject the XML database and bypass authentication or glean information that they normally would not be able to. XPath Injection enables an attacker to talk directly to the XML database, thus bypassing the application completely. XPath Injection results from the failure of an application to properly sanitize input used as part of dynamic XPath expressions used to query an XML database.
  • AJAX Footprinting CAPEC-85 This attack utilizes the frequent client-server roundtrips in Ajax conversation to scan a system. While Ajax does not open up new vulnerabilities per se, it does optimize them from an attacker point of view. A common first step for an attacker is to footprint the target environment to understand what attacks will work. Since footprinting relies on enumeration, the conversational pattern of rapid, multiple requests and responses that are typical in Ajax applications enable an attacker to look for many vulnerabilities, well-known ports, network locations and so on. The knowledge gained through Ajax fingerprinting can be used to support other attacks, such as XSS.
  • OS Command Injection CAPEC-88 In this type of an attack, an adversary injects operating system commands into existing application functions. An application that uses untrusted input to build command strings is vulnerable. An adversary can leverage OS command injection in an application to elevate privileges, execute arbitrary commands and compromise the underlying operating system.
  • Buffer Overflow in Local Command-Line Utilities CAPEC-9 This attack targets command-line utilities available in a number of shells. An adversary can leverage a vulnerability found in a command-line utility to escalate privilege to root.

Vulnerable Configurations

  • cpe:2.3:o:intel:core_i3-10110u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-10110u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-10110u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-10110u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-10110y_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-10110y_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-10110y:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-10110y:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-1005g1_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-1005g1_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-1005g1:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-1005g1:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-9300t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-9300t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-9300t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-9300t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-9300_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-9300_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-9300:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-9300:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-9100_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-9100_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-9100:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-9100:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-9100t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-9100t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-9100t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-9100t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-9350k_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-9350k_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-9350k:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-9350k:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-9320_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-9320_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-9320:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-9320:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-8145u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-8145u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-8145u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-8145u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-8300_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-8300_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-8300:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-8300:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-8100t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-8100t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-8100t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-8100t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-8300t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-8300t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-8300t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-8300t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-8109u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-8109u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-8109u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-8109u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-8130u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-8130u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-8130u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-8130u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-8100_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-8100_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-8100:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-8100:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-8350k_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-8350k_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-8350k:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-8350k:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-7100_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-7100_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-7100:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-7100:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-7350k_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-7350k_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-7350k:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-7350k:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-7300t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-7300t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-7300t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-7300t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-7167u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-7167u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-7167u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-7167u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-7300_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-7300_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-7300:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-7300:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-7100h_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-7100h_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-7100h:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-7100h:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-7320_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-7320_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-7320:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-7320:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-7100t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-7100t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-7100t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-7100t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-7100u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-7100u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-7100u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-7100u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-6100u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-6100u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-6100u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-6100u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-6100h_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-6100h_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-6100h:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-6100h:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-6167u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-6167u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-6167u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-6167u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-6100_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-6100_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-6100:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-6100:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-5015u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-5015u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-5015u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-5015u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-5020u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-5020u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-5020u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-5020u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-5005u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-5005u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-5005u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-5005u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-5010u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-5010u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-5010u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-5010u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i3-5157u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i3-5157u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i3-5157u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i3-5157u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-10210u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-10210u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-10210u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-10210u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-10310y_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-10310y_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-10310y:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-10310y:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-10210y_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-10210y_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-10210y:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-10210y:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-1035g4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-1035g4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-1035g4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-1035g4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-1035g7_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-1035g7_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-1035g7:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-1035g7:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-1035g1_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-1035g1_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-1035g1:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-1035g1:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-9500_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-9500_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-9500:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-9500:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-9600_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-9600_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-9600:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-9600:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-9400t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-9400t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-9400t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-9400t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-9600t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-9600t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-9600t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-9600t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-9500t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-9500t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-9500t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-9500t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-9300h_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-9300h_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-9300h:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-9300h:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-9400h_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-9400h_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-9400h:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-9400h:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-9400_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-9400_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-9400:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-9400:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-9600k_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-9600k_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-9600k:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-9600k:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-8265u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-8265u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-8265u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-8265u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-8200y_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-8200y_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-8200y:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-8200y:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-8400t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-8400t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-8400t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-8400t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-8300h_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-8300h_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-8300h:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-8300h:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-8259u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-8259u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-8259u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-8259u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-8269u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-8269u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-8269u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-8269u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-8700b_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-8700b_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-8700b:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-8700b:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-8400b_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-8400b_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-8400b:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-8400b:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-8500b_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-8500b_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-8500b:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-8500b:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5\+8500_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5\+8500_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5\+8500:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5\+8500:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5\+8400_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5\+8400_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5\+8400:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5\+8400:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-8305g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-8305g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-8305g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-8305g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-8400_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-8400_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-8400:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-8400:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-8250u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-8250u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-8250u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-8250u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-8350u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-8350u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-8350u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-8350u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7400_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7400_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7400:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7400:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7500t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7500t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7500t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7500t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7600t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7600t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7600t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7600t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7400t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7400t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7400t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7400t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7600_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7600_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7600:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7600:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7500_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7500_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7500:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7500:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7300hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7300hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7300hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7300hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7267u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7267u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7267u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7267u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7600k_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7600k_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7600k:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7600k:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7260u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7260u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7260u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7260u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7440hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7440hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7440hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7440hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7287u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7287u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7287u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7287u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7360u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7360u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7360u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7360u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7200u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7200u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7200u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7200u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-7y54_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-7y54_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-7y54:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-7y54:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-6350hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-6350hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-6350hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-6350hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-6200u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-6200u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-6200u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-6200u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-6300hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-6300hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-6300hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-6300hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-6287u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-6287u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-6287u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-6287u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-6267u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-6267u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-6267u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-6267u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-6260u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-6260u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-6260u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-6260u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-5350h_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-5350h_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-5350h:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-5350h:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-5200u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-5200u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-5200u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-5200u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-5287u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-5287u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-5287u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-5287u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-5250u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-5250u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-5250u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-5250u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i5-5257u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i5-5257u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i5-5257u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i5-5257u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-10510u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-10510u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-10510u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-10510u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-10510y_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-10510y_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-10510y:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-10510y:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-10710u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-10710u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-10710u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-10710u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-1065g7_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-1065g7_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-1065g7:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-1065g7:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-9700t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-9700t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-9700t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-9700t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-9700_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-9700_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-9700:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-9700:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-9750h_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-9750h_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-9750h:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-9750h:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-9850h_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-9850h_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-9850h:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-9850h:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-9700k_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-9700k_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-9700k:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-9700k:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-8565u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-8565u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-8565u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-8565u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-8500y_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-8500y_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-8500y:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-8500y:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-8086k_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-8086k_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-8086k:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-8086k:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-8750h_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-8750h_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-8750h:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-8750h:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-8559u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-8559u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-8559u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-8559u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7\+8700_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7\+8700_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7\+8700:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7\+8700:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-8709g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-8709g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-8709g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-8709g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-8809g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-8809g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-8809g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-8809g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-8705g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-8705g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-8705g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-8705g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-8706g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-8706g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-8706g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-8706g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-8550u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-8550u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-8550u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-8550u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-8650u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-8650u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-8650u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-8650u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-7700t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-7700t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-7700t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-7700t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-7820hk_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-7820hk_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-7820hk:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-7820hk:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-7700hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-7700hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-7700hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-7700hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-7660u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-7660u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-7660u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-7660u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-7560u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-7560u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-7560u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-7560u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-7700_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-7700_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-7700:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-7700:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-7567u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-7567u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-7567u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-7567u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-7700k_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-7700k_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-7700k:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-7700k:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-7920hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-7920hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-7920hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-7920hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-7820hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-7820hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-7820hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-7820hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-7500u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-7500u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-7500u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-7500u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-6970hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-6970hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-6970hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-6970hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-6870hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-6870hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-6870hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-6870hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-6770hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-6770hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-6770hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-6770hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-6500u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-6500u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-6500u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-6500u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-6700hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-6700hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-6700hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-6700hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-6820hk_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-6820hk_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-6820hk:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-6820hk:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-6560u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-6560u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-6560u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-6560u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-6567u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-6567u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-6567u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-6567u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-5850hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-5850hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-5850hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-5850hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-5950hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-5950hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-5950hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-5950hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-5775c_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-5775c_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-5775c:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-5775c:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-5700hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-5700hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-5700hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-5700hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-5750hq_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-5750hq_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-5750hq:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-5750hq:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-5500u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-5500u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-5500u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-5500u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-5550u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-5550u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-5550u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-5550u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-5557u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-5557u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-5557u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-5557u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_m3-8100y_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_m3-8100y_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_m3-8100y:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_m3-8100y:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_m3-7y30_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_m3-7y30_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_m3-7y30:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_m3-7y30:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_m3-6y54_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_m3-6y54_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_m3-6y54:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_m3-6y54:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_m3-6y30_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_m3-6y30_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_m3-6y30:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_m3-6y30:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_m-5y31_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_m-5y31_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_m-5y31:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_m-5y31:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_m-5y51_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_m-5y51_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_m-5y51:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_m-5y51:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_m-5y10c_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_m-5y10c_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_m-5y10c:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_m-5y10c:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_m-5y10_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_m-5y10_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_m-5y10:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_m-5y10:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_m-5y10a_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_m-5y10a_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_m-5y10a:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_m-5y10a:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_m-5y71_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_m-5y71_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_m-5y71:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_m-5y71:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_m-5y70_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_m-5y70_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_m-5y70:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_m-5y70:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i9-10980xe_firmware:-:*:*:*:extreme:*:*:*
    cpe:2.3:o:intel:core_i9-10980xe_firmware:-:*:*:*:extreme:*:*:*
  • cpe:2.3:h:intel:core_i9-10980xe:-:*:*:*:extreme:*:*:*
    cpe:2.3:h:intel:core_i9-10980xe:-:*:*:*:extreme:*:*:*
  • cpe:2.3:o:intel:core_i9-10900x_x-series_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i9-10900x_x-series_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i9-10900x_x-series:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i9-10900x_x-series:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i9-10920x_x-series_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i9-10920x_x-series_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i9-10920x_x-series:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i9-10920x_x-series:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i9-10940x_x-series_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i9-10940x_x-series_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i9-10940x_x-series:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i9-10940x_x-series:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i9-9900x_x-series_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i9-9900x_x-series_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i9-9900x_x-series:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i9-9900x_x-series:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i9-9920x_x-series_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i9-9920x_x-series_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i9-9920x_x-series:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i9-9920x_x-series:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i9-9960x_x-series_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i9-9960x_x-series_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i9-9960x_x-series:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i9-9960x_x-series:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i9-9980xe_firmware:-:*:*:*:extreme:*:*:*
    cpe:2.3:o:intel:core_i9-9980xe_firmware:-:*:*:*:extreme:*:*:*
  • cpe:2.3:h:intel:core_i9-9980xe:-:*:*:*:extreme:*:*:*
    cpe:2.3:h:intel:core_i9-9980xe:-:*:*:*:extreme:*:*:*
  • cpe:2.3:o:intel:core_i9-9940x_x-series_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i9-9940x_x-series_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i9-9940x_x-series:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i9-9940x_x-series:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i9-7960x_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i9-7960x_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i9-7960x:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i9-7960x:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i9-7940x_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i9-7940x_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i9-7940x:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i9-7940x:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i9-7980xe_firmware:-:*:*:*:extreme:*:*:*
    cpe:2.3:o:intel:core_i9-7980xe_firmware:-:*:*:*:extreme:*:*:*
  • cpe:2.3:h:intel:core_i9-7980xe:-:*:*:*:extreme:*:*:*
    cpe:2.3:h:intel:core_i9-7980xe:-:*:*:*:extreme:*:*:*
  • cpe:2.3:o:intel:core_i9-7920x_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i9-7920x_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i9-7920x:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i9-7920x:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i9-7900x_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i9-7900x_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i9-7900x:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i9-7900x:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-7820x_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-7820x_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-7820x:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-7820x:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:core_i7-7800x_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:core_i7-7800x_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:core_i7-7800x:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:core_i7-7800x:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_g5620_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_g5620_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_g5620:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_g5620:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_g5600t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_g5600t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_g5600t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_g5600t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_g5600_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_g5600_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_g5600:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_g5600:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_g5500t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_g5500t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_g5500t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_g5500t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_g5500_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_g5500_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_g5500:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_g5500:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_g5420t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_g5420t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_g5420t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_g5420t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_g5420_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_g5420_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_g5420:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_g5420:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_6405u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_6405u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_6405u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_6405u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_5405u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_5405u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_5405u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_5405u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_g5400t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_g5400t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_g5400t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_g5400t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_g5400_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_g5400_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_g5400:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_g5400:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_4425y_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_4425y_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_4425y:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_4425y:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_4417u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_4417u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_4417u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_4417u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_4415u_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_4415u_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_4415u:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_4415u:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_4415y_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_4415y_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_4415y:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_4415y:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:pentium_gold_4410y_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:pentium_gold_4410y_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:pentium_gold_4410y:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:pentium_gold_4410y:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g4950_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g4950_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g4950:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g4950:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g4932e_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g4932e_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g4932e:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g4932e:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g4930t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g4930t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g4930t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g4930t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g4930e_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g4930e_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g4930e:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g4930e:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g4930_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g4930_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g4930:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g4930:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g4920_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g4920_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g4920:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g4920:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g4900t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g4900t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g4900t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g4900t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g4900_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g4900_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g4900:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g4900:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g3950_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g3950_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g3950:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g3950:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g3930te_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g3930te_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g3930te:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g3930te:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g3930t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g3930t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g3930t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g3930t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g3930e_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g3930e_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g3930e:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g3930e:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g3930_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g3930_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g3930:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g3930:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g3920_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g3920_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g3920:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g3920:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g3902e_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g3902e_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g3902e:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g3902e:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g3900te_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g3900te_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g3900te:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g3900te:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g3900e_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g3900e_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g3900e:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g3900e:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g3900t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g3900t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g3900t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g3900t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g3900_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g3900_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g3900:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g3900:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g1850_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g1850_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g1850:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g1850:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g1840t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g1840t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g1840t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g1840t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g1840_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g1840_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g1840:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g1840:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g1830_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g1830_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g1830:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g1830:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g1820te_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g1820te_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g1820te:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g1820te:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g1820t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g1820t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g1820t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g1820t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g1630_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g1630_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g1630:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g1630:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g1820_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g1820_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g1820:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g1820:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g1620t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g1620t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g1620t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g1620t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g1620_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g1620_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g1620:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g1620:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g1610t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g1610t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g1610t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g1610t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:celeron_g1610_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:celeron_g1610_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:celeron_g1610:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:celeron_g1610:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_9282_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_9282_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_9282:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_9282:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_9242_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_9242_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_9242:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_9242:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_9222_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_9222_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_9222:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_9222:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_9221_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_9221_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_9221:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_9221:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8280m_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8280m_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8280m:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8280m:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8280l_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8280l_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8280l:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8280l:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8280_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8280_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8280:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8280:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8276m_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8276m_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8276m:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8276m:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8276l_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8276l_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8276l:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8276l:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8276_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8276_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8276:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8276:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8270_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8270_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8270:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8270:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8268_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8268_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8268:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8268:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8260y_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8260y_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8260y:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8260y:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8260m_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8260m_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8260m:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8260m:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8260l_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8260l_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8260l:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8260l:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8260_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8260_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8260:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8260:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8256_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8256_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8256:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8256:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_platinum_8253_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_platinum_8253_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_platinum_8253:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_platinum_8253:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6262v_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6262v_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6262v:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6262v:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6254_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6254_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6254:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6254:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6252n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6252n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6252n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6252n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6252_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6252_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6252:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6252:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6248_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6248_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6248:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6248:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6246_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6246_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6246:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6246:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6244_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6244_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6244:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6244:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6242_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6242_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6242:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6242:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6240y_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6240y_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6240y_:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6240y_:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6240m_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6240m_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6240m:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6240m:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6240l_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6240l_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6240l:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6240l:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6240_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6240_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6240:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6240:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6238t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6238t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6238t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6238t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6238m_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6238m_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6238m:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6238m:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6238l_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6238l_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6238l:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6238l:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6238_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6238_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6238:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6238:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6234_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6234_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6234:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6234:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6230t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6230t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6230t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6230t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6230n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6230n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6230n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6230n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6230_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6230_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6230:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6230:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6226_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6226_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6226:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6226:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_6222v_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_6222v_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_6222v:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_6222v:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_5222_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_5222_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_5222:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_5222:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_5220t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_5220t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_5220t_:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_5220t_:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_5220s_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_5220s_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_5220s:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_5220s:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_5220_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_5220_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_5220:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_5220:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_5218t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_5218t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_5218t_:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_5218t_:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_5218n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_5218n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_5218n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_5218n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_5218b_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_5218b_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_5218b:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_5218b:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_5218_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_5218_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_5218:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_5218:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_5217_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_5217_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_5217:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_5217:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_5215m_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_5215m_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_5215m:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_5215m:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_5215l_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_5215l_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_5215l:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_5215l:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_gold_5215_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_gold_5215_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_gold_5215:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_gold_5215:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_silver_4216_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_silver_4216_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_silver_4216:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_silver_4216:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_silver_4215_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_silver_4215_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_silver_4215:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_silver_4215:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_silver_4214y_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_silver_4214y_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_silver_4214y:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_silver_4214y:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_silver_4214_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_silver_4214_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_silver_4214:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_silver_4214:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_silver_4210_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_silver_4210_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_silver_4210:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_silver_4210:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_silver_4209t_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_silver_4209t_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_silver_4209t:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_silver_4209t:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_silver_4208_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_silver_4208_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_silver_4208:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_silver_4208:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_bronze_3204_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_bronze_3204_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_bronze_3204:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_bronze_3204:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8890_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8890_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8890_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8890_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8893_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8893_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8893_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8893_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8880_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8880_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8880_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8880_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4830_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4830_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4830_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4830_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8860_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8860_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8860_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8860_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4809_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4809_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4809_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4809_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8870_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8870_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8870_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8870_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4820_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4820_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4820_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4820_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8891_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8891_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8891_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8891_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8867_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8867_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8867_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8867_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4850_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4850_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4850_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4850_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8855_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8855_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8855_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8855_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8860_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8860_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8860_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8860_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8867_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8867_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8867_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8867_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8870_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8870_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8870_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8870_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8880_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8880_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8880_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8880_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8880l_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8880l_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8880l_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8880l_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4809_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4809_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4809_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4809_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8890_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8890_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8890_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8890_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4820_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4820_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4820_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4820_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8891_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8891_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8891_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8891_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4830_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4830_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4830_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4830_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4850_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4850_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4850_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4850_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8893_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8893_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8893_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8893_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4809_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4809_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4809_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4809_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8880l_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8880l_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8880l_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8880l_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8880_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8880_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8880_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8880_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4820_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4820_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4820_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4820_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8890_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8890_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8890_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8890_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8891_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8891_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8891_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8891_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-2850_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-2850_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-2850_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-2850_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4830_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4830_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4830_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4830_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8893_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8893_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8893_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8893_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-2870_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-2870_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-2870_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-2870_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4850_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4850_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4850_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4850_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-2880_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-2880_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-2880_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-2880_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-2890_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-2890_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-2890_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-2890_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4860_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4860_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4860_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4860_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4870_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4870_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4870_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4870_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4890_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4890_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4890_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4890_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8850_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8850_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8850_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8850_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8857_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8857_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8857_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8857_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8870_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8870_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8870_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8870_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-4880_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-4880_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-4880_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-4880_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7-8895_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7-8895_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7-8895_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7-8895_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2699a_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2699a_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2699a_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2699a_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4627_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4627_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4627_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4627_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4610a_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4610a_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4610a_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4610a_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4620_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4620_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4620_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4620_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4628l_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4628l_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4628l_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4628l_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4660_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4660_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4660_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4660_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4640_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4640_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4640_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4640_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4669_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4669_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4669_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4669_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4667_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4667_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4667_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4667_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4655_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4655_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4655_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4655_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4650_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4650_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4650_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4650_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-1660_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-1660_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-1660_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-1660_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-1630_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-1630_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-1630_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-1630_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-1620_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-1620_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-1620_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-1620_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-1680_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-1680_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-1680_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-1680_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-1650_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-1650_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-1650_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-1650_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2687w_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2687w_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2687w_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2687w_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2695_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2695_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2695_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2695_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2690_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2690_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2690_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2690_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2699_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2699_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2699_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2699_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2650l_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2650l_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2650l_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2650l_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2658_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2658_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2658_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2658_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2698_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2698_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2698_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2698_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2660_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2660_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2660_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2660_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2680_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2680_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2680_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2680_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2697_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2697_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2697_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2697_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2683_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2683_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2683_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2683_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2628l_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2628l_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2628l_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2628l_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2650_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2650_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2650_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2650_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2697a_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2697a_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2697a_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2697a_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2648l_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2648l_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2648l_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2648l_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2620_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2620_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2620_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2620_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2630l_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2630l_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2630l_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2630l_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2608l_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2608l_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2608l_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2608l_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2667_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2667_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2667_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2667_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2643_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2643_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2643_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2643_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2623_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2623_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2623_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2623_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2609_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2609_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2609_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2609_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2630_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2630_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2630_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2630_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2618l_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2618l_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2618l_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2618l_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2637_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2637_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2637_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2637_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2603_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2603_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2603_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2603_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2640_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2640_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2640_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2640_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4640_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4640_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4640_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4640_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4650_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4650_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4650_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4650_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4655_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4655_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4655_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4655_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4660_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4660_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4660_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4660_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4667_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4667_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4667_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4667_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4669_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4669_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4669_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4669_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4610_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4610_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4610_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4610_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4620_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4620_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4620_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4620_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4627_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4627_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4627_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4627_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2695_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2695_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2695_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2695_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2697_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2697_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2697_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2697_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2698_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2698_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2698_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2698_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2699_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2699_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2699_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2699_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2683_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2683_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2683_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2683_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2690_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2690_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2690_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2690_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2650_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2650_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2650_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2650_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2660_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2660_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2660_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2660_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2680_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2680_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2680_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2680_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2670_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2670_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2670_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2670_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-1630_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-1630_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-1630_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-1630_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-1650_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-1650_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-1650_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-1650_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2687w_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2687w_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2687w_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2687w_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2643_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2643_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2643_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2643_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-1660_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-1660_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-1660_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-1660_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-1680_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-1680_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-1680_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-1680_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2650l_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2650l_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2650l_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2650l_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2620_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2620_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2620_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2620_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2623_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2623_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2623_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2623_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-1620_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-1620_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-1620_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-1620_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2630_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2630_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2630_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2630_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2630l_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2630l_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2630l_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2630l_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2637_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2637_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2637_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2637_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2640_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2640_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2640_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2640_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2603_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2603_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2603_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2603_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2667_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2667_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2667_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2667_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4640_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4640_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4640_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4640_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4650_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4650_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4650_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4650_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4657l_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4657l_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4657l_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4657l_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4607_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4607_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4607_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4607_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4610_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4610_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4610_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4610_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4620_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4620_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4620_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4620_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4627_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4627_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4627_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4627_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-4603_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-4603_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-4603_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-4603_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2420_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2420_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2420_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2420_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2440_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2440_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2440_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2440_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2403_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2403_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2403_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2403_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2430_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2430_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2430_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2430_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2450_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2450_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2450_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2450_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2430l_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2430l_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2430l_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2430l_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2450l_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2450l_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2450l_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2450l_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2470_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2470_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2470_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2470_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2407_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2407_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2407_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2407_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2640_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2640_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2640_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2640_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2680_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2680_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2680_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2680_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2690_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2690_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2690_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2690_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2643_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2643_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2643_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2643_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2650_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2650_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2650_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2650_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2650l_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2650l_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2650l_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2650l_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2695_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2695_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2695_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2695_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2660_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2660_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2660_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2660_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2667_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2667_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2667_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2667_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2697_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2697_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2697_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2697_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2603_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2603_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2603_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2603_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2670_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2670_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2670_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2670_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2609_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2609_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2609_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2609_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-1620_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-1620_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-1620_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-1620_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2687w_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2687w_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2687w_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2687w_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-1650_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-1650_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-1650_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-1650_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2620_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2620_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2620_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2620_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-1660_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-1660_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-1660_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-1660_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2630_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2630_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2630_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2630_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2630l_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2630l_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2630l_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2630l_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5-2637_v2_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5-2637_v2_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5-2637_v2:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5-2637_v2:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1230_v6_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1230_v6_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1230_v6:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1230_v6:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1280_v6_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1280_v6_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1280_v6:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1280_v6:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1225_v6_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1225_v6_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1225_v6:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1225_v6:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1240_v6_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1240_v6_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1240_v6:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1240_v6:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1275_v6_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1275_v6_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1275_v6:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1275_v6:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1220_v6_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1220_v6_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1220_v6:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1220_v6:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1270_v6_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1270_v6_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1270_v6:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1270_v6:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1245_v6_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1245_v6_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1245_v6:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1245_v6:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1535m_v6_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1535m_v6_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1535m_v6:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1535m_v6:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1505m_v6_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1505m_v6_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1505m_v6:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1505m_v6:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1565l_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1565l_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1565l_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1565l_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1585l_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1585l_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1585l_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1585l_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1585_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1585_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1585_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1585_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1558l_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1558l_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1558l_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1558l_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1545m_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1545m_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1545m_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1545m_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1575m_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1575m_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1575m_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1575m_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1515m_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1515m_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1515m_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1515m_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1240l_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1240l_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1240l_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1240l_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1235l_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1235l_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1235l_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1235l_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1280_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1280_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1280_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1280_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1220_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1220_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1220_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1220_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1230_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1230_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1230_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1230_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1245_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1245_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1245_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1245_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1270_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1270_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1270_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1270_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1225_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1225_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1225_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1225_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1260l_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1260l_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1260l_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1260l_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1240_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1240_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1240_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1240_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1275_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1275_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1275_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1275_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1268l_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1268l_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1268l_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1268l_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1505m_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1505m_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1505m_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1505m_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1535m_v5_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1535m_v5_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1535m_v5:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1535m_v5:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1265l_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1265l_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1265l_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1265l_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1285l_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1285l_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1285l_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1285l_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1285_v4_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1285_v4_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1285_v4:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1285_v4:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1241_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1241_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1241_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1241_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1231_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1231_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1231_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1231_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1240l_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1240l_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1240l_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1240l_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1276_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1276_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1276_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1276_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1281_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1281_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1281_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1281_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1246_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1246_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1246_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1246_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1271_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1271_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1271_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1271_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1226_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1226_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1226_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1226_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1220l_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1220l_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1220l_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1220l_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1220_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1220_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1220_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1220_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1230l_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1230l_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1230l_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1230l_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1225_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1225_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1225_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1225_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1265l_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1265l_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1265l_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1265l_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3-1275_v3_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3-1275_v3_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3-1275_v3:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3-1275_v3:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2226g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2226g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2226g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2226g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2234_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2234_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2234:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2234:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2236_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2236_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2236:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2236:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2244g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2244g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2244g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2244g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2274g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2274g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2274g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2274g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2246g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2246g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2246g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2246g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2224_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2224_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2224:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2224:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2224g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2224g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2224g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2224g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2288g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2288g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2288g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2288g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2278g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2278g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2278g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2278g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2286g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2286g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2286g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2286g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2276g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2276g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2276g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2276g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2124g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2124g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2124g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2124g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2146g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2146g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2146g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2146g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2176g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2176g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2176g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2176g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2136_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2136_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2136:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2136:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2134_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2134_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2134:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2134:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2144g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2144g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2144g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2144g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2174g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2174g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2174g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2174g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2104g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2104g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2104g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2104g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2186g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2186g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2186g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2186g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2126g_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2126g_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2126g:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2126g:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e-2124_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e-2124_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e-2124:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e-2124:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1602_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1602_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1602:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1602:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1653n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1653n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1653n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1653n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1622_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1622_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1622:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1622:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1623n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1623n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1623n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1623n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1627_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1627_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1627:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1627:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1637_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1637_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1637:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1637:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1633n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1633n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1633n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1633n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1649n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1649n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1649n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1649n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2141i_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2141i_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2141i:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2141i:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2177nt_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2177nt_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2177nt:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2177nt:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2161i_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2161i_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2161i:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2161i:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2143it_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2143it_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2143it:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2143it:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2146nt_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2146nt_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2146nt:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2146nt:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2145nt_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2145nt_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2145nt:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2145nt:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2123it_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2123it_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2123it:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2123it:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2173it_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2173it_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2173it:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2173it:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2191_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2191_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2191:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2191:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2187nt_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2187nt_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2187nt:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2187nt:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2142it_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2142it_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2142it:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2142it:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2163it_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2163it_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2163it:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2163it:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2183it_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2183it_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2183it:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2183it:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-2166nt_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-2166nt_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-2166nt:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-2166nt:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1533n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1533n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1533n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1533n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1513n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1513n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1513n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1513n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1543n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1543n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1543n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1543n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1523n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1523n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1523n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1523n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1553n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1553n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1553n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1553n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1539_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1539_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1539:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1539:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1529_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1529_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1529:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1529:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1559_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1559_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1559:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1559:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1557_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1557_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1557:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1557:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1567_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1567_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1567:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1567:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1577_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1577_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1577:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1577:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1571_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1571_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1571:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1571:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1528_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1528_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1528:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1528:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1541_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1541_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1541:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1541:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1518_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1518_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1518:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1518:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1521_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1521_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1521:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1521:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1531_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1531_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1531:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1531:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1548_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1548_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1548:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1548:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1527_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1527_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1527:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1527:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1537_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1537_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1537:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1537:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1520_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1520_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1520:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1520:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_d-1540_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_d-1540_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_d-1540:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_d-1540:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2275_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2275_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2275:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2275:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2295_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2295_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2295:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2295:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2265_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2265_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2265:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2265:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2255_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2255_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2255:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2255:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2223_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2223_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2223:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2223:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2245_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2245_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2245:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2245:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2225_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2225_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2225:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2225:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2235_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2235_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2235:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2235:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-3265m_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-3265m_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-3265m:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-3265m:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-3245m_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-3245m_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-3245m:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-3245m:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-3275_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-3275_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-3275:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-3275:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-3245_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-3245_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-3245:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-3245:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-3275m_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-3275m_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-3275m:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-3275m:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-3223_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-3223_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-3223:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-3223:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-3265_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-3265_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-3265:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-3265:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-3225_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-3225_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-3225:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-3225:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-3175x_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-3175x_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-3175x:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-3175x:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2175_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2175_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2175:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2175:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2133_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2133_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2133:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2133:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2155_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2155_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2155:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2155:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2123_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2123_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2123:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2123:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2145_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2145_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2145:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2145:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2125_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2125_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2125:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2125:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2135_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2135_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2135:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2135:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w-2195_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w-2195_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w-2195:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w-2195:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x7560_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x7560_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x7560:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x7560:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l7555_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l7555_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l7555:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l7555:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x7550_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x7550_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x7550:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x7550:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l7545_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l7545_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l7545:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l7545:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x7542_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x7542_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x7542:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x7542:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7540_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7540_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7540:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7540:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7530_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7530_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7530:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7530:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7520_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7520_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7520:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7520:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x7460_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x7460_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x7460:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x7460:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7450_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7450_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7450:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7450:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l7455_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l7455_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l7455:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l7455:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l7445_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l7445_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l7445:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l7445:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7440_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7440_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7440:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7440:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7430_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7430_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7430:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7430:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7420_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7420_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7420:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7420:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x7350_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x7350_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x7350:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x7350:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l7345_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l7345_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l7345:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l7345:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7340_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7340_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7340:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7340:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7330_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7330_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7330:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7330:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7320_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7320_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7320:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7320:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7310_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7310_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7310:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7310:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7220_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7220_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7220:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7220:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e7210_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e7210_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e7210:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e7210:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_7150n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_7150n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_7150n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_7150n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_7140n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_7140n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_7140n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_7140n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_7140m_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_7140m_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_7140m:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_7140m:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_7130n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_7130n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_7130n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_7130n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_7130m_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_7130m_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_7130m:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_7130m:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_7120n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_7120n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_7120n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_7120n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_7120m_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_7120m_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_7120m:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_7120m:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_7110n_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_7110n_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_7110n:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_7110n:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_7110m_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_7110m_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_7110m:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_7110m:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_7041_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_7041_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_7041:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_7041:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_7040_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_7040_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_7040:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_7040:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_7020_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_7020_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_7020:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_7020:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_7030_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_7030_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_7030:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_7030:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x6550_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x6550_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x6550:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x6550:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e6540_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e6540_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e6540:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e6540:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e6510_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e6510_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e6510:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e6510:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5690_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5690_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5690:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5690:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5687_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5687_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5687:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5687:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5680_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5680_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5680:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5680:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5677_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5677_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5677:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5677:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5675_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5675_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5675:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5675:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5672_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5672_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5672:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5672:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5670_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5670_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5670:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5670:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5667_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5667_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5667:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5667:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5660_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5660_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5660:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5660:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5650_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5650_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5650:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5650:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5649_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5649_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5649:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5649:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5647_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5647_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5647:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5647:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5645_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5645_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5645:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5645:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5640_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5640_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5640:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5640:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5640_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5640_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5640:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5640:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5638_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5638_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5638:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5638:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5630_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5630_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5630:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5630:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5630_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5630_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5630:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5630:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5620_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5620_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5620:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5620:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5618_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5618_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5618:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5618:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5609_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5609_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5609:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5609:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5607_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5607_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5607:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5607:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5606_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5606_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5606:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5606:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5506_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5506_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5506:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5506:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5603_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5603_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5603:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5603:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w5590_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w5590_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w5590:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w5590:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w5580_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w5580_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w5580:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w5580:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5570_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5570_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5570:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5570:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5560_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5560_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5560:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5560:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5550_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5550_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5550:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5550:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_ec5549_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_ec5549_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_ec5549:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_ec5549:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5540_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5540_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5540:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5540:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_ec5539_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_ec5539_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_ec5539:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_ec5539:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5530_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5530_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5530:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5530:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5530_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5530_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5530:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5530:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_lc5528_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_lc5528_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_lc5528:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_lc5528:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5520_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5520_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5520:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5520:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5520_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5520_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5520:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5520:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_lc5518_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_lc5518_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_lc5518:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_lc5518:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5518_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5518_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5518:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5518:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_ec5509_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_ec5509_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_ec5509:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_ec5509:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5508_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5508_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5508:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5508:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5507_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5507_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5507:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5507:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5506_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5506_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5506:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5506:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5504_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5504_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5504:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5504:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5503_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5503_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5503:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5503:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5502_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5502_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5502:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5502:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5492_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5492_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5492:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5492:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5482_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5482_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5482:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5482:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5472_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5472_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5472:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5472:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5472_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5472_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5472:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5472:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5470_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5470_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5470:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5470:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5462_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5462_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5462:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5462:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5460_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5460_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5460:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5460:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5450_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5450_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5450:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5450:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5450_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5450_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5450:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5450:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5440_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5440_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5440:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5440:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5430_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5430_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5430:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5430:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5430_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5430_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5430:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5430:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5420_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5420_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5420:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5420:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5420_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5420_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5420:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5420:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5410_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5410_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5410:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5410:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5410_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5410_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5410:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5410:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5408_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5408_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5408:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5408:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5405_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5405_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5405:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5405:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5365_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5365_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5365:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5365:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5355_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5355_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5355:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5355:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5345_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5345_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5345:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5345:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5335_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5335_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5335:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5335:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5335_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5335_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5335:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5335:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5320_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5320_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5320:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5320:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5320_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5320_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5320:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5320:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5318_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5318_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5318:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5318:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5310_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5310_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5310:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5310:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5310_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5310_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5310:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5310:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5272_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5272_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5272:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5272:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5270_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5270_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5270:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5270:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x5260_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x5260_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x5260:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x5260:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5240_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5240_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5240:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5240:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5240_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5240_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5240:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5240:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5238_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5238_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5238:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5238:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5220_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5220_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5220:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5220:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l5215_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l5215_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l5215:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l5215:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e5205_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e5205_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e5205:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e5205:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_5160_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_5160_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_5160:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_5160:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_5150_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_5150_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_5150:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_5150:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_lv_5148_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_lv_5148_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_lv_5148:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_lv_5148:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_5140_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_5140_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_5140:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_5140:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_lv_5138_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_lv_5138_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_lv_5138:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_lv_5138:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_lv_5133_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_lv_5133_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_lv_5133:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_lv_5133:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_5130_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_5130_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_5130:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_5130:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_lv_5128_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_lv_5128_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_lv_5128:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_lv_5128:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_5120_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_5120_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_5120:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_5120:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_lv_5113_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_lv_5113_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_lv_5113:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_lv_5113:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_5110_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_5110_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_5110:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_5110:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_5080_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_5080_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_5080:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_5080:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_5070_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_5070_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_5070:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_5070:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_5063_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_5063_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_5063:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_5063:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_5060_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_5060_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_5060:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_5060:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_5050_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_5050_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_5050:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_5050:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_5040_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_5040_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_5040:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_5040:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_5030_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_5030_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_5030:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_5030:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w3690_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w3690_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w3690:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w3690:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w3680_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w3680_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w3680:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w3680:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w3670_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w3670_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w3670:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w3670:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w3580_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w3580_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w3580:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w3580:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w3570_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w3570_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w3570:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w3570:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w3565_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w3565_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w3565:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w3565:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w3550_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w3550_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w3550:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w3550:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w3540_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w3540_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w3540:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w3540:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_ec3539_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_ec3539_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_ec3539:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_ec3539:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w3530_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w3530_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w3530:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w3530:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_lc3528_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_lc3528_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_lc3528:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_lc3528:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_w3520_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_w3520_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_w3520:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_w3520:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_lc3518_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_lc3518_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_lc3518:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_lc3518:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3480_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3480_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3480:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3480:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3470_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3470_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3470:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3470:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3460_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3460_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3460:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3460:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3450_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3450_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3450:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3450:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3440_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3440_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3440:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3440:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3430_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3430_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3430:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3430:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l3426_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l3426_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l3426:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l3426:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l3406_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l3406_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l3406:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l3406:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3380_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3380_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3380:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3380:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3370_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3370_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3370:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3370:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3360_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3360_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3360:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3360:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l3360_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l3360_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l3360:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l3360:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3350_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3350_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3350:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3350:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3330_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3330_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3330:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3330:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3320_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3320_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3320:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3320:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3230_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3230_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3230:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3230:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3220_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3220_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3220:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3220:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_x3210_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_x3210_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_x3210:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_x3210:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3120_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3120_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3120:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3120:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l3110_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l3110_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l3110:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l3110:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_e3110_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_e3110_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_e3110:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_e3110:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_3070_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_3070_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_3070:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_3070:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_3065_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_3065_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_3065:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_3065:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_3060_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_3060_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_3060:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_3060:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_3050_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_3050_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_3050:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_3050:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_3040_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_3040_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_3040:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_3040:-:*:*:*:*:*:*:*
  • cpe:2.3:o:intel:xeon_l3014_firmware:-:*:*:*:*:*:*:*
    cpe:2.3:o:intel:xeon_l3014_firmware:-:*:*:*:*:*:*:*
  • cpe:2.3:h:intel:xeon_l3014:-:*:*:*:*:*:*:*
    cpe:2.3:h:intel:xeon_l3014:-:*:*:*:*:*:*:*
  • cpe:2.3:o:debian:debian_linux:9.0:*:*:*:*:*:*:*
    cpe:2.3:o:debian:debian_linux:9.0:*:*:*:*:*:*:*
  • cpe:2.3:o:opensuse:leap:15.1:*:*:*:*:*:*:*
    cpe:2.3:o:opensuse:leap:15.1:*:*:*:*:*:*:*
  • cpe:2.3:o:fedoraproject:fedora:30:*:*:*:*:*:*:*
    cpe:2.3:o:fedoraproject:fedora:30:*:*:*:*:*:*:*
  • cpe:2.3:o:fedoraproject:fedora:31:*:*:*:*:*:*:*
    cpe:2.3:o:fedoraproject:fedora:31:*:*:*:*:*:*:*
  • cpe:2.3:o:canonical:ubuntu_linux:14.04:*:*:*:esm:*:*:*
    cpe:2.3:o:canonical:ubuntu_linux:14.04:*:*:*:esm:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.4.1:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.4.1:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.4.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.4.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.4.3:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.4.3:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.4.4:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.4.4:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.10:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.5.10:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:11.6.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.1:hotfix2:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.1:hotfix2:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.2:hotfix1:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.2:hotfix1:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.3.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.4.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.4.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.4.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:12.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.0.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:13.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:14.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:15.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:15.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_access_policy_manager:15.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_access_policy_manager:15.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.4.1:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.4.1:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.4.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.4.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.4.3:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.4.3:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.4.4:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.4.4:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.10:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.5.10:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:11.6.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.1:hotfix2:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.1:hotfix2:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.2:hotfix1:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.2:hotfix1:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.3.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.4.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.4.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.4.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:12.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.0.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:13.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:14.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:15.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:15.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_advanced_firewall_manager:15.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_advanced_firewall_manager:15.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.5.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.5.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.5.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.5.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.5.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.5.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.5.4.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.5.4.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.5.4.2.74.291:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.5.4.2.74.291:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.5.4.3:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.5.4.3:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.5.4.4:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.5.4.4:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.5.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.5.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.5.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.5.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.5.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.5.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.5.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.5.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.5.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.5.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.5.10:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.5.10:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.6.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.6.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.6.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.6.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.6.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.6.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.6.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.6.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.6.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.6.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.6.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.6.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.6.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.6.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.6.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.6.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.6.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.6.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.6.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.6.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:11.6.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:11.6.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.1:hotfix2:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.1:hotfix2:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.2:hotfix1:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.2:hotfix1:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.3.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.3.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.4.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.4.1.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.4.1.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.4.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.4.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:12.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:12.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.0.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.0.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:13.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:13.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.2.0.45.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.2.0.45.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.2.0.62.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.2.0.62.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.3.0.79.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.3.0.79.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.3.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.3.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.3.0.99.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.3.0.99.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.5.0.15.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.5.0.15.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.5.0.36.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.5.0.36.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.5.0.40.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.5.0.40.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.6.0.11.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.6.0.11.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.6.0.14.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.6.0.14.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.6.0.68.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.6.0.68.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.0.6.0.70.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.0.6.0.70.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:14.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:14.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:15.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:15.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_analytics:15.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_analytics:15.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.4.1:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.4.1:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.4.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.4.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.4.3:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.4.3:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.4.4:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.4.4:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.10:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.5.10:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:11.6.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.1:hotfix2:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.1:hotfix2:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.2:hotfix1:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.2:hotfix1:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.3.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.4.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.4.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.4.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:12.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.0.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:13.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:14.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:15.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:15.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_acceleration_manager:15.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_acceleration_manager:15.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.4.1:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.4.1:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.4.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.4.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.4.3:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.4.3:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.4.4:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.4.4:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.5.10:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.5.10:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.6.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.6.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.6.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.6.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.6.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.6.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.6.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.6.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.6.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.6.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.6.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.6.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.6.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.6.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.6.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.6.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.6.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.6.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.6.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.6.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:11.6.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:11.6.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.1:hotfix2:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.1:hotfix2:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.2:hotfix1:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.2:hotfix1:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.3.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.4.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.4.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.4.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:12.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:12.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.0.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:13.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:13.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:14.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:14.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:15.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:15.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_application_security_manager:15.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_application_security_manager:15.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.5.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.5.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.5.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.5.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.5.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.5.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.5.4.2.74.291:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.5.4.2.74.291:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.5.4.4:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.5.4.4:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.5.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.5.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.5.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.5.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.5.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.5.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.5.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.5.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.5.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.5.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.5.10:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.5.10:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.6.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.6.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.6.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.6.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.6.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.6.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.6.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.6.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.6.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.6.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.6.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.6.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.6.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.6.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.6.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.6.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.6.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.6.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.6.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.6.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:11.6.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:11.6.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.1:hotfix2:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.1:hotfix2:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.2:hotfix1:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.2:hotfix1:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.3.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.4.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.4.1.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.4.1.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.4.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.4.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:12.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:12.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.0.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:13.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:13.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.2.0.45.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.2.0.45.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.2.0.62.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.2.0.62.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.3.0.79.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.3.0.79.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.3.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.3.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.3.0.99.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.3.0.99.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.5.0.15.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.5.0.15.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.5.0.36.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.5.0.36.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.5.0.40.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.5.0.40.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.6.0.11.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.6.0.11.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.6.0.14.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.6.0.14.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.6.0.68.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.6.0.68.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.6.0.70.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.0.6.0.70.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:14.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:14.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:15.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:15.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_domain_name_system:15.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_domain_name_system:15.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.4.2.74.291:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.4.2.74.291:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.10:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.5.10:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:11.6.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.1:hotfix2:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.1:hotfix2:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.2:hotfix1:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.2:hotfix1:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.3.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.4.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.4.1.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.4.1.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.4.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.4.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:12.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.0.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:13.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.2.0.45.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.2.0.45.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.2.0.62.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.2.0.62.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.3.0.79.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.3.0.79.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.3.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.3.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.3.0.99.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.3.0.99.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.5.0.15.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.5.0.15.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.5.0.36.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.5.0.36.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.5.0.40.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.5.0.40.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.6.0.11.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.6.0.11.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.6.0.14.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.6.0.14.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.6.0.68.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.6.0.68.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.6.0.70.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.0.6.0.70.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:14.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:15.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:15.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_fraud_protection_service:15.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_fraud_protection_service:15.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.4.1:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.4.1:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.4.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.4.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.4.3:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.4.3:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.4.4:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.4.4:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.10:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.5.10:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:11.6.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.1:hotfix2:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.1:hotfix2:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.2:hotfix1:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.2:hotfix1:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.3.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.4.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.4.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.4.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:12.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.0.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:13.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:14.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:15.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:15.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_global_traffic_manager:15.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_global_traffic_manager:15.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.4.1:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.4.1:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.4.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.4.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.4.2.74.291:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.4.2.74.291:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.4.3:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.4.3:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.4.4:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.4.4:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.5.10:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.5.10:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.6.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.6.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.6.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.6.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.6.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.6.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.6.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.6.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.6.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.6.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.6.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.6.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.6.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.6.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.6.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.6.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.6.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.6.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.6.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.6.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:11.6.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:11.6.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.1:hotfix2:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.1:hotfix2:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.2:hotfix1:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.2:hotfix1:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.3.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.3.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.4.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.4.1.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.4.1.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.4.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.4.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:12.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:12.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.0.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.0.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:13.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:13.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.2.0.45.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.2.0.45.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.2.0.62.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.2.0.62.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.3.0.79.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.3.0.79.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.3.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.3.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.3.0.99.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.3.0.99.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.5.0.15.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.5.0.15.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.5.0.36.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.5.0.36.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.5.0.40.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.5.0.40.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.6.0.11.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.6.0.11.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.6.0.14.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.6.0.14.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.6.0.68.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.6.0.68.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.0.6.0.70.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.0.6.0.70.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:14.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:14.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:15.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:15.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_link_controller:15.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_link_controller:15.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.4.1:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.4.1:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.4.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.4.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.4.3:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.4.3:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.4.4:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.4.4:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.10:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.5.10:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:11.6.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.1:hotfix2:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.1:hotfix2:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.2:hotfix1:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.2:hotfix1:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.3.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.4.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.4.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.4.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:12.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.0.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:13.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:14.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:15.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:15.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_local_traffic_manager:15.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_local_traffic_manager:15.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.4.1:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.4.1:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.4.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.4.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.4.2.74.291:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.4.3:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.4.3:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.4.4:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.4.4:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.10:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.5.10:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:11.6.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.1:hotfix2:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.1:hotfix2:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.2:-:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.2:-:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.2:hotfix1:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.2:hotfix1:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.3.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.4.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.4.1.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.4.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.4.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:12.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.8:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.0.8:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:13.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.2.0.45.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.2.0.62.4:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.3.0.79.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.3.0.97.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.3.0.99.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.5.0.15.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.5.0.36.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.5.0.40.5:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.6.0.11.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.6.0.14.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.6.0.68.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.0.6.0.70.9:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:14.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:15.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:15.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-ip_policy_enforcement_manager:15.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-ip_policy_enforcement_manager:15.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-iq_centralized_management:5.2.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-iq_centralized_management:5.2.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-iq_centralized_management:5.3.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-iq_centralized_management:5.3.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-iq_centralized_management:5.4.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-iq_centralized_management:5.4.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-iq_centralized_management:6.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-iq_centralized_management:6.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-iq_centralized_management:6.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-iq_centralized_management:6.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-iq_centralized_management:6.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-iq_centralized_management:6.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:big-iq_centralized_management:7.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:f5:big-iq_centralized_management:7.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:f5:enterprise_manager:3.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:f5:enterprise_manager:3.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:redhat:openshift_container_platform:4.1:*:*:*:*:*:*:*
    cpe:2.3:a:redhat:openshift_container_platform:4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:redhat:openshift_container_platform:4.2:*:*:*:*:*:*:*
    cpe:2.3:a:redhat:openshift_container_platform:4.2:*:*:*:*:*:*:*
  • cpe:2.3:o:redhat:enterprise_linux_server:7.0:*:*:*:*:*:*:*
    cpe:2.3:o:redhat:enterprise_linux_server:7.0:*:*:*:*:*:*:*
  • cpe:2.3:o:redhat:enterprise_linux_server_aus:7.6:*:*:*:*:*:*:*
    cpe:2.3:o:redhat:enterprise_linux_server_aus:7.6:*:*:*:*:*:*:*
  • cpe:2.3:o:redhat:enterprise_linux_server_aus:7.7:*:*:*:*:*:*:*
    cpe:2.3:o:redhat:enterprise_linux_server_aus:7.7:*:*:*:*:*:*:*
  • cpe:2.3:o:redhat:enterprise_linux_server_eus:7.6:*:*:*:*:*:*:*
    cpe:2.3:o:redhat:enterprise_linux_server_eus:7.6:*:*:*:*:*:*:*
  • cpe:2.3:o:redhat:enterprise_linux_server_eus:7.7:*:*:*:*:*:*:*
    cpe:2.3:o:redhat:enterprise_linux_server_eus:7.7:*:*:*:*:*:*:*
  • cpe:2.3:o:redhat:enterprise_linux_server_eus:8.1:*:*:*:*:*:*:*
    cpe:2.3:o:redhat:enterprise_linux_server_eus:8.1:*:*:*:*:*:*:*
  • cpe:2.3:o:redhat:enterprise_linux_server_tus:7.6:*:*:*:*:*:*:*
    cpe:2.3:o:redhat:enterprise_linux_server_tus:7.6:*:*:*:*:*:*:*
  • cpe:2.3:o:redhat:enterprise_linux_server_tus:7.7:*:*:*:*:*:*:*
    cpe:2.3:o:redhat:enterprise_linux_server_tus:7.7:*:*:*:*:*:*:*
  • cpe:2.3:o:oracle:solaris:11:*:*:*:*:*:*:*
    cpe:2.3:o:oracle:solaris:11:*:*:*:*:*:*:*

Protect Your Infrastructure against CVE-2018-12207: Combat Critical CVE Threats

Stay updated with real-time CVE vulnerabilities and take action to secure your systems. Enhance your cybersecurity posture with the latest threat intelligence and mitigation techniques. Develop the skills necessary to defend against CVEs and secure critical infrastructures. Join the top cybersecurity professionals safeguarding today's infrastructures.

Other 5 Recently Published CVEs Vulnerabilities

  • CVE-2025-26205 – Lua 5.4.7, when the debug library is used, has a out-of-bounds read and segmentation violation in mainpositionTV in ltable.c. NOTE: this is dispute...
  • CVE-2025-26204 – Lua 5.4.7, when the debug library is used, has a out-of-bounds read and segmentation violation in equalkey in ltable.c. NOTE: this is disputed beca...
  • CVE-2025-2129 – A vulnerability was found in Mage AI 0.9.75. It has been classified as problematic. This affects an unknown part. The manipulation leads to insecur...
  • CVE-2025-2127 – A vulnerability was found in JoomlaUX JUX Real Estate 3.4.0 on Joomla. It has been classified as problematic. Affected is an unknown function of th...
  • CVE-2025-2126 – A vulnerability was found in JoomlaUX JUX Real Estate 3.4.0 on Joomla and classified as critical. This issue affects some unknown processing of the...