Search

Find a vulnerability

Search criteria

    54 vulnerabilities by IETF

    VAR-201103-0114

    Vulnerability from variot - Updated: 2026-04-10 23:24

    The STARTTLS implementation in Postfix 2.4.x before 2.4.16, 2.5.x before 2.5.12, 2.6.x before 2.6.9, and 2.7.x before 2.7.3 does not properly restrict I/O buffering, which allows man-in-the-middle attackers to insert commands into encrypted SMTP sessions by sending a cleartext command that is processed after TLS is in place, related to a "plaintext command injection" attack. Some STARTTLS implementations could allow a remote attacker to inject commands during the plaintext phase of the protocol. An attacker can exploit this issue to execute arbitrary commands in the context of the user running the application. Successful exploits can allow attackers to obtain email usernames and passwords. The following vendors are affected: Ipswitch Kerio Postfix Qmail-TLS Oracle (note that the affected application is unknown) SCO Group spamdyke ISC. Postfix is ​​a mail transfer agent used in Unix-like operating systems. The STARTTLS implementation in Postfix 2.4.x prior to 2.4.16, 2.5.x prior to 2.5.12, 2.6.x prior to 2.6.9, and 2.7.x prior to 2.7.3 did not properly restrict I/ O buffering effect. ========================================================================== Ubuntu Security Notice USN-1113-1 April 18, 2011

    postfix vulnerabilities

    A security issue affects these releases of Ubuntu and its derivatives:

    • Ubuntu 10.10
    • Ubuntu 10.04 LTS
    • Ubuntu 9.10
    • Ubuntu 8.04 LTS
    • Ubuntu 6.06 LTS

    Summary:

    An attacker could send crafted input to Postfix and cause it to reveal confidential information. This issue only affected Ubuntu 6.06 LTS and 8.04 LTS. (CVE-2009-2939)

    Wietse Venema discovered that Postfix incorrectly handled cleartext commands after TLS is in place. (CVE-2011-0411)

    Update instructions:

    The problem can be corrected by updating your system to the following package versions:

    Ubuntu 10.10: postfix 2.7.1-1ubuntu0.1

    Ubuntu 10.04 LTS: postfix 2.7.0-1ubuntu0.1

    Ubuntu 9.10: postfix 2.6.5-3ubuntu0.1

    Ubuntu 8.04 LTS: postfix 2.5.1-2ubuntu1.3

    Ubuntu 6.06 LTS: postfix 2.2.10-1ubuntu0.3

    In general, a standard system update will make all the necessary changes.

    References: CVE-2009-2939, CVE-2011-0411

    Package Information: https://launchpad.net/ubuntu/+source/postfix/2.7.1-1ubuntu0.1 https://launchpad.net/ubuntu/+source/postfix/2.7.0-1ubuntu0.1 https://launchpad.net/ubuntu/+source/postfix/2.6.5-3ubuntu0.1 https://launchpad.net/ubuntu/+source/postfix/2.5.1-2ubuntu1.3 https://launchpad.net/ubuntu/+source/postfix/2.2.10-1ubuntu0.3

    .

    CVE-2011-4130 ProFTPD uses a response pool after freeing it under exceptional conditions, possibly leading to remote code execution. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Gentoo Linux Security Advisory GLSA 201206-33


                                            http://security.gentoo.org/
    

    Severity: High Title: Postfix: Multiple vulnerabilities Date: June 25, 2012 Bugs: #358085, #366605 ID: 201206-33


    Synopsis

    A vulnerability has been found in Postfix, the worst of which possibly allowing remote code execution.

    Background

    Postfix is Wietse Venema=E2=80=99s mailer that attempts to be fast, easy = to administer, and secure, as an alternative to the widely-used Sendmail program.

    Affected packages

    -------------------------------------------------------------------
     Package              /     Vulnerable     /            Unaffected
    -------------------------------------------------------------------
    

    1 mail-mta/postfix < 2.7.4 >= 2.7.4

    Description

    A vulnerability have been discovered in Postfix. Please review the CVE identifier referenced below for details.

    Workaround

    There is no known workaround at this time.

    Resolution

    All Postfix users should upgrade to the latest version:

    # emerge --sync # emerge --ask --oneshot --verbose ">=mail-mta/postfix-2.7.4"

    References

    [ 1 ] CVE-2011-0411 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0411 [ 2 ] CVE-2011-1720 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-1720

    Availability

    This GLSA and any updates to it are available for viewing at the Gentoo Security Website:

    http://security.gentoo.org/glsa/glsa-201206-33.xml

    Concerns?

    Security is a primary focus of Gentoo Linux and ensuring the confidentiality and security of our users' machines is of utmost importance to us. Any security concerns should be addressed to security@gentoo.org or alternatively, you may file a bug at https://bugs.gentoo.org.

    License

    Copyright 2012 Gentoo Foundation, Inc; referenced text belongs to its owner(s).

    The contents of this document are licensed under the Creative Commons - Attribution / Share Alike license.

    http://creativecommons.org/licenses/by-sa/2.5 . This is a writeup about a flaw that I found recently, and that existed in multiple implementations of SMTP (Simple Mail Transfer Protocol) over TLS (Transport Layer Security) including my Postfix open source mailserver. I give an overview of the problem and its impact, how to find out if a server is affected, fixes, and draw lessons about where we can expect similar problems. A time line is at the end.

    For further reading: http://www.kb.cert.org/vuls/id/555316 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0411 http://www.postfix.org/CVE-2011-0411.html (extended writeup)

    Wietse
    

    Problem overview and impact

    The TLS protocol encrypts communication and protects it against modification by other parties. This protection exists only if a) software is free of flaws, and b) clients verify the server's TLS certificate, so that there can be no "man in the middle" (servers usually don't verify client certificates).

    The problem discussed in this writeup is caused by a software flaw.

    The injected commands could be used to steal the victim's email or SASL (Simple Authentication and Security Layer) username and password.

    This is not as big a problem as it may appear to be. The reason is that many SMTP client applications don't verify server TLS certificates. These SMTP clients are always vulnerable to command injection and other attacks. Their TLS sessions are only encrypted but not protected.

    A similar plaintext injection flaw may exist in the way SMTP clients handle SMTP-over-TLS server responses, but its impact is less interesting than the server-side flaw.

    SMTP is not the only protocol with a mid-session switch from plaintext to TLS. Other examples are POP3, IMAP, NNTP and FTP. Implementations of these protocols may be affected by the same flaw as discussed here.

    Demonstration

    The problem is easy to demonstrate with a one-line change to the OpenSSL s_client command source code (I would prefer scripting, but having to install Perl CPAN modules and all their dependencies is more work than downloading a .tar.gz file from openssl.org, adding eight characters to one line, and doing "./config; make").

    The OpenSSL s_client command can make a connection to servers that support straight TLS, SMTP over TLS, or a handful other protocols over TLS. The demonstration with SMTP over TLS involves a one-line change in the OpenSSL s_client source code (with OpenSSL 1.0.0, at line 1129 of file apps/s_client.c).

    Old: BIO_printf(sbio,"STARTTLS\r\n"); New: BIO_printf(sbio,"STARTTLS\r\nRSET\r\n");

    With this change, the s_client command sends the plaintext STARTTLS command ("let's turn on TLS") immediately followed by an RSET command (a relatively harmless protocol "reset"). Both commands are sent as plaintext in the same TCP/IP packet, and arrive together at the server. The "\r\n" are the carriage-return and newline characters; these are necessary to terminate an SMTP command.

    When an SMTP server has the plaintext injection flaw, it reads the STARTTLS command first, switches to SMTP-over-TLS mode, and only then the server reads the RSET command. Note, the RSET command was transmitted during the plaintext SMTP phase when there is no protection, but the server reads the command as if it was received over the TLS-protected channel.

    Thus, when the SMTP server has the flaw, the s_client command output will show two "250" SMTP server responses instead of one. The first "250" response is normal, and is present even when the server is not flawed. The second "250" response is for the RSET command, and indicates that the SMTP server has the plaintext injection flaw.

    $ apps/openssl s_client -quiet -starttls smtp -connect server:port [some server TLS certificate details omitted] 250 some text here <=== Normal response, also with "good" server. 250 more text here <=== RSET response, only with flawed server.

    Anatomy of the flaw: it's all about the plumbing

    Whether a program may have the plaintext injection flaw depends on how it adjusts the plumbing, as it inserts the TLS protocol layer in-between the SMTP protocol layer and the O/S TCP/IP protocol layer. I illustrate this with examples from three open source MTAs: Postfix, Sendmail and Exim. The diagram below is best viewed with a fixed-width font, for example, from the Courier family.

    Postfix MTA         Sendmail MTA          Exim MTA
    before/after        before/after        before/after
    

    switch to TLS switch to TLS switch to TLS

    SMTP    SMTP        SMTP    SMTP        SMTP    SMTP   <= SMTP layer
     ||      ||          ||      ||          ||      ||
    

    stream stream stream stream' || || buffers buffers buffers buffers' rw r'w' <= stream layer rw r'w' rw r'w' || || || || || || || || || TLS || TLS || TLS <= TLS layer || || || || || || O/S O/S O/S O/S O/S O/S <= TCP/IP layer

    As shown in the diagram, both Postfix and Sendmail use an application- level stream abstraction, where each stream has properties such as read/write buffers, read/write functions (indicated with rw), and other properties that are omitted for brevity.

    When Postfix switches to SMTP over TLS, it replaces the plaintext read/write functions (rw) with the TLS read/write functions (r'w'). Postfix does not modify any of the other stream properties including the read/write buffers. A patch for qmail that introduces TLS support uses the same approach. This approach of replacing only the stream read/write functions, but not the buffers or other stream properties, can introduce the plaintext injection flaw.

    When Sendmail switches to SMTP over TLS, it replaces the entire stream, along with its read/write buffers and read/write functions. Exim, on the other hand, does not seem to have a stream abstraction like Postfix, Sendmail or qmail. Instead of replacing streams or stream properties, Exim replaces plaintext read/write functions with TLS read/write functions. Because of their program structure, Sendmail and Exim didn't suffer from the plaintext injection flaw.

    Fixing the problem

    There are two solutions to address the flaw, and both solutions can be used together.

    • Report an error when unexpected plaintext is received after the STARTTLS command. As documented in RFC 3207, STARTTLS must be the last command in a pipelined group. If plaintext commands are received after STARTTLS, then that is a protocol violation.

    This measure can also be implemented outside the MTA, for example in a protocol-aware firewall.

    • If a program uses the same input buffer before and after the switch to TLS, it should discard the contents of the input buffer, just like it discards SMTP protocol information that it received during the plaintext protocol phase.

    Conclusion

    This plaintext injection problem is likely to recur when some development moves the plaintext-to-ciphertext switch outside the application: for example, into the kernel, into the local hardware, into a proxy, or into other infrastructure. This encourages applications to use the same application-level streams and buffers and read/write functions before and after the switch to ciphertext. When this migration happens, plaintext injection becomes once more a possibility.

    Time line

    Jan 5 2011: While finishing Postfix for its annual release, I found and fixed this flaw in the SMTP server and client implementations, where it had been sitting ever since TLS support was adopted.

    Jan 6-10 2011: As we investigated the scope of the problem, Victor Duchovni (co-developer) discovered that other implementations were also affected including security providers and security appliances.

    Jan 11 2011: Contact CERT/CC to help coordinate with the problem's resolution.

    Mar 7 2011: Public announcement, and Postfix legacy release updates.

    Packages for 2009.0 are provided as of the Extended Maintenance Program. Please visit this link to learn more: http://store.mandriva.com/product_info.php?cPath=149&products_id=490

    The updated packages have been patched to correct this issue.


    References:

    http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0411 http://www.postfix.org/CVE-2011-0411.html http://www.kb.cert.org/vuls/id/555316 http://www.securityfocus.com/archive/1/516901/30/0/threaded


    Updated Packages:

    Mandriva Linux 2009.0: eb607fe6834ded296aec54851a3bd56c 2009.0/i586/libpostfix1-2.5.5-4.2mdv2009.0.i586.rpm 76a18eb7f7627ba5489137eb592d0c8b 2009.0/i586/postfix-2.5.5-4.2mdv2009.0.i586.rpm 61c70b9d189f68276601d724e8444d9f 2009.0/i586/postfix-ldap-2.5.5-4.2mdv2009.0.i586.rpm 24255918008338487798ea647860484e 2009.0/i586/postfix-mysql-2.5.5-4.2mdv2009.0.i586.rpm e4d4db07cb302b3072f78097f84e1b87 2009.0/i586/postfix-pcre-2.5.5-4.2mdv2009.0.i586.rpm ebd9879c9c773c3d57375809c696f517 2009.0/i586/postfix-pgsql-2.5.5-4.2mdv2009.0.i586.rpm b27d3f6b20b11f71fd54d0f50a8a4b47 2009.0/SRPMS/postfix-2.5.5-4.2mdv2009.0.src.rpm

    Mandriva Linux 2009.0/X86_64: 73053818f39aba0ee0bece7ab997b07c 2009.0/x86_64/lib64postfix1-2.5.5-4.2mdv2009.0.x86_64.rpm c0e3c04bfd70acc0ee09e7413b3a3400 2009.0/x86_64/postfix-2.5.5-4.2mdv2009.0.x86_64.rpm 435fe07232bf307882a1589bc1ccca22 2009.0/x86_64/postfix-ldap-2.5.5-4.2mdv2009.0.x86_64.rpm 4d1d018487d1c3328cd425d220136a6f 2009.0/x86_64/postfix-mysql-2.5.5-4.2mdv2009.0.x86_64.rpm e7bd9b102319bc1ed4cdda27edaf26e2 2009.0/x86_64/postfix-pcre-2.5.5-4.2mdv2009.0.x86_64.rpm 7051b04bff45730a0268c5b311361111 2009.0/x86_64/postfix-pgsql-2.5.5-4.2mdv2009.0.x86_64.rpm b27d3f6b20b11f71fd54d0f50a8a4b47 2009.0/SRPMS/postfix-2.5.5-4.2mdv2009.0.src.rpm

    Mandriva Linux 2010.0: f83a569908244de2e04f13c5e9cbc29a 2010.0/i586/libpostfix1-2.6.5-2.1mdv2010.0.i586.rpm b28f60198223458fe7a8b9c92d9901c1 2010.0/i586/postfix-2.6.5-2.1mdv2010.0.i586.rpm 1572c433ec62d49970a250050da98ed7 2010.0/i586/postfix-ldap-2.6.5-2.1mdv2010.0.i586.rpm 2aeb9f3d82b97e4314b3f8d6500a244a 2010.0/i586/postfix-mysql-2.6.5-2.1mdv2010.0.i586.rpm 2d93c886dda73832ee8b96961e0cc316 2010.0/i586/postfix-pcre-2.6.5-2.1mdv2010.0.i586.rpm 544853ecd21ca236324418232b59d206 2010.0/i586/postfix-pgsql-2.6.5-2.1mdv2010.0.i586.rpm e3748479ec6c93be12808e26e6b0fa55 2010.0/SRPMS/postfix-2.6.5-2.1mdv2010.0.src.rpm

    Mandriva Linux 2010.0/X86_64: 0282b58fb34ab310a8e66cda1792da37 2010.0/x86_64/lib64postfix1-2.6.5-2.1mdv2010.0.x86_64.rpm 644f3b20cfed1b5e57ef53a7ef94898a 2010.0/x86_64/postfix-2.6.5-2.1mdv2010.0.x86_64.rpm 16b27a49a3dcae6fa520c3cb24b2f69b 2010.0/x86_64/postfix-ldap-2.6.5-2.1mdv2010.0.x86_64.rpm 9e60217b6e8adc9a0e286df835f9d695 2010.0/x86_64/postfix-mysql-2.6.5-2.1mdv2010.0.x86_64.rpm 8594b10f400395fff17ffda26e9e3b3d 2010.0/x86_64/postfix-pcre-2.6.5-2.1mdv2010.0.x86_64.rpm e63fb8c5794ce971488898af1d537f36 2010.0/x86_64/postfix-pgsql-2.6.5-2.1mdv2010.0.x86_64.rpm e3748479ec6c93be12808e26e6b0fa55 2010.0/SRPMS/postfix-2.6.5-2.1mdv2010.0.src.rpm

    Mandriva Linux 2010.1: 19ee5b6c6a18c73ccf1d74e20f89759d 2010.1/i586/libpostfix1-2.7.0-4.1mdv2010.2.i586.rpm 7a468df2b451f6972c38faf1f60ad8af 2010.1/i586/postfix-2.7.0-4.1mdv2010.2.i586.rpm a814f84c61afd93f3416c69d993afd7a 2010.1/i586/postfix-cdb-2.7.0-4.1mdv2010.2.i586.rpm f6f7f9492ab304d28f8aa4bfc653ca1e 2010.1/i586/postfix-ldap-2.7.0-4.1mdv2010.2.i586.rpm 8013bafd20881dd85b3be95529be848d 2010.1/i586/postfix-mysql-2.7.0-4.1mdv2010.2.i586.rpm 145c8551dc1c51b071d1f3f992f8e638 2010.1/i586/postfix-pcre-2.7.0-4.1mdv2010.2.i586.rpm 8f0d058eda66267085cbe5a7f5133b60 2010.1/i586/postfix-pgsql-2.7.0-4.1mdv2010.2.i586.rpm c90d8220b74b39ce44a4b9dfe8876783 2010.1/SRPMS/postfix-2.7.0-4.1mdv2010.2.src.rpm

    Mandriva Linux 2010.1/X86_64: 0a9207a9e00cce2e656ff248513d5bc3 2010.1/x86_64/lib64postfix1-2.7.0-4.1mdv2010.2.x86_64.rpm 3e2cc9ea2bf3d6979d5c6a5b3ec9b54a 2010.1/x86_64/postfix-2.7.0-4.1mdv2010.2.x86_64.rpm c8c5efad63b597b3d3a0aec3c5027ffa 2010.1/x86_64/postfix-cdb-2.7.0-4.1mdv2010.2.x86_64.rpm 71d9a4095514c72494c4f02d2696b619 2010.1/x86_64/postfix-ldap-2.7.0-4.1mdv2010.2.x86_64.rpm 8865fea8796435b2d715bf0d89c4530f 2010.1/x86_64/postfix-mysql-2.7.0-4.1mdv2010.2.x86_64.rpm 784960a49889f3fce8a308842321d8e8 2010.1/x86_64/postfix-pcre-2.7.0-4.1mdv2010.2.x86_64.rpm dc50ccda7bfb1a1f7f673bc251f14683 2010.1/x86_64/postfix-pgsql-2.7.0-4.1mdv2010.2.x86_64.rpm c90d8220b74b39ce44a4b9dfe8876783 2010.1/SRPMS/postfix-2.7.0-4.1mdv2010.2.src.rpm

    Corporate 4.0: 6b7d62433679d20ae3b5cdf2668019e7 corporate/4.0/i586/libpostfix1-2.3.5-0.4.20060mlcs4.i586.rpm c5d4cbc67d00e0ea8b32c6598d6d65f0 corporate/4.0/i586/postfix-2.3.5-0.4.20060mlcs4.i586.rpm 287daadea040f15c1e25a6de77a438b2 corporate/4.0/i586/postfix-ldap-2.3.5-0.4.20060mlcs4.i586.rpm aac87a567ae68c48d4e8226429b35697 corporate/4.0/i586/postfix-mysql-2.3.5-0.4.20060mlcs4.i586.rpm c331a8061b0c5a6639c633d608e37871 corporate/4.0/i586/postfix-pcre-2.3.5-0.4.20060mlcs4.i586.rpm 25ce650233120a54e830c120f773f715 corporate/4.0/i586/postfix-pgsql-2.3.5-0.4.20060mlcs4.i586.rpm f2f060fddbb666572eca06ae47e36a3a corporate/4.0/SRPMS/postfix-2.3.5-0.4.20060mlcs4.src.rpm

    Corporate 4.0/X86_64: 45b683c80b3006c3df5144bfe0fede86 corporate/4.0/x86_64/lib64postfix1-2.3.5-0.4.20060mlcs4.x86_64.rpm fc82cfcdbf89c059b6850edfa049128f corporate/4.0/x86_64/postfix-2.3.5-0.4.20060mlcs4.x86_64.rpm 7057754d88c8146d235d3ab96fd64d2f corporate/4.0/x86_64/postfix-ldap-2.3.5-0.4.20060mlcs4.x86_64.rpm 872c28155eb6276ba0fd1001387ffac7 corporate/4.0/x86_64/postfix-mysql-2.3.5-0.4.20060mlcs4.x86_64.rpm 644747748d18077fc63aa740c2947768 corporate/4.0/x86_64/postfix-pcre-2.3.5-0.4.20060mlcs4.x86_64.rpm 19b2a209beade7e6e25de6d0f3cb4b6d corporate/4.0/x86_64/postfix-pgsql-2.3.5-0.4.20060mlcs4.x86_64.rpm f2f060fddbb666572eca06ae47e36a3a corporate/4.0/SRPMS/postfix-2.3.5-0.4.20060mlcs4.src.rpm

    Mandriva Enterprise Server 5: 9c50578bd954be2ea42e6f3f3131cc9c mes5/i586/libpostfix1-2.5.5-4.2mdvmes5.2.i586.rpm bca22f9be6e6bef4e02f2ffb4623d2e3 mes5/i586/postfix-2.5.5-4.2mdvmes5.2.i586.rpm 45cfa7336d29cddca1ac07270d2b8287 mes5/i586/postfix-ldap-2.5.5-4.2mdvmes5.2.i586.rpm 87d4b942fefedc239a213b3ce5715cf0 mes5/i586/postfix-mysql-2.5.5-4.2mdvmes5.2.i586.rpm b3caf9572b69e757b9697139bb0ed5d8 mes5/i586/postfix-pcre-2.5.5-4.2mdvmes5.2.i586.rpm bde845f9957e2ead0e398c5bebef6f79 mes5/i586/postfix-pgsql-2.5.5-4.2mdvmes5.2.i586.rpm 8ad3739bcdf5297b2dddfb4e289049d9 mes5/SRPMS/postfix-2.5.5-4.2mdvmes5.2.src.rpm

    Mandriva Enterprise Server 5/X86_64: d920df80c9fdbcb64a9c50d265acd7e8 mes5/x86_64/lib64postfix1-2.5.5-4.2mdvmes5.2.x86_64.rpm 1d09a25b69b76b2c013bac182c0e456d mes5/x86_64/postfix-2.5.5-4.2mdvmes5.2.x86_64.rpm 0afe348155bee4af965ec616d86a9219 mes5/x86_64/postfix-ldap-2.5.5-4.2mdvmes5.2.x86_64.rpm db4e476a96f489d957610fb1ff7c6f9e mes5/x86_64/postfix-mysql-2.5.5-4.2mdvmes5.2.x86_64.rpm 6ce0428271de05b3bb2d2e430c3281a3 mes5/x86_64/postfix-pcre-2.5.5-4.2mdvmes5.2.x86_64.rpm 32468daeee58b727ce1c85adcc2b364c mes5/x86_64/postfix-pgsql-2.5.5-4.2mdvmes5.2.x86_64.rpm 8ad3739bcdf5297b2dddfb4e289049d9 mes5/SRPMS/postfix-2.5.5-4.2mdvmes5.2.src.rpm


    To upgrade automatically use MandrivaUpdate or urpmi. The verification of md5 checksums and GPG signatures is performed automatically for you. The Common Vulnerabilities and Exposures project identifies the following problems:

    CVE-2009-2939 The postinst script grants the postfix user write access to /var/spool/postfix/pid, which might allow local users to conduct symlink attacks that overwrite arbitrary files.

    CVE-2011-1720 A heap-based read-only buffer overflow allows malicious clients to crash the smtpd server process using a crafted SASL authentication request.

    For the oldstable distribution (lenny), this problem has been fixed in version 2.5.5-1.1+lenny1.

    For the stable distribution (squeeze), this problem has been fixed in version 2.7.1-1+squeeze1.

    For the unstable distribution (sid), this problem has been fixed in version 2.8.0-1.

    We recommend that you upgrade your postfix packages.

    Further information about Debian Security Advisories, how to apply these updates to your system and frequently asked questions can be found at: http://www.debian.org/security/

    Mailing list: debian-security-announce@lists.debian.org -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux)

    iQEcBAEBAgAGBQJNyXybAAoJEL97/wQC1SS+xb0H/igqYhOTtvO91deptOPyednw 5sBQPXGoo+RXeomLsJk8P6ezm7fEGTSl7GUEpNwS1qsqAPVnl9XAK6dOGFae1PbG 2L93eR6AKgKo60tp2On1Tf1c0HcD6yKiZ6J7C7nZ3E8+yZwSd1k6826ZUQ3gzKKW DTIu6w2CzzleK/bppWfhAvwvobHD6X1B16qklZfqw6H0C/QfMjM8ZXLCRv9Tq1TN jX1W4qeed7pr8r3pTJ9npzae7drqFLoVDi0tpGKi0UHEwgRma1AbDaI2BVmeblue YNRHg7H+TqfrUwN8iB64WrYvqnHCQfvViL8f0ML2uJXJf/lHby+vxPl6EGxAIoY= =yCCp -----END PGP SIGNATURE-----


    Full-Disclosure - We believe in it. Charter: http://lists.grok.org.uk/full-disclosure-charter.html Hosted and sponsored by Secunia - http://secunia.com/

    Show details on source website

    {
      "affected_products": {
        "_id": null,
        "data": [
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "postfix",
            "version": "2.4.3"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "postfix",
            "version": "2.4.8"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "postfix",
            "version": "2.4.1"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "postfix",
            "version": "2.4.7"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "postfix",
            "version": "2.4.5"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "postfix",
            "version": "2.4.6"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "postfix",
            "version": "2.4.4"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "postfix",
            "version": "2.4.2"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "postfix",
            "version": "2.4.0"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "postfix",
            "version": "2.4"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.4.9"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.5.11"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.6.0"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.4.15"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.4.13"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.5.1"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.7.1"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.5.6"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.4.12"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.6.4"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.5.5"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.6.5"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.5.4"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.6.7"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.4.11"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.4.14"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.6.8"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.7.0"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.5.9"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.7.2"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.5.0"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.5.3"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.4.10"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.6.6"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.6"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.6.2"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.5.10"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.5.8"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.6.3"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.5.2"
          },
          {
            "_id": null,
            "model": "postfix",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "postfix",
            "version": "2.5.7"
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "cyrus imap",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "debian gnu linux",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "ipswitch",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "kerio",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "postfix",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "qmail tls",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "red hat",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "sun microsystems",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "ubuntu",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "watchguard",
            "version": null
          },
          {
            "_id": null,
            "model": "linux armel",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.3.1"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "spamdyke",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "spamdyke",
            "version": "4.2.1"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.7.3"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.7"
          },
          {
            "_id": null,
            "model": "imap server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cyrus",
            "version": "2.4"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.5.4"
          },
          {
            "_id": null,
            "model": "enterprise linux hpc node optional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.22"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.0"
          },
          {
            "_id": null,
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "linux hppa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "linux enterprise sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "groupware server 2.2-rc3",
            "scope": null,
            "trust": 0.3,
            "vendor": "kolab",
            "version": null
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.9"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "6.0.2"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.6"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.01"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.4.9"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "7.0.5"
          },
          {
            "_id": null,
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.0.3"
          },
          {
            "_id": null,
            "model": "enterprise linux server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.5.5"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.1.5"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.8"
          },
          {
            "_id": null,
            "model": "corporate server x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "enterprise linux server optional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "7.0.1"
          },
          {
            "_id": null,
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.3.2"
          },
          {
            "_id": null,
            "model": "linux lts powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.2.3"
          },
          {
            "_id": null,
            "model": "enterprise server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "5"
          },
          {
            "_id": null,
            "model": "pure-ftpd",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "pureftpd",
            "version": "1.0.30"
          },
          {
            "_id": null,
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "11.3"
          },
          {
            "_id": null,
            "model": "linux lts",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.2"
          },
          {
            "_id": null,
            "model": "enterprise linux es",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "_id": null,
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop version",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "_id": null,
            "model": "linux lts amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "_id": null,
            "model": "enterprise linux workstation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "linux i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.10"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.5"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.6"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.8"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.4"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "20011115"
          },
          {
            "_id": null,
            "model": "groupware server -rc2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2"
          },
          {
            "_id": null,
            "model": "linux lts powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "_id": null,
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2.3"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "_id": null,
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.11"
          },
          {
            "_id": null,
            "model": "java system messaging server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "mailserver patch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.7.01"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.2.2"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "5.0.8"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.5"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.1"
          },
          {
            "_id": null,
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "pardus",
            "version": "20110"
          },
          {
            "_id": null,
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.5.2"
          },
          {
            "_id": null,
            "model": "linux lts i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.6.3"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.3"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.1.3"
          },
          {
            "_id": null,
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "imail hotfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.22"
          },
          {
            "_id": null,
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "11.4"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "5.0.5"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.13"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.1"
          },
          {
            "_id": null,
            "model": "enterprise linux workstation optional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "mailserver patch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.6.23"
          },
          {
            "_id": null,
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.2"
          },
          {
            "_id": null,
            "model": "linux enterprise sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "linux i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "_id": null,
            "model": "pure-ftpd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "pureftpd",
            "version": "1.0.29"
          },
          {
            "_id": null,
            "model": "groupware server 2.1.beta3",
            "scope": null,
            "trust": 0.3,
            "vendor": "kolab",
            "version": null
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "linux lts sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "_id": null,
            "model": "aura communication manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.3.3"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.4.1"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "7.0.2"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.3"
          },
          {
            "_id": null,
            "model": "linux lts amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "_id": null,
            "model": "groupware server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.3.2"
          },
          {
            "_id": null,
            "model": "inn",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.5.3"
          },
          {
            "_id": null,
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.8"
          },
          {
            "_id": null,
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.10"
          },
          {
            "_id": null,
            "model": "linux lts i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "7.0.3"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.4.8"
          },
          {
            "_id": null,
            "model": "spamdyke",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "spamdyke",
            "version": "4.2"
          },
          {
            "_id": null,
            "model": "linux mandrake",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2009.0"
          },
          {
            "_id": null,
            "model": "mailserver patch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.1.31"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "_id": null,
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "messaging storage server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.4"
          },
          {
            "_id": null,
            "model": "messaging storage server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "1.1.13"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "19991231"
          },
          {
            "_id": null,
            "model": "linux alpha",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "linux ia-32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "linux mipsel",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "linux mips",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "6.4"
          },
          {
            "_id": null,
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.1"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.0.3"
          },
          {
            "_id": null,
            "model": "imap server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cyrus",
            "version": "2.4.7"
          },
          {
            "_id": null,
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.10"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.7"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.6.1"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.3.1"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "linux lpia",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "_id": null,
            "model": "connect build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "7.1.42985"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.3"
          },
          {
            "_id": null,
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "7.12"
          },
          {
            "_id": null,
            "model": "linux enterprise sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.6.2"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.4.2"
          },
          {
            "_id": null,
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "groupware server 2.1beta2",
            "scope": null,
            "trust": 0.3,
            "vendor": "kolab",
            "version": null
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.0.5"
          },
          {
            "_id": null,
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.10"
          },
          {
            "_id": null,
            "model": "linux lts sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.6-20080902"
          },
          {
            "_id": null,
            "model": "corporate server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "5.0.6"
          },
          {
            "_id": null,
            "model": "linux enterprise sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "_id": null,
            "model": "linux s/390",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.2"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.5"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.6"
          },
          {
            "_id": null,
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "_id": null,
            "model": "scooffice server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sco",
            "version": "0"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop optional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.9"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.20"
          },
          {
            "_id": null,
            "model": "linux mandrake x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2010.1"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "7.0.4"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.7"
          },
          {
            "_id": null,
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.3.1"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "6.0.3"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.2"
          },
          {
            "_id": null,
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.1"
          },
          {
            "_id": null,
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2.2"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": null,
            "trust": 0.3,
            "vendor": "gentoo",
            "version": null
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.1.3"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "1.1.12"
          },
          {
            "_id": null,
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "_id": null,
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.2.4"
          },
          {
            "_id": null,
            "model": "enterprise linux hpc node",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "1.1.11"
          },
          {
            "_id": null,
            "model": "aura communication manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.1"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "6.0.4"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "linux alpha",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "xcs",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "watchguard",
            "version": "9.1"
          },
          {
            "_id": null,
            "model": "netqmail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "qmail smtpd auth",
            "version": "0"
          },
          {
            "_id": null,
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.2"
          },
          {
            "_id": null,
            "model": "linux lts lpia",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "_id": null,
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "_id": null,
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.4.0"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.14"
          },
          {
            "_id": null,
            "model": "linux i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "_id": null,
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.4.1"
          },
          {
            "_id": null,
            "model": "enterprise linux server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "7.0.7"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "6.0.6"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "1.0.21"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.1"
          },
          {
            "_id": null,
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2.4"
          },
          {
            "_id": null,
            "model": "java system messaging server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "6.3"
          },
          {
            "_id": null,
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "6.0.5"
          },
          {
            "_id": null,
            "model": "enterprise linux as",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "_id": null,
            "model": "linux enterprise server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "9"
          },
          {
            "_id": null,
            "model": "groupware server 2.2-rc1",
            "scope": null,
            "trust": 0.3,
            "vendor": "kolab",
            "version": null
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.10"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.6.5"
          },
          {
            "_id": null,
            "model": "linux s/390",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.5"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.4"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.8"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6"
          },
          {
            "_id": null,
            "model": "linux m68k",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "message networking sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.8"
          },
          {
            "_id": null,
            "model": "groupware server beta3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2"
          },
          {
            "_id": null,
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.3"
          },
          {
            "_id": null,
            "model": "linux ia-64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "6.3"
          },
          {
            "_id": null,
            "model": "linux armel",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.1"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.10"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.6"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "20010228"
          },
          {
            "_id": null,
            "model": "enterprise linux ws",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.6.4"
          },
          {
            "_id": null,
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.0.2"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.1.1"
          },
          {
            "_id": null,
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "0"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "7.1"
          },
          {
            "_id": null,
            "model": "linux hppa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop workstation client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "_id": null,
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "messaging storage server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "imail hotfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.151"
          },
          {
            "_id": null,
            "model": "imap server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cyrus",
            "version": "2.4.6"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.2"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "2006.2"
          },
          {
            "_id": null,
            "model": "starttls",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "0"
          },
          {
            "_id": null,
            "model": "mailserver build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.6.17069"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "5.0.7"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "pardus",
            "version": "20090"
          },
          {
            "_id": null,
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "11.2"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "6.0.1"
          },
          {
            "_id": null,
            "model": "linux ia-32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "messaging storage server sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "linux mipsel",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "groupware server beta1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.5"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "6.2"
          },
          {
            "_id": null,
            "model": "linux mips",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "enterprise server x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "5"
          },
          {
            "_id": null,
            "model": "venema postfix patchlevel",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.5.44"
          },
          {
            "_id": null,
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.2"
          },
          {
            "_id": null,
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "7.0.6"
          },
          {
            "_id": null,
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.0.1"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.4"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.7"
          },
          {
            "_id": null,
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.0.4"
          },
          {
            "_id": null,
            "model": "linux mandrake x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2009.0"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.2.10"
          },
          {
            "_id": null,
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "19990906"
          },
          {
            "_id": null,
            "model": "linux m68k",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "_id": null,
            "model": "messaging storage server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.6"
          },
          {
            "_id": null,
            "model": "xcs",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "watchguard",
            "version": "9.0"
          },
          {
            "_id": null,
            "model": "linux mandrake",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2010.1"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.3"
          },
          {
            "_id": null,
            "model": "linux ia-64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#555316"
          },
          {
            "db": "BID",
            "id": "46767"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-213"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-0411"
          }
        ]
      },
      "credits": {
        "_id": null,
        "data": "Wietse Venema",
        "sources": [
          {
            "db": "BID",
            "id": "46767"
          },
          {
            "db": "PACKETSTORM",
            "id": "99053"
          }
        ],
        "trust": 0.4
      },
      "cve": "CVE-2011-0411",
      "cvss": {
        "_id": null,
        "data": [
          {
            "cvssV2": [
              {
                "accessComplexity": "MEDIUM",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "nvd@nist.gov",
                "availabilityImpact": "PARTIAL",
                "baseScore": 6.8,
                "confidentialityImpact": "PARTIAL",
                "exploitabilityScore": 8.6,
                "id": "CVE-2011-0411",
                "impactScore": 6.4,
                "integrityImpact": "PARTIAL",
                "severity": "MEDIUM",
                "trust": 1.1,
                "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
                "version": "2.0"
              },
              {
                "accessComplexity": "MEDIUM",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "VULHUB",
                "availabilityImpact": "PARTIAL",
                "baseScore": 6.8,
                "confidentialityImpact": "PARTIAL",
                "exploitabilityScore": 8.6,
                "id": "VHN-48356",
                "impactScore": 6.4,
                "integrityImpact": "PARTIAL",
                "severity": "MEDIUM",
                "trust": 0.1,
                "vectorString": "AV:N/AC:M/AU:N/C:P/I:P/A:P",
                "version": "2.0"
              }
            ],
            "cvssV3": [],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2011-0411",
                "trust": 1.0,
                "value": "MEDIUM"
              },
              {
                "author": "CARNEGIE MELLON",
                "id": "VU#555316",
                "trust": 0.8,
                "value": "1.39"
              },
              {
                "author": "CNNVD",
                "id": "CNNVD-201103-213",
                "trust": 0.6,
                "value": "MEDIUM"
              },
              {
                "author": "VULHUB",
                "id": "VHN-48356",
                "trust": 0.1,
                "value": "MEDIUM"
              },
              {
                "author": "VULMON",
                "id": "CVE-2011-0411",
                "trust": 0.1,
                "value": "MEDIUM"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#555316"
          },
          {
            "db": "VULHUB",
            "id": "VHN-48356"
          },
          {
            "db": "VULMON",
            "id": "CVE-2011-0411"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-213"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-0411"
          }
        ]
      },
      "description": {
        "_id": null,
        "data": "The STARTTLS implementation in Postfix 2.4.x before 2.4.16, 2.5.x before 2.5.12, 2.6.x before 2.6.9, and 2.7.x before 2.7.3 does not properly restrict I/O buffering, which allows man-in-the-middle attackers to insert commands into encrypted SMTP sessions by sending a cleartext command that is processed after TLS is in place, related to a \"plaintext command injection\" attack. Some STARTTLS implementations could allow a remote attacker to inject commands during the plaintext phase of the protocol. \nAn attacker can exploit this issue to execute arbitrary commands in the  context of the user running the application. Successful exploits can  allow attackers to obtain email usernames and passwords. \nThe following vendors are affected:\nIpswitch\nKerio\nPostfix\nQmail-TLS\nOracle (note that the affected application is unknown)\nSCO Group\nspamdyke\nISC. Postfix is \u200b\u200ba mail transfer agent used in Unix-like operating systems. The STARTTLS implementation in Postfix 2.4.x prior to 2.4.16, 2.5.x prior to 2.5.12, 2.6.x prior to 2.6.9, and 2.7.x prior to 2.7.3 did not properly restrict I/ O buffering effect. ==========================================================================\nUbuntu Security Notice USN-1113-1\nApril 18, 2011\n\npostfix vulnerabilities\n==========================================================================\n\nA security issue affects these releases of Ubuntu and its derivatives:\n\n- Ubuntu 10.10\n- Ubuntu 10.04 LTS\n- Ubuntu 9.10\n- Ubuntu 8.04 LTS\n- Ubuntu 6.06 LTS\n\nSummary:\n\nAn attacker could send crafted input to Postfix and cause it to reveal\nconfidential information. \nThis issue only affected Ubuntu 6.06 LTS and 8.04 LTS. (CVE-2009-2939)\n\nWietse Venema discovered that Postfix incorrectly handled cleartext\ncommands after TLS is in place. (CVE-2011-0411)\n\nUpdate instructions:\n\nThe problem can be corrected by updating your system to the following\npackage versions:\n\nUbuntu 10.10:\n  postfix                         2.7.1-1ubuntu0.1\n\nUbuntu 10.04 LTS:\n  postfix                         2.7.0-1ubuntu0.1\n\nUbuntu 9.10:\n  postfix                         2.6.5-3ubuntu0.1\n\nUbuntu 8.04 LTS:\n  postfix                         2.5.1-2ubuntu1.3\n\nUbuntu 6.06 LTS:\n  postfix                         2.2.10-1ubuntu0.3\n\nIn general, a standard system update will make all the necessary changes. \n\nReferences:\n  CVE-2009-2939, CVE-2011-0411\n\nPackage Information:\n  https://launchpad.net/ubuntu/+source/postfix/2.7.1-1ubuntu0.1\n  https://launchpad.net/ubuntu/+source/postfix/2.7.0-1ubuntu0.1\n  https://launchpad.net/ubuntu/+source/postfix/2.6.5-3ubuntu0.1\n  https://launchpad.net/ubuntu/+source/postfix/2.5.1-2ubuntu1.3\n  https://launchpad.net/ubuntu/+source/postfix/2.2.10-1ubuntu0.3\n\n\n. \n\nCVE-2011-4130\n\tProFTPD uses a response pool after freeing it under\n\texceptional conditions, possibly leading to remote code\n\texecution. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nGentoo Linux Security Advisory                           GLSA 201206-33\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n                                            http://security.gentoo.org/\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\n Severity: High\n    Title: Postfix: Multiple vulnerabilities\n     Date: June 25, 2012\n     Bugs: #358085, #366605\n       ID: 201206-33\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\nSynopsis\n========\n\nA vulnerability has been found in Postfix, the worst of which possibly\nallowing remote code execution. \n\nBackground\n==========\n\nPostfix is Wietse Venema=E2=80=99s mailer that attempts to be fast, easy =\nto\nadminister, and secure, as an alternative to the widely-used Sendmail\nprogram. \n\nAffected packages\n=================\n\n    -------------------------------------------------------------------\n     Package              /     Vulnerable     /            Unaffected\n    -------------------------------------------------------------------\n  1  mail-mta/postfix             \u003c 2.7.4                    \u003e= 2.7.4\n\nDescription\n===========\n\nA vulnerability have been discovered in Postfix. Please review the CVE\nidentifier referenced below for details. \n\nWorkaround\n==========\n\nThere is no known workaround at this time. \n\nResolution\n==========\n\nAll Postfix users should upgrade to the latest version:\n\n  # emerge --sync\n  # emerge --ask --oneshot --verbose \"\u003e=mail-mta/postfix-2.7.4\"\n\nReferences\n==========\n\n[ 1 ] CVE-2011-0411\n      http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0411\n[ 2 ] CVE-2011-1720\n      http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-1720\n\nAvailability\n============\n\nThis GLSA and any updates to it are available for viewing at\nthe Gentoo Security Website:\n\n http://security.gentoo.org/glsa/glsa-201206-33.xml\n\nConcerns?\n=========\n\nSecurity is a primary focus of Gentoo Linux and ensuring the\nconfidentiality and security of our users\u0027 machines is of utmost\nimportance to us. Any security concerns should be addressed to\nsecurity@gentoo.org or alternatively, you may file a bug at\nhttps://bugs.gentoo.org. \n\nLicense\n=======\n\nCopyright 2012 Gentoo Foundation, Inc; referenced text\nbelongs to its owner(s). \n\nThe contents of this document are licensed under the\nCreative Commons - Attribution / Share Alike license. \n\nhttp://creativecommons.org/licenses/by-sa/2.5\n. This is a writeup about a flaw that I found recently, and that\nexisted in multiple implementations of SMTP (Simple Mail Transfer\nProtocol) over TLS (Transport Layer Security) including my Postfix\nopen source mailserver. I give an overview of the problem and its\nimpact, how to find out if a server is affected, fixes, and draw\nlessons about where we can expect similar problems.  A time line\nis at the end. \n\nFor further reading:\nhttp://www.kb.cert.org/vuls/id/555316 \nhttp://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0411\nhttp://www.postfix.org/CVE-2011-0411.html (extended writeup)\n\n\tWietse\n\nProblem overview and impact\n===========================\n\nThe TLS protocol encrypts communication and protects it against\nmodification by other parties. This protection exists only if a)\nsoftware is free of flaws, and b) clients verify the server\u0027s TLS\ncertificate, so that there can be no \"man in the middle\" (servers\nusually don\u0027t verify client certificates). \n\nThe problem discussed in this writeup is caused by a software flaw. \n\nThe injected commands could be used to steal the victim\u0027s email or\nSASL (Simple Authentication and Security Layer) username and password. \n\nThis is not as big a problem as it may appear to be.  The reason\nis that many SMTP client applications don\u0027t verify server TLS\ncertificates.  These SMTP clients are always vulnerable to command\ninjection and other attacks. Their TLS sessions are only encrypted\nbut not protected. \n\nA similar plaintext injection flaw may exist in the way SMTP clients\nhandle SMTP-over-TLS server responses, but its impact is less\ninteresting than the server-side flaw. \n\nSMTP is not the only protocol with a mid-session switch from plaintext\nto TLS.  Other examples are POP3, IMAP, NNTP and FTP. Implementations\nof these protocols may be affected by the same flaw as discussed here. \n\nDemonstration\n=============\n\nThe problem is easy to demonstrate with a one-line change to the\nOpenSSL s_client command source code (I would prefer scripting, but\nhaving to install Perl CPAN modules and all their dependencies is\nmore work than downloading a .tar.gz file from openssl.org, adding\neight characters to one line, and doing \"./config; make\"). \n\nThe OpenSSL s_client command can make a connection to servers that\nsupport straight TLS, SMTP over TLS, or a handful other protocols\nover TLS. The demonstration with SMTP over TLS involves a one-line\nchange in the OpenSSL s_client source code (with OpenSSL 1.0.0, at\nline 1129 of file apps/s_client.c). \n\nOld:\t\tBIO_printf(sbio,\"STARTTLS\\r\\n\");\nNew:\t\tBIO_printf(sbio,\"STARTTLS\\r\\nRSET\\r\\n\");\n\nWith this change, the s_client command sends the plaintext STARTTLS\ncommand (\"let\u0027s turn on TLS\") immediately followed by an RSET command\n(a relatively harmless protocol \"reset\"). Both commands are sent\nas plaintext in the same TCP/IP packet, and arrive together at the\nserver. The \"\\r\\n\" are the carriage-return and newline characters;\nthese are necessary to terminate an SMTP command. \n\nWhen an SMTP server has the plaintext injection flaw, it reads the\nSTARTTLS command first, switches to SMTP-over-TLS mode, and only\nthen the server reads the RSET command.  Note, the RSET command was\ntransmitted during the plaintext SMTP phase when there is no\nprotection, but the server reads the command as if it was received\nover the TLS-protected channel. \n\nThus, when the SMTP server has the flaw, the s_client command output\nwill show two \"250\" SMTP server responses instead of one. The first\n\"250\" response is normal, and is present even when the server is\nnot flawed.  The second \"250\" response is for the RSET command, and\nindicates that the SMTP server has the plaintext injection flaw. \n\n $ apps/openssl s_client -quiet -starttls smtp -connect server:port\n [some server TLS certificate details omitted]\n 250 some text here \u003c=== Normal response, also with \"good\" server. \n 250 more text here \u003c=== RSET response, only with flawed server. \n\nAnatomy of the flaw: it\u0027s all about the plumbing\n================================================\n\nWhether a program may have the plaintext injection flaw depends on\nhow it adjusts the plumbing, as it inserts the TLS protocol layer\nin-between the SMTP protocol layer and the O/S TCP/IP protocol\nlayer. I illustrate this with examples from three open source MTAs:\nPostfix, Sendmail and Exim. The diagram below is best viewed with\na fixed-width font, for example, from the Courier family. \n\n    Postfix MTA         Sendmail MTA          Exim MTA\n    before/after        before/after        before/after\n   switch to TLS       switch to TLS       switch to TLS\n\n    SMTP    SMTP        SMTP    SMTP        SMTP    SMTP   \u003c= SMTP layer\n     ||      ||          ||      ||          ||      ||\n   stream  stream      stream  stream\u0027       ||      ||\n  buffers  buffers    buffers  buffers\u0027      rw     r\u0027w\u0027   \u003c= stream layer\n     rw     r\u0027w\u0027         rw     r\u0027w\u0027         ||      ||\n     ||      ||          ||      ||          ||      ||\n     ||     TLS          ||     TLS          ||     TLS    \u003c= TLS layer\n     ||      ||          ||      ||          ||      ||\n    O/S     O/S         O/S     O/S         O/S     O/S    \u003c= TCP/IP layer\n\nAs shown in the diagram, both Postfix and Sendmail use an application-\nlevel stream abstraction, where each stream has properties such as\nread/write buffers, read/write functions (indicated with rw), and\nother properties that are omitted for brevity. \n\nWhen Postfix switches to SMTP over TLS, it replaces the plaintext\nread/write functions (rw) with the TLS read/write functions (r\u0027w\u0027). \nPostfix does not modify any of the other stream properties including\nthe read/write buffers.  A patch for qmail that introduces TLS\nsupport uses the same approach.  This approach of replacing only\nthe stream read/write functions, but not the buffers or other stream\nproperties, can introduce the plaintext injection flaw. \n\nWhen Sendmail switches to SMTP over TLS, it replaces the entire\nstream, along with its read/write buffers and read/write functions. \nExim, on the other hand, does not seem to have a stream abstraction\nlike Postfix, Sendmail or qmail.  Instead of replacing streams or\nstream properties, Exim replaces plaintext read/write functions\nwith TLS read/write functions.  Because of their program structure,\nSendmail and Exim didn\u0027t suffer from the plaintext injection flaw. \n\nFixing the problem\n==================\n\nThere are two solutions to address the flaw, and both solutions can\nbe used together. \n\n- Report an error when unexpected plaintext is received after the\n  STARTTLS command.  As documented in RFC 3207, STARTTLS must be\n  the last command in a pipelined group. If plaintext commands are\n  received after STARTTLS, then that is a protocol violation.  \n\n  This measure can also be implemented outside the MTA, for example\n  in a protocol-aware firewall. \n\n- If a program uses the same input buffer before and after the\n  switch to TLS, it should discard the contents of the input buffer,\n  just like it discards SMTP protocol information that it received\n  during the plaintext protocol phase. \n\nConclusion\n==========\n\nThis plaintext injection problem is likely to recur when some\ndevelopment moves the plaintext-to-ciphertext switch outside the\napplication: for example, into the kernel, into the local hardware,\ninto a proxy, or into other infrastructure.  This encourages\napplications to use the same application-level streams and buffers\nand read/write functions before and after the switch to ciphertext. \nWhen this migration happens, plaintext injection becomes once more\na possibility. \n\nTime line\n=========\n\nJan 5 2011: While finishing Postfix for its annual release, I found\nand fixed this flaw in the SMTP server and client implementations,\nwhere it had been sitting ever since TLS support was adopted. \n\nJan 6-10 2011: As we investigated the scope of the problem, Victor\nDuchovni (co-developer) discovered that other implementations were\nalso affected including security providers and security appliances. \n\nJan 11 2011: Contact CERT/CC to help coordinate with the problem\u0027s\nresolution. \n\nMar 7 2011: Public announcement, and Postfix legacy release updates. \n \n Packages for 2009.0 are provided as of the Extended Maintenance\n Program. Please visit this link to learn more:\n http://store.mandriva.com/product_info.php?cPath=149\u0026amp;products_id=490\n \n The updated packages have been patched to correct this issue. \n _______________________________________________________________________\n\n References:\n\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-0411\n http://www.postfix.org/CVE-2011-0411.html\n http://www.kb.cert.org/vuls/id/555316\n http://www.securityfocus.com/archive/1/516901/30/0/threaded\n _______________________________________________________________________\n\n Updated Packages:\n\n Mandriva Linux 2009.0:\n eb607fe6834ded296aec54851a3bd56c  2009.0/i586/libpostfix1-2.5.5-4.2mdv2009.0.i586.rpm\n 76a18eb7f7627ba5489137eb592d0c8b  2009.0/i586/postfix-2.5.5-4.2mdv2009.0.i586.rpm\n 61c70b9d189f68276601d724e8444d9f  2009.0/i586/postfix-ldap-2.5.5-4.2mdv2009.0.i586.rpm\n 24255918008338487798ea647860484e  2009.0/i586/postfix-mysql-2.5.5-4.2mdv2009.0.i586.rpm\n e4d4db07cb302b3072f78097f84e1b87  2009.0/i586/postfix-pcre-2.5.5-4.2mdv2009.0.i586.rpm\n ebd9879c9c773c3d57375809c696f517  2009.0/i586/postfix-pgsql-2.5.5-4.2mdv2009.0.i586.rpm \n b27d3f6b20b11f71fd54d0f50a8a4b47  2009.0/SRPMS/postfix-2.5.5-4.2mdv2009.0.src.rpm\n\n Mandriva Linux 2009.0/X86_64:\n 73053818f39aba0ee0bece7ab997b07c  2009.0/x86_64/lib64postfix1-2.5.5-4.2mdv2009.0.x86_64.rpm\n c0e3c04bfd70acc0ee09e7413b3a3400  2009.0/x86_64/postfix-2.5.5-4.2mdv2009.0.x86_64.rpm\n 435fe07232bf307882a1589bc1ccca22  2009.0/x86_64/postfix-ldap-2.5.5-4.2mdv2009.0.x86_64.rpm\n 4d1d018487d1c3328cd425d220136a6f  2009.0/x86_64/postfix-mysql-2.5.5-4.2mdv2009.0.x86_64.rpm\n e7bd9b102319bc1ed4cdda27edaf26e2  2009.0/x86_64/postfix-pcre-2.5.5-4.2mdv2009.0.x86_64.rpm\n 7051b04bff45730a0268c5b311361111  2009.0/x86_64/postfix-pgsql-2.5.5-4.2mdv2009.0.x86_64.rpm \n b27d3f6b20b11f71fd54d0f50a8a4b47  2009.0/SRPMS/postfix-2.5.5-4.2mdv2009.0.src.rpm\n\n Mandriva Linux 2010.0:\n f83a569908244de2e04f13c5e9cbc29a  2010.0/i586/libpostfix1-2.6.5-2.1mdv2010.0.i586.rpm\n b28f60198223458fe7a8b9c92d9901c1  2010.0/i586/postfix-2.6.5-2.1mdv2010.0.i586.rpm\n 1572c433ec62d49970a250050da98ed7  2010.0/i586/postfix-ldap-2.6.5-2.1mdv2010.0.i586.rpm\n 2aeb9f3d82b97e4314b3f8d6500a244a  2010.0/i586/postfix-mysql-2.6.5-2.1mdv2010.0.i586.rpm\n 2d93c886dda73832ee8b96961e0cc316  2010.0/i586/postfix-pcre-2.6.5-2.1mdv2010.0.i586.rpm\n 544853ecd21ca236324418232b59d206  2010.0/i586/postfix-pgsql-2.6.5-2.1mdv2010.0.i586.rpm \n e3748479ec6c93be12808e26e6b0fa55  2010.0/SRPMS/postfix-2.6.5-2.1mdv2010.0.src.rpm\n\n Mandriva Linux 2010.0/X86_64:\n 0282b58fb34ab310a8e66cda1792da37  2010.0/x86_64/lib64postfix1-2.6.5-2.1mdv2010.0.x86_64.rpm\n 644f3b20cfed1b5e57ef53a7ef94898a  2010.0/x86_64/postfix-2.6.5-2.1mdv2010.0.x86_64.rpm\n 16b27a49a3dcae6fa520c3cb24b2f69b  2010.0/x86_64/postfix-ldap-2.6.5-2.1mdv2010.0.x86_64.rpm\n 9e60217b6e8adc9a0e286df835f9d695  2010.0/x86_64/postfix-mysql-2.6.5-2.1mdv2010.0.x86_64.rpm\n 8594b10f400395fff17ffda26e9e3b3d  2010.0/x86_64/postfix-pcre-2.6.5-2.1mdv2010.0.x86_64.rpm\n e63fb8c5794ce971488898af1d537f36  2010.0/x86_64/postfix-pgsql-2.6.5-2.1mdv2010.0.x86_64.rpm \n e3748479ec6c93be12808e26e6b0fa55  2010.0/SRPMS/postfix-2.6.5-2.1mdv2010.0.src.rpm\n\n Mandriva Linux 2010.1:\n 19ee5b6c6a18c73ccf1d74e20f89759d  2010.1/i586/libpostfix1-2.7.0-4.1mdv2010.2.i586.rpm\n 7a468df2b451f6972c38faf1f60ad8af  2010.1/i586/postfix-2.7.0-4.1mdv2010.2.i586.rpm\n a814f84c61afd93f3416c69d993afd7a  2010.1/i586/postfix-cdb-2.7.0-4.1mdv2010.2.i586.rpm\n f6f7f9492ab304d28f8aa4bfc653ca1e  2010.1/i586/postfix-ldap-2.7.0-4.1mdv2010.2.i586.rpm\n 8013bafd20881dd85b3be95529be848d  2010.1/i586/postfix-mysql-2.7.0-4.1mdv2010.2.i586.rpm\n 145c8551dc1c51b071d1f3f992f8e638  2010.1/i586/postfix-pcre-2.7.0-4.1mdv2010.2.i586.rpm\n 8f0d058eda66267085cbe5a7f5133b60  2010.1/i586/postfix-pgsql-2.7.0-4.1mdv2010.2.i586.rpm \n c90d8220b74b39ce44a4b9dfe8876783  2010.1/SRPMS/postfix-2.7.0-4.1mdv2010.2.src.rpm\n\n Mandriva Linux 2010.1/X86_64:\n 0a9207a9e00cce2e656ff248513d5bc3  2010.1/x86_64/lib64postfix1-2.7.0-4.1mdv2010.2.x86_64.rpm\n 3e2cc9ea2bf3d6979d5c6a5b3ec9b54a  2010.1/x86_64/postfix-2.7.0-4.1mdv2010.2.x86_64.rpm\n c8c5efad63b597b3d3a0aec3c5027ffa  2010.1/x86_64/postfix-cdb-2.7.0-4.1mdv2010.2.x86_64.rpm\n 71d9a4095514c72494c4f02d2696b619  2010.1/x86_64/postfix-ldap-2.7.0-4.1mdv2010.2.x86_64.rpm\n 8865fea8796435b2d715bf0d89c4530f  2010.1/x86_64/postfix-mysql-2.7.0-4.1mdv2010.2.x86_64.rpm\n 784960a49889f3fce8a308842321d8e8  2010.1/x86_64/postfix-pcre-2.7.0-4.1mdv2010.2.x86_64.rpm\n dc50ccda7bfb1a1f7f673bc251f14683  2010.1/x86_64/postfix-pgsql-2.7.0-4.1mdv2010.2.x86_64.rpm \n c90d8220b74b39ce44a4b9dfe8876783  2010.1/SRPMS/postfix-2.7.0-4.1mdv2010.2.src.rpm\n\n Corporate 4.0:\n 6b7d62433679d20ae3b5cdf2668019e7  corporate/4.0/i586/libpostfix1-2.3.5-0.4.20060mlcs4.i586.rpm\n c5d4cbc67d00e0ea8b32c6598d6d65f0  corporate/4.0/i586/postfix-2.3.5-0.4.20060mlcs4.i586.rpm\n 287daadea040f15c1e25a6de77a438b2  corporate/4.0/i586/postfix-ldap-2.3.5-0.4.20060mlcs4.i586.rpm\n aac87a567ae68c48d4e8226429b35697  corporate/4.0/i586/postfix-mysql-2.3.5-0.4.20060mlcs4.i586.rpm\n c331a8061b0c5a6639c633d608e37871  corporate/4.0/i586/postfix-pcre-2.3.5-0.4.20060mlcs4.i586.rpm\n 25ce650233120a54e830c120f773f715  corporate/4.0/i586/postfix-pgsql-2.3.5-0.4.20060mlcs4.i586.rpm \n f2f060fddbb666572eca06ae47e36a3a  corporate/4.0/SRPMS/postfix-2.3.5-0.4.20060mlcs4.src.rpm\n\n Corporate 4.0/X86_64:\n 45b683c80b3006c3df5144bfe0fede86  corporate/4.0/x86_64/lib64postfix1-2.3.5-0.4.20060mlcs4.x86_64.rpm\n fc82cfcdbf89c059b6850edfa049128f  corporate/4.0/x86_64/postfix-2.3.5-0.4.20060mlcs4.x86_64.rpm\n 7057754d88c8146d235d3ab96fd64d2f  corporate/4.0/x86_64/postfix-ldap-2.3.5-0.4.20060mlcs4.x86_64.rpm\n 872c28155eb6276ba0fd1001387ffac7  corporate/4.0/x86_64/postfix-mysql-2.3.5-0.4.20060mlcs4.x86_64.rpm\n 644747748d18077fc63aa740c2947768  corporate/4.0/x86_64/postfix-pcre-2.3.5-0.4.20060mlcs4.x86_64.rpm\n 19b2a209beade7e6e25de6d0f3cb4b6d  corporate/4.0/x86_64/postfix-pgsql-2.3.5-0.4.20060mlcs4.x86_64.rpm \n f2f060fddbb666572eca06ae47e36a3a  corporate/4.0/SRPMS/postfix-2.3.5-0.4.20060mlcs4.src.rpm\n\n Mandriva Enterprise Server 5:\n 9c50578bd954be2ea42e6f3f3131cc9c  mes5/i586/libpostfix1-2.5.5-4.2mdvmes5.2.i586.rpm\n bca22f9be6e6bef4e02f2ffb4623d2e3  mes5/i586/postfix-2.5.5-4.2mdvmes5.2.i586.rpm\n 45cfa7336d29cddca1ac07270d2b8287  mes5/i586/postfix-ldap-2.5.5-4.2mdvmes5.2.i586.rpm\n 87d4b942fefedc239a213b3ce5715cf0  mes5/i586/postfix-mysql-2.5.5-4.2mdvmes5.2.i586.rpm\n b3caf9572b69e757b9697139bb0ed5d8  mes5/i586/postfix-pcre-2.5.5-4.2mdvmes5.2.i586.rpm\n bde845f9957e2ead0e398c5bebef6f79  mes5/i586/postfix-pgsql-2.5.5-4.2mdvmes5.2.i586.rpm \n 8ad3739bcdf5297b2dddfb4e289049d9  mes5/SRPMS/postfix-2.5.5-4.2mdvmes5.2.src.rpm\n\n Mandriva Enterprise Server 5/X86_64:\n d920df80c9fdbcb64a9c50d265acd7e8  mes5/x86_64/lib64postfix1-2.5.5-4.2mdvmes5.2.x86_64.rpm\n 1d09a25b69b76b2c013bac182c0e456d  mes5/x86_64/postfix-2.5.5-4.2mdvmes5.2.x86_64.rpm\n 0afe348155bee4af965ec616d86a9219  mes5/x86_64/postfix-ldap-2.5.5-4.2mdvmes5.2.x86_64.rpm\n db4e476a96f489d957610fb1ff7c6f9e  mes5/x86_64/postfix-mysql-2.5.5-4.2mdvmes5.2.x86_64.rpm\n 6ce0428271de05b3bb2d2e430c3281a3  mes5/x86_64/postfix-pcre-2.5.5-4.2mdvmes5.2.x86_64.rpm\n 32468daeee58b727ce1c85adcc2b364c  mes5/x86_64/postfix-pgsql-2.5.5-4.2mdvmes5.2.x86_64.rpm \n 8ad3739bcdf5297b2dddfb4e289049d9  mes5/SRPMS/postfix-2.5.5-4.2mdvmes5.2.src.rpm\n _______________________________________________________________________\n\n To upgrade automatically use MandrivaUpdate or urpmi.  The verification\n of md5 checksums and GPG signatures is performed automatically for you.  The Common Vulnerabilities and Exposures project identifies\nthe following problems:\n\nCVE-2009-2939\n        The postinst script grants the postfix user write access to\n        /var/spool/postfix/pid, which might allow local users to\n        conduct symlink attacks that overwrite arbitrary files. \n\nCVE-2011-1720\n        A heap-based read-only buffer overflow allows malicious\n        clients to crash the smtpd server process using a crafted SASL\n        authentication request. \n\nFor the oldstable distribution (lenny), this problem has been fixed in\nversion 2.5.5-1.1+lenny1. \n\nFor the stable distribution (squeeze), this problem has been fixed in\nversion 2.7.1-1+squeeze1. \n\nFor the unstable distribution (sid), this problem has been fixed in\nversion 2.8.0-1. \n\nWe recommend that you upgrade your postfix packages. \n\nFurther information about Debian Security Advisories, how to apply\nthese updates to your system and frequently asked questions can be\nfound at: http://www.debian.org/security/\n\nMailing list: debian-security-announce@lists.debian.org\n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1.4.9 (GNU/Linux)\n\niQEcBAEBAgAGBQJNyXybAAoJEL97/wQC1SS+xb0H/igqYhOTtvO91deptOPyednw\n5sBQPXGoo+RXeomLsJk8P6ezm7fEGTSl7GUEpNwS1qsqAPVnl9XAK6dOGFae1PbG\n2L93eR6AKgKo60tp2On1Tf1c0HcD6yKiZ6J7C7nZ3E8+yZwSd1k6826ZUQ3gzKKW\nDTIu6w2CzzleK/bppWfhAvwvobHD6X1B16qklZfqw6H0C/QfMjM8ZXLCRv9Tq1TN\njX1W4qeed7pr8r3pTJ9npzae7drqFLoVDi0tpGKi0UHEwgRma1AbDaI2BVmeblue\nYNRHg7H+TqfrUwN8iB64WrYvqnHCQfvViL8f0ML2uJXJf/lHby+vxPl6EGxAIoY=\n=yCCp\n-----END PGP SIGNATURE-----\n\n_______________________________________________\nFull-Disclosure - We believe in it. \nCharter: http://lists.grok.org.uk/full-disclosure-charter.html\nHosted and sponsored by Secunia - http://secunia.com/\n",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2011-0411"
          },
          {
            "db": "CERT/CC",
            "id": "VU#555316"
          },
          {
            "db": "BID",
            "id": "46767"
          },
          {
            "db": "VULHUB",
            "id": "VHN-48356"
          },
          {
            "db": "VULMON",
            "id": "CVE-2011-0411"
          },
          {
            "db": "PACKETSTORM",
            "id": "100558"
          },
          {
            "db": "PACKETSTORM",
            "id": "107027"
          },
          {
            "db": "PACKETSTORM",
            "id": "99457"
          },
          {
            "db": "PACKETSTORM",
            "id": "114177"
          },
          {
            "db": "PACKETSTORM",
            "id": "99053"
          },
          {
            "db": "PACKETSTORM",
            "id": "99392"
          },
          {
            "db": "PACKETSTORM",
            "id": "101275"
          }
        ],
        "trust": 2.7
      },
      "external_ids": {
        "_id": null,
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#555316",
            "trust": 3.1
          },
          {
            "db": "NVD",
            "id": "CVE-2011-0411",
            "trust": 2.8
          },
          {
            "db": "BID",
            "id": "46767",
            "trust": 2.1
          },
          {
            "db": "SECUNIA",
            "id": "43646",
            "trust": 1.8
          },
          {
            "db": "SECUNIA",
            "id": "43874",
            "trust": 1.8
          },
          {
            "db": "VUPEN",
            "id": "ADV-2011-0891",
            "trust": 1.8
          },
          {
            "db": "VUPEN",
            "id": "ADV-2011-0752",
            "trust": 1.8
          },
          {
            "db": "VUPEN",
            "id": "ADV-2011-0611",
            "trust": 1.8
          },
          {
            "db": "OSVDB",
            "id": "71021",
            "trust": 1.8
          },
          {
            "db": "SECTRACK",
            "id": "1025179",
            "trust": 1.8
          },
          {
            "db": "JUNIPER",
            "id": "JSA10705",
            "trust": 1.8
          },
          {
            "db": "OPENWALL",
            "id": "OSS-SECURITY/2021/08/10/2",
            "trust": 1.1
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-213",
            "trust": 0.7
          },
          {
            "db": "PACKETSTORM",
            "id": "99457",
            "trust": 0.2
          },
          {
            "db": "PACKETSTORM",
            "id": "114177",
            "trust": 0.2
          },
          {
            "db": "PACKETSTORM",
            "id": "99392",
            "trust": 0.2
          },
          {
            "db": "PACKETSTORM",
            "id": "107027",
            "trust": 0.2
          },
          {
            "db": "PACKETSTORM",
            "id": "99053",
            "trust": 0.2
          },
          {
            "db": "VULHUB",
            "id": "VHN-48356",
            "trust": 0.1
          },
          {
            "db": "VULMON",
            "id": "CVE-2011-0411",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "100558",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "101275",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#555316"
          },
          {
            "db": "VULHUB",
            "id": "VHN-48356"
          },
          {
            "db": "VULMON",
            "id": "CVE-2011-0411"
          },
          {
            "db": "BID",
            "id": "46767"
          },
          {
            "db": "PACKETSTORM",
            "id": "100558"
          },
          {
            "db": "PACKETSTORM",
            "id": "107027"
          },
          {
            "db": "PACKETSTORM",
            "id": "99457"
          },
          {
            "db": "PACKETSTORM",
            "id": "114177"
          },
          {
            "db": "PACKETSTORM",
            "id": "99053"
          },
          {
            "db": "PACKETSTORM",
            "id": "99392"
          },
          {
            "db": "PACKETSTORM",
            "id": "101275"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-213"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-0411"
          }
        ]
      },
      "id": "VAR-201103-0114",
      "iot": {
        "_id": null,
        "data": true,
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-48356"
          }
        ],
        "trust": 0.01
      },
      "last_update_date": "2026-04-10T23:24:36.765000Z",
      "patch": {
        "_id": null,
        "data": [
          {
            "title": "Postfix STARTTLS Achieve repair measures for plaintext command injection vulnerabilities",
            "trust": 0.6,
            "url": "http://www.cnnvd.org.cn/web/xxk/bdxqById.tag?id=159437"
          },
          {
            "title": "Debian CVElist Bug Report Logs: postfix STARTTLS affected by CVE-2011-0411",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_cvelist_bugreportlogs\u0026qid=74282b8fe400ed6ddbb6171a1052e2fd"
          },
          {
            "title": "Debian CVElist Bug Report Logs: [CVE-2011-4130] Use-after-free issue",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_cvelist_bugreportlogs\u0026qid=f7453f9ff437afb706c192fb10d67eb2"
          },
          {
            "title": "Debian CVElist Bug Report Logs: inn: CVE-2012-3523 prone to STARTTLS plaintext command injection",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_cvelist_bugreportlogs\u0026qid=a774850c70017348487727b907fda84b"
          },
          {
            "title": "Debian CVElist Bug Report Logs: courier: CVE-2021-38084",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_cvelist_bugreportlogs\u0026qid=9dc8ffd76b724b58108eb46bc913121c"
          },
          {
            "title": "Debian CVElist Bug Report Logs: STARTTLS plaintext command injection",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_cvelist_bugreportlogs\u0026qid=b03b4eab65949f1c915b1538f80e6a4b"
          },
          {
            "title": "Ubuntu Security Notice: postfix vulnerabilities",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=ubuntu_security_notice\u0026qid=USN-1113-1"
          },
          {
            "title": "Debian Security Advisories: DSA-2346-2 proftpd-dfsg -- several vulnerabilities",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_security_advisories\u0026qid=a1db5959643fcc6f1957a67359aa92ed"
          },
          {
            "title": "Debian Security Advisories: DSA-2233-1 postfix -- several vulnerabilities",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_security_advisories\u0026qid=96aadd3bb66ec0adb18615b395c09544"
          },
          {
            "title": "Vision",
            "trust": 0.1,
            "url": "https://github.com/CoolerVoid/Vision "
          },
          {
            "title": "Vision2",
            "trust": 0.1,
            "url": "https://github.com/CoolerVoid/Vision2 "
          }
        ],
        "sources": [
          {
            "db": "VULMON",
            "id": "CVE-2011-0411"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-213"
          }
        ]
      },
      "problemtype_data": {
        "_id": null,
        "data": [
          {
            "problemtype": "CWE-264",
            "trust": 1.1
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-48356"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-0411"
          }
        ]
      },
      "references": {
        "_id": null,
        "data": [
          {
            "trust": 2.4,
            "url": "http://www.kb.cert.org/vuls/id/555316"
          },
          {
            "trust": 2.4,
            "url": "http://www.postfix.org/cve-2011-0411.html"
          },
          {
            "trust": 2.1,
            "url": "http://www.oracle.com/technetwork/topics/security/cpuapr2011-301950.html"
          },
          {
            "trust": 1.9,
            "url": "http://security.gentoo.org/glsa/glsa-201206-33.xml"
          },
          {
            "trust": 1.8,
            "url": "http://lists.apple.com/archives/security-announce/2011//oct/msg00003.html"
          },
          {
            "trust": 1.8,
            "url": "http://www.securityfocus.com/bid/46767"
          },
          {
            "trust": 1.8,
            "url": "http://support.apple.com/kb/ht5002"
          },
          {
            "trust": 1.8,
            "url": "http://www.kb.cert.org/vuls/id/moro-8elh6z"
          },
          {
            "trust": 1.8,
            "url": "http://www.debian.org/security/2011/dsa-2233"
          },
          {
            "trust": 1.8,
            "url": "http://lists.fedoraproject.org/pipermail/package-announce/2011-march/056560.html"
          },
          {
            "trust": 1.8,
            "url": "http://lists.fedoraproject.org/pipermail/package-announce/2011-march/056559.html"
          },
          {
            "trust": 1.8,
            "url": "http://www.osvdb.org/71021"
          },
          {
            "trust": 1.8,
            "url": "http://www.redhat.com/support/errata/rhsa-2011-0422.html"
          },
          {
            "trust": 1.8,
            "url": "http://www.redhat.com/support/errata/rhsa-2011-0423.html"
          },
          {
            "trust": 1.8,
            "url": "http://securitytracker.com/id?1025179"
          },
          {
            "trust": 1.8,
            "url": "http://secunia.com/advisories/43646"
          },
          {
            "trust": 1.8,
            "url": "http://secunia.com/advisories/43874"
          },
          {
            "trust": 1.8,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2011-05/msg00005.html"
          },
          {
            "trust": 1.8,
            "url": "http://www.vupen.com/english/advisories/2011/0611"
          },
          {
            "trust": 1.8,
            "url": "http://www.vupen.com/english/advisories/2011/0752"
          },
          {
            "trust": 1.8,
            "url": "http://www.vupen.com/english/advisories/2011/0891"
          },
          {
            "trust": 1.8,
            "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/65932"
          },
          {
            "trust": 1.7,
            "url": "http://kb.juniper.net/infocenter/index?page=content\u0026id=jsa10705"
          },
          {
            "trust": 1.1,
            "url": "http://www.openwall.com/lists/oss-security/2021/08/10/2"
          },
          {
            "trust": 0.8,
            "url": "http://tools.ietf.org/html/rfc2595"
          },
          {
            "trust": 0.8,
            "url": "http://tools.ietf.org/html/rfc3207"
          },
          {
            "trust": 0.8,
            "url": "http://tools.ietf.org/html/rfc4642"
          },
          {
            "trust": 0.8,
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=674814"
          },
          {
            "trust": 0.8,
            "url": "http://www.watchguard.com/archive/softwarecenter.asp"
          },
          {
            "trust": 0.7,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-0411"
          },
          {
            "trust": 0.3,
            "url": "http://kolab.org/pipermail/kolab-announce/2011/000101.html"
          },
          {
            "trust": 0.3,
            "url": "http://bugzilla.cyrusimap.org/show_bug.cgi?id=3424"
          },
          {
            "trust": 0.3,
            "url": "http://cyrusimap.org/mediawiki/index.php/bugs_resolved_in_2.4.7"
          },
          {
            "trust": 0.3,
            "url": "https://www.isc.org/software/inn/2.5.3article"
          },
          {
            "trust": 0.3,
            "url": "http://www.kb.cert.org/vuls/id/mapg-8d9m4p"
          },
          {
            "trust": 0.3,
            "url": "http://files.kolab.org/server/release/kolab-server-2.3.2/sources/release-notes.txt"
          },
          {
            "trust": 0.3,
            "url": "http://www.pureftpd.org/project/pure-ftpd/news"
          },
          {
            "trust": 0.3,
            "url": "http://www.watchguard.com/support/release-notes/xcs/9/en-us/en_releasenotes_xcs_9_1_1/en_releasenotes_wg_xcs_9_1_tls_hotfix.pdf"
          },
          {
            "trust": 0.3,
            "url": "http://www.spamdyke.org/documentation/changelog.txt"
          },
          {
            "trust": 0.3,
            "url": "http://datatracker.ietf.org/doc/draft-josefsson-kerberos5-starttls/?include_text=1"
          },
          {
            "trust": 0.3,
            "url": "/archive/1/516901"
          },
          {
            "trust": 0.3,
            "url": "http://support.avaya.com/css/p8/documents/100134676"
          },
          {
            "trust": 0.3,
            "url": "http://support.avaya.com/css/p8/documents/100141041"
          },
          {
            "trust": 0.3,
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=850478"
          },
          {
            "trust": 0.3,
            "url": "http://inoa.net/qmail-tls/vu555316.patch"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2009-2939"
          },
          {
            "trust": 0.2,
            "url": "http://secunia.com/"
          },
          {
            "trust": 0.2,
            "url": "http://www.debian.org/security/faq"
          },
          {
            "trust": 0.2,
            "url": "http://www.debian.org/security/"
          },
          {
            "trust": 0.2,
            "url": "http://lists.grok.org.uk/full-disclosure-charter.html"
          },
          {
            "trust": 0.2,
            "url": "http://www.mandriva.com/security/"
          },
          {
            "trust": 0.2,
            "url": "http://store.mandriva.com/product_info.php?cpath=149\u0026amp;products_id=490"
          },
          {
            "trust": 0.2,
            "url": "http://www.mandriva.com/security/advisories"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-1720"
          },
          {
            "trust": 0.2,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2011-0411"
          },
          {
            "trust": 0.1,
            "url": "http://kb.juniper.net/infocenter/index?page=content\u0026amp;id=jsa10705"
          },
          {
            "trust": 0.1,
            "url": "https://cwe.mitre.org/data/definitions/264.html"
          },
          {
            "trust": 0.1,
            "url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=617849"
          },
          {
            "trust": 0.1,
            "url": "http://tools.cisco.com/security/center/viewalert.x?alertid=22617"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov"
          },
          {
            "trust": 0.1,
            "url": "https://usn.ubuntu.com/1113-1/"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/postfix/2.6.5-3ubuntu0.1"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/postfix/2.2.10-1ubuntu0.3"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/postfix/2.7.0-1ubuntu0.1"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/postfix/2.7.1-1ubuntu0.1"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/postfix/2.5.1-2ubuntu1.3"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-4130"
          },
          {
            "trust": 0.1,
            "url": "http://creativecommons.org/licenses/by-sa/2.5"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-1720"
          },
          {
            "trust": 0.1,
            "url": "http://security.gentoo.org/"
          },
          {
            "trust": 0.1,
            "url": "https://bugs.gentoo.org."
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0411"
          },
          {
            "trust": 0.1,
            "url": "http://www.securityfocus.com/archive/1/516901/30/0/threaded"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#555316"
          },
          {
            "db": "VULHUB",
            "id": "VHN-48356"
          },
          {
            "db": "VULMON",
            "id": "CVE-2011-0411"
          },
          {
            "db": "BID",
            "id": "46767"
          },
          {
            "db": "PACKETSTORM",
            "id": "100558"
          },
          {
            "db": "PACKETSTORM",
            "id": "107027"
          },
          {
            "db": "PACKETSTORM",
            "id": "99457"
          },
          {
            "db": "PACKETSTORM",
            "id": "114177"
          },
          {
            "db": "PACKETSTORM",
            "id": "99053"
          },
          {
            "db": "PACKETSTORM",
            "id": "99392"
          },
          {
            "db": "PACKETSTORM",
            "id": "101275"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-213"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-0411"
          }
        ]
      },
      "sources": {
        "_id": null,
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#555316",
            "ident": null
          },
          {
            "db": "VULHUB",
            "id": "VHN-48356",
            "ident": null
          },
          {
            "db": "VULMON",
            "id": "CVE-2011-0411",
            "ident": null
          },
          {
            "db": "BID",
            "id": "46767",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "100558",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "107027",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "99457",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "114177",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "99053",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "99392",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "101275",
            "ident": null
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-213",
            "ident": null
          },
          {
            "db": "NVD",
            "id": "CVE-2011-0411",
            "ident": null
          }
        ]
      },
      "sources_release_date": {
        "_id": null,
        "data": [
          {
            "date": "2011-03-07T00:00:00",
            "db": "CERT/CC",
            "id": "VU#555316",
            "ident": null
          },
          {
            "date": "2011-03-16T00:00:00",
            "db": "VULHUB",
            "id": "VHN-48356",
            "ident": null
          },
          {
            "date": "2011-03-16T00:00:00",
            "db": "VULMON",
            "id": "CVE-2011-0411",
            "ident": null
          },
          {
            "date": "2011-03-07T00:00:00",
            "db": "BID",
            "id": "46767",
            "ident": null
          },
          {
            "date": "2011-04-18T22:40:46",
            "db": "PACKETSTORM",
            "id": "100558",
            "ident": null
          },
          {
            "date": "2011-11-16T04:40:08",
            "db": "PACKETSTORM",
            "id": "107027",
            "ident": null
          },
          {
            "date": "2011-03-18T21:45:06",
            "db": "PACKETSTORM",
            "id": "99457",
            "ident": null
          },
          {
            "date": "2012-06-25T22:58:41",
            "db": "PACKETSTORM",
            "id": "114177",
            "ident": null
          },
          {
            "date": "2011-03-07T19:44:44",
            "db": "PACKETSTORM",
            "id": "99053",
            "ident": null
          },
          {
            "date": "2011-03-16T21:26:42",
            "db": "PACKETSTORM",
            "id": "99392",
            "ident": null
          },
          {
            "date": "2011-05-10T18:42:48",
            "db": "PACKETSTORM",
            "id": "101275",
            "ident": null
          },
          {
            "date": "2011-03-17T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-201103-213",
            "ident": null
          },
          {
            "date": "2011-03-16T22:55:02.717000",
            "db": "NVD",
            "id": "CVE-2011-0411",
            "ident": null
          }
        ]
      },
      "sources_update_date": {
        "_id": null,
        "data": [
          {
            "date": "2011-09-08T00:00:00",
            "db": "CERT/CC",
            "id": "VU#555316",
            "ident": null
          },
          {
            "date": "2017-08-17T00:00:00",
            "db": "VULHUB",
            "id": "VHN-48356",
            "ident": null
          },
          {
            "date": "2021-08-10T00:00:00",
            "db": "VULMON",
            "id": "CVE-2011-0411",
            "ident": null
          },
          {
            "date": "2015-04-13T21:35:00",
            "db": "BID",
            "id": "46767",
            "ident": null
          },
          {
            "date": "2021-08-11T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-201103-213",
            "ident": null
          },
          {
            "date": "2025-04-11T00:51:21.963000",
            "db": "NVD",
            "id": "CVE-2011-0411",
            "ident": null
          }
        ]
      },
      "threat_type": {
        "_id": null,
        "data": "remote",
        "sources": [
          {
            "db": "PACKETSTORM",
            "id": "107027"
          },
          {
            "db": "PACKETSTORM",
            "id": "114177"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-213"
          }
        ],
        "trust": 0.8
      },
      "title": {
        "_id": null,
        "data": "STARTTLS plaintext command injection vulnerability",
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#555316"
          }
        ],
        "trust": 0.8
      },
      "type": {
        "_id": null,
        "data": "permissions and access control issues",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-213"
          }
        ],
        "trust": 0.6
      }
    }

    VAR-201109-0130

    Vulnerability from variot - Updated: 2026-04-10 22:16

    The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a "BEAST" attack. A vulnerability in the specification of the SSL 3.0 and TLS 1.0 protocols could allow an attacker to decrypt encrypted traffic. This will result in a false sense of security, and potentially result in the disclosure of sensitive information. HP System Management Homepage (SMH) v7.2.0 and earlier running on Linux and Windows. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Gentoo Linux Security Advisory GLSA 201111-02


                                            http://security.gentoo.org/
    

    Severity: Normal Title: Oracle JRE/JDK: Multiple vulnerabilities Date: November 05, 2011 Bugs: #340421, #354213, #370559, #387851 ID: 201111-02


    Synopsis

    Multiple vulnerabilities have been found in the Oracle JRE/JDK, allowing attackers to cause unspecified impact.

    Affected packages

    -------------------------------------------------------------------
     Package              /     Vulnerable     /            Unaffected
    -------------------------------------------------------------------
    

    1 dev-java/sun-jre-bin < 1.6.0.29 >= 1.6.0.29 * 2 app-emulation/emul-linux-x86-java < 1.6.0.29 >= 1.6.0.29 * 3 dev-java/sun-jdk < 1.6.0.29 >= 1.6.0.29 * ------------------------------------------------------------------- NOTE: Packages marked with asterisks require manual intervention! ------------------------------------------------------------------- 3 affected packages -------------------------------------------------------------------

    Description

    Multiple vulnerabilities have been reported in the Oracle Java implementation. Please review the CVE identifiers referenced below and the associated Oracle Critical Patch Update Advisory for details.

    Workaround

    There is no known workaround at this time.

    Resolution

    All Oracle JDK 1.6 users should upgrade to the latest version:

    # emerge --sync # emerge --ask --oneshot --verbose ">=dev-java/sun-jdk-1.6.0.29"

    All Oracle JRE 1.6 users should upgrade to the latest version:

    # emerge --sync # emerge --ask --oneshot --verbose ">=dev-java/sun-jre-bin-1.6.0.29"

    All users of the precompiled 32-bit Oracle JRE 1.6 should upgrade to the latest version:

    # emerge --sync # emerge -a -1 -v ">=app-emulation/emul-linux-x86-java-1.6.0.29"

    NOTE: As Oracle has revoked the DLJ license for its Java implementation, the packages can no longer be updated automatically. This limitation is not present on a non-fetch restricted implementation such as dev-java/icedtea-bin.

    References

    [ 1 ] CVE-2010-3541 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3541 [ 2 ] CVE-2010-3548 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3548 [ 3 ] CVE-2010-3549 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3549 [ 4 ] CVE-2010-3550 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3550 [ 5 ] CVE-2010-3551 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3551 [ 6 ] CVE-2010-3552 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3552 [ 7 ] CVE-2010-3553 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3553 [ 8 ] CVE-2010-3554 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3554 [ 9 ] CVE-2010-3555 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3555 [ 10 ] CVE-2010-3556 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3556 [ 11 ] CVE-2010-3557 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3557 [ 12 ] CVE-2010-3558 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3558 [ 13 ] CVE-2010-3559 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3559 [ 14 ] CVE-2010-3560 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3560 [ 15 ] CVE-2010-3561 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3561 [ 16 ] CVE-2010-3562 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3562 [ 17 ] CVE-2010-3563 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3563 [ 18 ] CVE-2010-3565 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3565 [ 19 ] CVE-2010-3566 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3566 [ 20 ] CVE-2010-3567 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3567 [ 21 ] CVE-2010-3568 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3568 [ 22 ] CVE-2010-3569 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3569 [ 23 ] CVE-2010-3570 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3570 [ 24 ] CVE-2010-3571 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3571 [ 25 ] CVE-2010-3572 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3572 [ 26 ] CVE-2010-3573 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3573 [ 27 ] CVE-2010-3574 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3574 [ 28 ] CVE-2010-4422 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4422 [ 29 ] CVE-2010-4447 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4447 [ 30 ] CVE-2010-4448 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4448 [ 31 ] CVE-2010-4450 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4450 [ 32 ] CVE-2010-4451 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4451 [ 33 ] CVE-2010-4452 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4452 [ 34 ] CVE-2010-4454 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4454 [ 35 ] CVE-2010-4462 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4462 [ 36 ] CVE-2010-4463 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4463 [ 37 ] CVE-2010-4465 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4465 [ 38 ] CVE-2010-4466 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4466 [ 39 ] CVE-2010-4467 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4467 [ 40 ] CVE-2010-4468 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4468 [ 41 ] CVE-2010-4469 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4469 [ 42 ] CVE-2010-4470 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4470 [ 43 ] CVE-2010-4471 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4471 [ 44 ] CVE-2010-4472 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4472 [ 45 ] CVE-2010-4473 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4473 [ 46 ] CVE-2010-4474 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4474 [ 47 ] CVE-2010-4475 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4475 [ 48 ] CVE-2010-4476 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4476 [ 49 ] CVE-2011-0802 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0802 [ 50 ] CVE-2011-0814 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0814 [ 51 ] CVE-2011-0815 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0815 [ 52 ] CVE-2011-0862 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0862 [ 53 ] CVE-2011-0863 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0863 [ 54 ] CVE-2011-0864 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0864 [ 55 ] CVE-2011-0865 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0865 [ 56 ] CVE-2011-0867 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0867 [ 57 ] CVE-2011-0868 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0868 [ 58 ] CVE-2011-0869 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0869 [ 59 ] CVE-2011-0871 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0871 [ 60 ] CVE-2011-0872 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0872 [ 61 ] CVE-2011-0873 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0873 [ 62 ] CVE-2011-3389 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3389 [ 63 ] CVE-2011-3516 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3516 [ 64 ] CVE-2011-3521 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3521 [ 65 ] CVE-2011-3544 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3544 [ 66 ] CVE-2011-3545 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3545 [ 67 ] CVE-2011-3546 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3546 [ 68 ] CVE-2011-3547 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3547 [ 69 ] CVE-2011-3548 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3548 [ 70 ] CVE-2011-3549 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3549 [ 71 ] CVE-2011-3550 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3550 [ 72 ] CVE-2011-3551 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3551 [ 73 ] CVE-2011-3552 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3552 [ 74 ] CVE-2011-3553 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3553 [ 75 ] CVE-2011-3554 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3554 [ 76 ] CVE-2011-3555 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3555 [ 77 ] CVE-2011-3556 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3556 [ 78 ] CVE-2011-3557 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3557 [ 79 ] CVE-2011-3558 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3558 [ 80 ] CVE-2011-3560 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3560 [ 81 ] CVE-2011-3561 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3561

    Availability

    This GLSA and any updates to it are available for viewing at the Gentoo Security Website:

    http://security.gentoo.org/glsa/glsa-201111-02.xml

    Concerns?

    Security is a primary focus of Gentoo Linux and ensuring the confidentiality and security of our users' machines is of utmost importance to us. Any security concerns should be addressed to security@gentoo.org or alternatively, you may file a bug at https://bugs.gentoo.org.

    License

    Copyright 2011 Gentoo Foundation, Inc; referenced text belongs to its owner(s).

    The contents of this document are licensed under the Creative Commons - Attribution / Share Alike license.

    http://creativecommons.org/licenses/by-sa/2.5 . ----------------------------------------------------------------------

    SC World Congress, New York, USA, 16 November 2011 Visit the Secunia booth (#203) and discover how you can improve your handling of third party programs:

    http://secunia.com/resources/events/sc_2011/


    TITLE: IBM Lotus Domino SSL/TLS Initialization Vector Selection Weakness

    SECUNIA ADVISORY ID: SA46791

    VERIFY ADVISORY: Secunia.com http://secunia.com/advisories/46791/ Customer Area (Credentials Required) https://ca.secunia.com/?page=viewadvisory&vuln_id=46791

    RELEASE DATE: 2011-11-11

    DISCUSS ADVISORY: http://secunia.com/advisories/46791/#comments

    AVAILABLE ON SITE AND IN CUSTOMER AREA: * Last Update * Popularity * Comments * Criticality Level * Impact * Where * Solution Status * Operating System / Software * CVE Reference(s)

    http://secunia.com/advisories/46791/

    ONLY AVAILABLE IN CUSTOMER AREA: * Authentication Level * Report Reliability * Secunia PoC * Secunia Analysis * Systems Affected * Approve Distribution * Remediation Status * Secunia CVSS Score * CVSS

    https://ca.secunia.com/?page=viewadvisory&vuln_id=46791

    ONLY AVAILABLE WITH SECUNIA CSI AND SECUNIA PSI: * AUTOMATED SCANNING

    http://secunia.com/vulnerability_scanning/personal/ http://secunia.com/vulnerability_scanning/corporate/wsus_sccm_3rd_third_party_patching/

    DESCRIPTION: A weakness has been reported in IBM Lotus Domino, which can be exploited by malicious people to disclose potentially sensitive information and hijack a user's session.

    SOLUTION: As a workaround enable RC4 encryption (please see the vendor's advisory for details).

    PROVIDED AND/OR DISCOVERED BY: Thai Duong and Juliano Rizzo

    ORIGINAL ADVISORY: IBM: http://www.ibm.com/support/docview.wss?uid=swg21568229

    IBM ISS X-Force: http://xforce.iss.net/xforce/xfdb/70069

    OTHER REFERENCES: Further details available in Customer Area: http://secunia.com/vulnerability_intelligence/

    DEEP LINKS: Further details available in Customer Area: http://secunia.com/vulnerability_intelligence/

    EXTENDED DESCRIPTION: Further details available in Customer Area: http://secunia.com/vulnerability_intelligence/

    EXTENDED SOLUTION: Further details available in Customer Area: http://secunia.com/vulnerability_intelligence/

    EXPLOIT: Further details available in Customer Area: http://secunia.com/vulnerability_intelligence/


    About: This Advisory was delivered by Secunia as a free service to help private users keeping their systems up to date against the latest vulnerabilities.

    Subscribe: http://secunia.com/advisories/secunia_security_advisories/

    Definitions: (Criticality, Where etc.) http://secunia.com/advisories/about_secunia_advisories/

    Please Note: Secunia recommends that you verify all advisories you receive by clicking the link. Secunia NEVER sends attached files with advisories. Secunia does not advise people to install third party patches, only use those supplied by the vendor.


    Unsubscribe: Secunia Security Advisories http://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org


    .

    A flaw was found in the way the Python SimpleHTTPServer module generated directory listings. An attacker able to upload a file with a specially-crafted name to a server could possibly perform a cross-site scripting (XSS) attack against victims visiting a listing page generated by SimpleHTTPServer, for a directory containing the crafted file (if the victims were using certain web browsers) (CVE-2011-4940).

    A race condition was found in the way the Python distutils module set file permissions during the creation of the .pypirc file. If a local user had access to the home directory of another user who is running distutils, they could use this flaw to gain access to that user's .pypirc file, which can contain usernames and passwords for code repositories (CVE-2011-4944).

    A flaw was found in the way the Python SimpleXMLRPCServer module handled clients disconnecting prematurely.

    Hash table collisions CPU usage DoS for the embedded copy of expat (CVE-2012-0876).

    A denial of service flaw was found in the implementation of associative arrays (dictionaries) in Python. An attacker able to supply a large number of inputs to a Python application (such as HTTP POST request parameters sent to a web application) that are used as keys when inserting data into an array could trigger multiple hash function collisions, making array operations take an excessive amount of CPU time. To mitigate this issue, randomization has been added to the hash function to reduce the chance of an attacker successfully causing intentional collisions (CVE-2012-1150).

    The updated packages have been patched to correct these issues. The verification of md5 checksums and GPG signatures is performed automatically for you. You can obtain the GPG public key of the Mandriva Security Team by executing:

    gpg --recv-keys --keyserver pgp.mit.edu 0x22458A98

    You can view other update advisories for Mandriva Linux at:

    http://www.mandriva.com/security/advisories

    If you want to report vulnerabilities, please contact

    security_(at)_mandriva.com


    Type Bits/KeyID Date User ID pub 1024D/22458A98 2000-07-10 Mandriva Security Team -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux)

    iD8DBQFP4cpsmqjQ0CJFipgRAns2AKCf6yQzu1AwCPejS+sWBnfY717HLQCeIefL NJQbNxUlwmb1w7aFZIt0vdU= =3Vdc -----END PGP SIGNATURE----- . ========================================================================== Ubuntu Security Notice USN-1263-1 November 16, 2011

    icedtea-web, openjdk-6, openjdk-6b18 vulnerabilities

    A security issue affects these releases of Ubuntu and its derivatives:

    • Ubuntu 11.10
    • Ubuntu 11.04
    • Ubuntu 10.10
    • Ubuntu 10.04 LTS

    Summary:

    Multiple OpenJDK 6 and IcedTea-Web vulnerabilities have been fixed.

    Software Description: - icedtea-web: A web browser plugin to execute Java applets - openjdk-6: Open Source Java implementation - openjdk-6b18: Open Source Java implementation

    Details:

    Deepak Bhole discovered a flaw in the Same Origin Policy (SOP) implementation in the IcedTea web browser plugin. This could allow a remote attacker to open connections to certain hosts that should not be permitted. (CVE-2011-3377)

    Juliano Rizzo and Thai Duong discovered that the block-wise AES encryption algorithm block-wise as used in TLS/SSL was vulnerable to a chosen-plaintext attack. This could allow a remote attacker to view confidential data. (CVE-2011-3389)

    It was discovered that a type confusion flaw existed in the in the Internet Inter-Orb Protocol (IIOP) deserialization code. A remote attacker could use this to cause an untrusted application or applet to execute arbitrary code by deserializing malicious input. (CVE-2011-3521)

    It was discovered that the Java scripting engine did not perform SecurityManager checks. This could allow a remote attacker to cause an untrusted application or applet to execute arbitrary code with the full privileges of the JVM. (CVE-2011-3544)

    It was discovered that the InputStream class used a global buffer to store input bytes skipped. An attacker could possibly use this to gain access to sensitive information. (CVE-2011-3547)

    It was discovered that a vulnerability existed in the AWTKeyStroke class. A remote attacker could cause an untrusted application or applet to execute arbitrary code. (CVE-2011-3548)

    It was discovered that an integer overflow vulnerability existed in the TransformHelper class in the Java2D implementation. A remote attacker could use this cause a denial of service via an application or applet crash or possibly execute arbitrary code. (CVE-2011-3551)

    It was discovered that the default number of available UDP sockets for applications running under SecurityManager restrictions was set too high. A remote attacker could use this with a malicious application or applet exhaust the number of available UDP sockets to cause a denial of service for other applets or applications running within the same JVM. (CVE-2011-3552)

    It was discovered that Java API for XML Web Services (JAX-WS) could incorrectly expose a stack trace. (CVE-2011-3553)

    It was discovered that the unpacker for pack200 JAR files did not sufficiently check for errors. An attacker could cause a denial of service or possibly execute arbitrary code through a specially crafted pack200 JAR file. (CVE-2011-3554)

    It was discovered that the RMI registration implementation did not properly restrict privileges of remotely executed code. A remote attacker could use this to execute code with elevated privileges. (CVE-2011-3556, CVE-2011-3557)

    It was discovered that the HotSpot VM could be made to crash, allowing an attacker to cause a denial of service or possibly leak sensitive information. (CVE-2011-3558)

    It was discovered that the HttpsURLConnection class did not properly perform SecurityManager checks in certain situations. This could allow a remote attacker to bypass restrictions on HTTPS connections. (CVE-2011-3560)

    Update instructions:

    The problem can be corrected by updating your system to the following package versions:

    Ubuntu 11.10: icedtea-6-jre-cacao 6b23~pre11-0ubuntu1.11.10 icedtea-6-jre-jamvm 6b23~pre11-0ubuntu1.11.10 icedtea-netx 1.1.3-1ubuntu1.1 icedtea-plugin 1.1.3-1ubuntu1.1 openjdk-6-jre 6b23~pre11-0ubuntu1.11.10 openjdk-6-jre-headless 6b23~pre11-0ubuntu1.11.10 openjdk-6-jre-lib 6b23~pre11-0ubuntu1.11.10 openjdk-6-jre-zero 6b23~pre11-0ubuntu1.11.10

    Ubuntu 11.04: icedtea-6-jre-cacao 6b22-1.10.4-0ubuntu1~11.04.1 icedtea-6-jre-jamvm 6b22-1.10.4-0ubuntu1~11.04.1 icedtea-netx 1.1.1-0ubuntu1~11.04.2 icedtea-plugin 1.1.1-0ubuntu1~11.04.2 openjdk-6-jre 6b22-1.10.4-0ubuntu1~11.04.1 openjdk-6-jre-headless 6b22-1.10.4-0ubuntu1~11.04.1 openjdk-6-jre-lib 6b22-1.10.4-0ubuntu1~11.04.1 openjdk-6-jre-zero 6b22-1.10.4-0ubuntu1~11.04.1

    Ubuntu 10.10: icedtea-6-jre-cacao 6b20-1.9.10-0ubuntu1~10.10.2 openjdk-6-demo 6b20-1.9.10-0ubuntu1~10.10.2 openjdk-6-jdk 6b20-1.9.10-0ubuntu1~10.10.2 openjdk-6-jre 6b20-1.9.10-0ubuntu1~10.10.2 openjdk-6-jre-headless 6b20-1.9.10-0ubuntu1~10.10.2 openjdk-6-jre-lib 6b20-1.9.10-0ubuntu1~10.10.2 openjdk-6-jre-zero 6b20-1.9.10-0ubuntu1~10.10.2

    Ubuntu 10.04 LTS: icedtea-6-jre-cacao 6b20-1.9.10-0ubuntu1~10.04.2 icedtea6-plugin 6b20-1.9.10-0ubuntu1~10.04.2 openjdk-6-demo 6b20-1.9.10-0ubuntu1~10.04.2 openjdk-6-jre 6b20-1.9.10-0ubuntu1~10.04.2 openjdk-6-jre-headless 6b20-1.9.10-0ubuntu1~10.04.2 openjdk-6-jre-lib 6b20-1.9.10-0ubuntu1~10.04.2 openjdk-6-jre-zero 6b20-1.9.10-0ubuntu1~10.04.2

    After a standard system update you need to restart any Java applications or applets to make all the necessary changes. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1

    ESA-2012-032: RSA BSAFE\xae Micro Edition Suite Security Update for BEAST (Browser Exploit Against SSL/TLS) attacks

    EMC Identifier: ESA-2012-032

    CVE Identifier: CVE-2011-3389

    Severity Rating: CVSS v2 Base Score: 4.3 (AV:N/AC:M/Au:N/C:P/I:N/A:N)

    Affected Products:

    All versions of RSA BSAFE Micro Edition Suite prior to 4.0, all platforms

    Unaffected Products:

    RSA BSAFE Micro Edition Suite 4.0 and higher

    Summary:

    RSA BSAFE Micro Edition Suite contains updates designed to prevent BEAST attacks (CVE-2011-3389)

    Details:

    There is a known vulnerability in SSLv3 and TLS v1.0 to do with how the Initialization Vector (IV) is generated. For symmetric key algorithms in CBC mode, the IV for the first record is generated using keys and secrets set during the SSL or TLS handshake. All subsequent records are encrypted using the ciphertext block from the previous record as the IV. With symmetric key encryption in CBC mode, plain text encrypted with the same IV and key generates the same cipher text, which is why having a variable IV is important.

    The BEAST exploit uses this SSLv3 and TLS v1.0 vulnerability by allowing an attacker to observe the last ciphertext block, which is the IV, then replace this with an IV of their choice, inject some of their own plain text data, and when this new IV is used to encrypt the data, the attacker can guess the plain text data one byte at a time.

    Recommendation:

    The best way to help prevent this attack is to use TLS v1.1 or higher. The vulnerability to do with IV generation was fixed in TLS v1.1 (released in 2006) so implementations using only TLS v1.1 or v1.2 are engineered to be secure against the BEAST exploit. However, support for these higher level protocols is limited to a smaller number of applications, so supporting only TLS v1.1 or v1.2 might cause interoperability issues.

    A second solution is to limit the negotiated cipher suites to exclude those that do not require symmetric key algorithms in CBC mode. However, this substantially restricts the number of cipher suites that can be negotiated. That is, only cipher suites with NULL encryption or cipher suites with streaming encryption algorithms (the RC4 algorithm) could be negotiated, which might result in reduced security.

    For customers who cannot or should not implement either of these two methods, RSA BSAFE Micro Edition Suite 4.0 introduces a new feature called first block splitting. First block splitting prevents the BEAST exploit by introducing unknown data into the encryption scheme prior to the attackers inserted plain text data. This is done as follows:

    \x951. The first plain text block to be encrypted is split into two blocks. The first block contains the first byte of the data, the second block contains the rest. \x952. A MAC is generated from the one byte of data, the MAC key, and an increasing counter. This MAC is included in the first block. \x953. The one byte of data, along with the MAC, is encrypted and becomes the IV for the next block. Because the IV is now essentially random data, it is impossible for an attacker to predict it and replace it with one of their own. To implement first block splitting in RSA BSAFE Micro Edition Suite 4.0, either for an SSL context or SSL object, call R_SSL_CTX_set_options_by_type() or R_SSL_set_options_by_type() respectively, with the SSL_OP_TYPE_SECURITY option type and the SSL_OP_SPLIT_FIRST_FRAGMENT identifier.

    For more information about these functions and identifiers, see the RSA BSAFE Micro Edition Suite API Reference Guide.

    Severity Rating:

    For an explanation of Severity Ratings, refer to the Knowledge Base Article, \x93Security Advisories Severity Rating\x94 at https://knowledge.rsasecurity.com/scolcms/knowledge.aspx?solution=a46604. RSA recommends all customers take into account both the base score and any relevant temporal and environmental scores which may impact the potential severity associated with particular security vulnerability.

    Obtaining Documentation:

    To obtain RSA documentation, log on to RSA SecurCare Online at https://knowledge.rsasecurity.com and click Products in the top navigation menu. Select the specific product whose documentation you want to obtain. Scroll to the section for the product version that you want and click the set link.

    Getting Support and Service:

    For customers with current maintenance contracts, contact your local RSA Customer Support center with any additional questions regarding this RSA SecurCare Note. For contact telephone numbers or e-mail addresses, log on to RSA SecurCare Online at https://knowledge.rsasecurity.com, click Help & Contact, and then click the Contact Us - Phone tab or the Contact Us - Email tab.

    General Customer Support Information:

    http://www.rsa.com/node.aspx?id=1264

    RSA SecurCare Online:

    https://knowledge.rsasecurity.com

    EOPS Policy:

    RSA has a defined End of Primary Support policy associated with all major versions. Please refer to the link below for additional details. http://www.rsa.com/node.aspx?id=2575

    SecurCare Online Security Advisories

    RSA, The Security Division of EMC, distributes SCOL Security Advisories in order to bring to the attention of users of the affected RSA products important security information. RSA recommends that all users determine the applicability of this information to their individual situations and take appropriate action. The information set forth herein is provided "as is" without warranty of any kind. RSA disclaim all warranties, either express or implied, including the warranties of merchantability, fitness for a particular purpose, title and non-infringement. In no event shall RSA or its suppliers be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages, even if RSA or its suppliers have been advised of the possibility of such damages. Some states do not allow the exclusion or limitation of liability for consequential or incidental damages so the foregoing limitation may not apply.

    About RSA SecurCare Notes & Security Advisories Subscription

    RSA SecurCare Notes & Security Advisories are targeted e-mail messages that RSA sends you based on the RSA product family you currently use. If you\x92d like to stop receiving RSA SecurCare Notes & Security Advisories, or if you\x92d like to change which RSA product family Notes & Security Advisories you currently receive, log on to RSA SecurCare Online at https://knowledge.rsasecurity.com/scolcms/help.aspx?_v=view3. Following the instructions on the page, remove the check mark next to the RSA product family whose Notes & Security Advisories you no longer want to receive. Click the Submit button to save your selection.

    EMC Product Security Response Center

    Security_Alert@EMC.COM

    http://www.emc.com/contact-us/contact/product-security-response-center.html

    -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (Cygwin)

    iEYEARECAAYFAlBKOMwACgkQtjd2rKp+ALw1HQCfezG65rzhhtvVQAFkXzXQmthr Cc8An3CJlTmuxBfF1dHt/NvQgKED9eR4 =++hy -----END PGP SIGNATURE----- . The Common Vulnerabilities and Exposures project identifies the following problems:

    CVE-2011-3389

    This update enables OpenSSL workarounds against the "BEAST" attack. Additional information can be found in the Curl advisory: http://curl.haxx.se/docs/adv_20120124B.html

    CVE-2012-0036

    Dan Fandrich discovered that Curl performs insufficient sanitising when extracting the file path part of an URL.

    For the oldstable distribution (lenny), this problem has been fixed in version 7.18.2-8lenny6.

    For the stable distribution (squeeze), this problem has been fixed in version 7.21.0-2.1+squeeze1.

    For the unstable distribution (sid), this problem has been fixed in version 7.24.0-1.

    We recommend that you upgrade your curl packages. Charter: http://lists.grok.org.uk/full-disclosure-charter.html Hosted and sponsored by Secunia - http://secunia.com/ . -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1

    ===================================================================== Red Hat Security Advisory

    Synopsis: Critical: java-1.5.0-ibm security update Advisory ID: RHSA-2012:0508-01 Product: Red Hat Enterprise Linux Extras Advisory URL: https://rhn.redhat.com/errata/RHSA-2012-0508.html Issue date: 2012-04-23 CVE Names: CVE-2011-3389 CVE-2011-3557 CVE-2011-3560 CVE-2011-3563 CVE-2012-0498 CVE-2012-0499 CVE-2012-0501 CVE-2012-0502 CVE-2012-0503 CVE-2012-0505 CVE-2012-0506 CVE-2012-0507 =====================================================================

    1. Summary:

    Updated java-1.5.0-ibm packages that fix several security issues are now available for Red Hat Enterprise Linux 5 and 6 Supplementary.

    The Red Hat Security Response Team has rated this update as having critical security impact.

    1. Relevant releases/architectures:

    Red Hat Enterprise Linux Desktop Supplementary (v. 5) - i386, x86_64 Red Hat Enterprise Linux Desktop Supplementary (v. 6) - i386, x86_64 Red Hat Enterprise Linux HPC Node Supplementary (v. 6) - x86_64 Red Hat Enterprise Linux Server Supplementary (v. 5) - i386, ppc, s390x, x86_64 Red Hat Enterprise Linux Server Supplementary (v. 6) - i386, ppc64, s390x, x86_64 Red Hat Enterprise Linux Workstation Supplementary (v. 6) - i386, x86_64

    1. Description:

    The IBM 1.5.0 Java release includes the IBM Java 2 Runtime Environment and the IBM Java 2 Software Development Kit.

    This update fixes several vulnerabilities in the IBM Java 2 Runtime Environment and the IBM Java 2 Software Development Kit. Detailed vulnerability descriptions are linked from the IBM "Security alerts" page, listed in the References section. (CVE-2011-3389, CVE-2011-3557, CVE-2011-3560, CVE-2011-3563, CVE-2012-0498, CVE-2012-0499, CVE-2012-0501, CVE-2012-0502, CVE-2012-0503, CVE-2012-0505, CVE-2012-0506, CVE-2012-0507)

    All users of java-1.5.0-ibm are advised to upgrade to these updated packages, containing the IBM 1.5.0 SR13-FP1 Java release. All running instances of IBM Java must be restarted for this update to take effect.

    1. Solution:

    Before applying this update, make sure all previously-released errata relevant to your system have been applied.

    This update is available via the Red Hat Network. Details on how to use the Red Hat Network to apply this update are available at https://access.redhat.com/knowledge/articles/11258

    1. Bugs fixed (http://bugzilla.redhat.com/):

    737506 - CVE-2011-3389 HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST) 745379 - CVE-2011-3560 OpenJDK: missing checkSetFactory calls in HttpsURLConnection (JSSE, 7096936) 745464 - CVE-2011-3557 OpenJDK: RMI registry privileged code execution (RMI, 7083012) 788624 - CVE-2012-0501 OpenJDK: off-by-one bug in ZIP reading code (JRE, 7118283) 788976 - CVE-2012-0503 OpenJDK: unrestricted use of TimeZone.setDefault() (i18n, 7110687) 788994 - CVE-2012-0507 OpenJDK: AtomicReferenceArray insufficient array type check (Concurrency, 7082299) 789295 - CVE-2011-3563 OpenJDK: JavaSound incorrect bounds check (Sound, 7088367) 789297 - CVE-2012-0502 OpenJDK: KeyboardFocusManager focus stealing (AWT, 7110683) 789299 - CVE-2012-0505 OpenJDK: incomplete info in the deserialization exception (Serialization, 7110700) 789300 - CVE-2012-0506 OpenJDK: mutable repository identifiers (CORBA, 7110704) 790720 - CVE-2012-0498 Oracle JDK: unspecified vulnerability fixed in 6u31 and 7u3 (2D) 790722 - CVE-2012-0499 Oracle JDK: unspecified vulnerability fixed in 6u31 and 7u3 (2D)

    1. Package List:

    Red Hat Enterprise Linux Desktop Supplementary (v. 5):

    i386: java-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-accessibility-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.i386.rpm

    x86_64: java-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.x86_64.rpm java-1.5.0-ibm-accessibility-1.5.0.13.1-1jpp.1.el5.x86_64.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.x86_64.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.x86_64.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.x86_64.rpm java-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.x86_64.rpm

    Red Hat Enterprise Linux Server Supplementary (v. 5):

    i386: java-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-accessibility-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.i386.rpm

    ppc: java-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.ppc.rpm java-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.ppc64.rpm java-1.5.0-ibm-accessibility-1.5.0.13.1-1jpp.1.el5.ppc.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.ppc.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.ppc64.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.ppc.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.ppc64.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.ppc.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.ppc64.rpm java-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.1.el5.ppc.rpm java-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.1.el5.ppc.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.ppc.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.ppc64.rpm

    s390x: java-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.s390.rpm java-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.s390x.rpm java-1.5.0-ibm-accessibility-1.5.0.13.1-1jpp.1.el5.s390x.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.s390.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.s390x.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.s390.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.s390x.rpm java-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.1.el5.s390.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.s390.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.s390x.rpm

    x86_64: java-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.x86_64.rpm java-1.5.0-ibm-accessibility-1.5.0.13.1-1jpp.1.el5.x86_64.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.x86_64.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.x86_64.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.x86_64.rpm java-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.i386.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.x86_64.rpm

    Red Hat Enterprise Linux Desktop Supplementary (v. 6):

    i386: java-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.i686.rpm

    x86_64: java-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm

    Red Hat Enterprise Linux HPC Node Supplementary (v. 6):

    x86_64: java-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm

    Red Hat Enterprise Linux Server Supplementary (v. 6):

    i386: java-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.i686.rpm

    ppc64: java-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.ppc64.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.ppc64.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.ppc.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.ppc64.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.ppc64.rpm java-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.2.el6_2.ppc.rpm java-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.2.el6_2.ppc.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.ppc64.rpm

    s390x: java-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.s390x.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.s390x.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.s390.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.s390x.rpm java-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.2.el6_2.s390.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.s390x.rpm

    x86_64: java-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm

    Red Hat Enterprise Linux Workstation Supplementary (v. 6):

    i386: java-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.i686.rpm

    x86_64: java-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm java-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm java-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm

    These packages are GPG signed by Red Hat for security. Our key and details on how to verify the signature are available from https://access.redhat.com/security/team/key/#package

    1. References:

    https://www.redhat.com/security/data/cve/CVE-2011-3389.html https://www.redhat.com/security/data/cve/CVE-2011-3557.html https://www.redhat.com/security/data/cve/CVE-2011-3560.html https://www.redhat.com/security/data/cve/CVE-2011-3563.html https://www.redhat.com/security/data/cve/CVE-2012-0498.html https://www.redhat.com/security/data/cve/CVE-2012-0499.html https://www.redhat.com/security/data/cve/CVE-2012-0501.html https://www.redhat.com/security/data/cve/CVE-2012-0502.html https://www.redhat.com/security/data/cve/CVE-2012-0503.html https://www.redhat.com/security/data/cve/CVE-2012-0505.html https://www.redhat.com/security/data/cve/CVE-2012-0506.html https://www.redhat.com/security/data/cve/CVE-2012-0507.html https://access.redhat.com/security/updates/classification/#critical http://www.ibm.com/developerworks/java/jdk/alerts/

    1. Contact:

    The Red Hat security contact is secalert@redhat.com. More contact details at https://access.redhat.com/security/team/contact/

    Copyright 2012 Red Hat, Inc. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1

    APPLE-SA-2012-09-19-2 OS X Mountain Lion v10.8.2, OS X Lion v10.7.5 and Security Update 2012-004

    OS X Mountain Lion v10.8.2, OS X Lion v10.7.5 and Security Update 2012-004 are now available and address the following:

    Apache Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: Multiple vulnerabilities in Apache Description: Apache is updated to version 2.2.22 to address several vulnerabilities, the most serious of which may lead to a denial of service. Further information is available via the Apache web site at http://httpd.apache.org/. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2011-3368 CVE-2011-3607 CVE-2011-4317 CVE-2012-0021 CVE-2012-0031 CVE-2012-0053

    BIND Available for: OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: A remote attacker may be able to cause a denial of service in systems configured to run BIND as a DNS nameserver Description: A reachable assertion issue existed in the handling of DNS records. This issue was addressed by updating to BIND 9.7.6-P1. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2011-4313

    BIND Available for: OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4, OS X Mountain Lion v10.8 and v10.8.1 Impact: A remote attacker may be able to cause a denial of service, data corruption, or obtain sensitive information from process memory in systems configured to run BIND as a DNS nameserver Description: A memory management issue existed in the handling of DNS records. This issue was addressed by updating to BIND 9.7.6-P1 on OS X Lion systems, and BIND 9.8.3-P1 on OS X Mountain Lion systems. CVE-ID CVE-2012-1667

    CoreText Available for: OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: Applications that use CoreText may be vulnerable to an unexpected application termination or arbitrary code execution Description: A bounds checking issue existed in the handling of text glyphs, which may lead to out of bounds memory reads or writes. This issue was addressed through improved bounds checking. This issue does not affect Mac OS X v10.6 or OS X Mountain Lion systems. CVE-ID CVE-2012-3716 : Jesse Ruderman of Mozilla Corporation

    Data Security Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4, OS X Mountain Lion v10.8 and v10.8.1 Impact: An attacker with a privileged network position may intercept user credentials or other sensitive information Description: TrustWave, a trusted root CA, has issued, and subsequently revoked, a sub-CA certificate from one of its trusted anchors. This sub-CA facilitated the interception of communications secured by Transport Layer Security (TLS). This update adds the involved sub-CA certificate to OS X's list of untrusted certificates.

    DirectoryService Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8 Impact: If the DirectoryService Proxy is used, a remote attacker may cause a denial of service or arbitrary code execution Description: A buffer overflow existed in the DirectoryService Proxy. This issue was addressed through improved bounds checking. This issue does not affect OS X Lion and Mountain Lion systems. CVE-ID CVE-2012-0650 : aazubel working with HP's Zero Day Initiative

    ImageIO Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: Viewing a maliciously crafted PNG image may lead to an unexpected application termination or arbitrary code execution Description: Multiple memory corruption issues existed in libpng's handling of PNG images. These issues were addressed through improved validation of PNG images. These issues do not affect OS X Mountain Lion systems. CVE-ID CVE-2011-3026 : Juri Aedla CVE-2011-3048

    ImageIO Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: Viewing a maliciously crafted TIFF image may lead to an unexpected application termination or arbitrary code execution Description: An integer overflow issue existed in libTIFF's handling of TIFF images. This issue was addressed through improved validation of TIFF images. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2012-1173 : Alexander Gavrun working with HP's Zero Day Initiative

    Installer Available for: OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: Remote admins and persons with physical access to the system may obtain account information Description: The fix for CVE-2012-0652 in OS X Lion 10.7.4 prevented user passwords from being recorded in the system log, but did not remove the old log entries. This issue was addressed by deleting log files that contained passwords. This issue does not affect Mac OS X 10.6 or OS X Mountain Lion systems. CVE-ID CVE-2012-0652

    International Components for Unicode Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: Applications that use ICU may be vulnerable to an unexpected application termination or arbitrary code execution Description: A stack buffer overflow existed in the handling of ICU locale IDs. This issue was addressed through improved bounds checking. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2011-4599

    Kernel Available for: OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: A malicious program could bypass sandbox restrictions Description: A logic issue existed in the handling of debug system calls. This may allow a malicious program to gain code execution in other programs with the same user privileges. This issue was addressed by disabling handling of addresses in PT_STEP and PT_CONTINUE. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2012-0643 : iOS Jailbreak Dream Team

    LoginWindow Available for: OS X Mountain Lion v10.8 and v10.8.1 Impact: A local user may be able to obtain other user's login passwords Description: A user-installed input method could intercept password keystrokes from Login Window or Screen Saver Unlock. This issue was addressed by preventing user-installed methods from being used when the system is handling login information. CVE-ID CVE-2012-3718 : An anonymous researcher

    Mail Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: Viewing an e-mail message may lead to execution of web plugins Description: An input validation issue existed in Mail's handling of embedded web plugins. This issue was addressed by disabling third- party plug-ins in Mail. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2012-3719 : Will Dormann of the CERT/CC

    Mobile Accounts Available for: OS X Mountain Lion v10.8 and v10.8.1 Impact: A user with access to the contents of a mobile account may obtain the account password Description: Creating a mobile account saved a hash of the password in the account, which was used to login when the mobile account was used as an external account. The password hash could be used to determine the user's password. This issue was addressed by creating the password hash only if external accounts are enabled on the system where the mobile account is created. CVE-ID CVE-2012-3720 : Harald Wagener of Google, Inc.

    PHP Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4, OS X Mountain Lion v10.8 and v10.8.1 Impact: Multiple vulnerabilities in PHP Description: >PHP is updated to version 5.3.15 to address multiple vulnerabilities, the most serious of which may lead to arbitrary code execution. Further information is available via the PHP web site at http://www.php.net CVE-ID CVE-2012-0831 CVE-2012-1172 CVE-2012-1823 CVE-2012-2143 CVE-2012-2311 CVE-2012-2386 CVE-2012-2688

    PHP Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: PHP scripts which use libpng may be vulnerable to an unexpected application termination or arbitrary code execution Description: A memory corruption issue existed in the handling of PNG files. This issue was addressed by updating PHP's copy of libpng to version 1.5.10. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2011-3048

    Profile Manager Available for: OS X Lion Server v10.7 to v10.7.4 Impact: An unauthenticated user could enumerate managed devices Description: An authentication issue existed in the Device Management private interface. This issue was addressed by removing the interface. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2012-3721 : Derick Cassidy of XEquals Corporation

    QuickLook Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: Viewing a maliciously crafted .pict file may lead to an unexpected application termination or arbitrary code execution Description: A memory corruption issue existed in the handling of .pict files. This issue was addressed through improved validation of .pict files. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2012-0671 : Rodrigo Rubira Branco (twitter.com/bsdaemon) from the Qualys Vulnerability & Malware Research Labs (VMRL)

    QuickTime Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: Viewing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution Description: An integer overflow existed in QuickTime's handling of sean atoms. This issue was addressed through improved bounds checking. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2012-0670 : Tom Gallagher (Microsoft) and Paul Bates (Microsoft) working with HP's Zero Day Initiative

    QuickTime Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: Viewing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution Description: An uninitialized memory access existed in the handling of Sorenson encoded movie files. This issue was addressed through improved memory initialization. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2012-3722 : Will Dormann of the CERT/CC

    QuickTime Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: Viewing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution Description: A buffer overflow existed in the handling of RLE encoded movie files. This issue was addressed through improved bounds checking. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2012-0668 : Luigi Auriemma working with HP's Zero Day Initiative

    Ruby Available for: Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: An attacker may be able to decrypt data protected by SSL Description: There are known attacks on the confidentiality of SSL 3.0 and TLS 1.0 when a cipher suite uses a block cipher in CBC mode. The Ruby OpenSSL module disabled the 'empty fragment' countermeasure which prevented these attacks. This issue was addressed by enabling empty fragments. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2011-3389

    USB Available for: OS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4 Impact: Attaching a USB device may lead to an unexpected system termination or arbitrary code execution Description: A memory corruption issue existed in the handling of USB hub descriptors. This issue was addressed through improved handling of the bNbrPorts descriptor field. This issue does not affect OS X Mountain Lion systems. CVE-ID CVE-2012-3723 : Andy Davis of NGS Secure

    Note: OS X Mountain Lion v10.8.2 includes the content of Safari 6.0.1. For further details see "About the security content of Safari 6.0.1" at http://http//support.apple.com/kb/HT5502

    OS X Mountain Lion v10.8.2, OS X Lion v10.7.5 and Security Update 2012-004 may be obtained from the Software Update pane in System Preferences, or Apple's Software Downloads web site: http://www.apple.com/support/downloads/

    The Software Update utility will present the update that applies to your system configuration. Only one is needed, either OS X Mountain Lion v10.8.2, OS X Lion v10.7.5 or Security Update 2012-004.

    For OS X Mountain Lion v10.8.1 The download file is named: OSXUpd10.8.2.dmg Its SHA-1 digest is: d6779e1cc748b78af0207499383b1859ffbebe33

    For OS X Mountain Lion v10.8 The download file is named: OSXUpdCombo10.8.2.dmg Its SHA-1 digest is: b08f10233d362e39f20b69f91d1d73f5e7b68a2c

    For OS X Lion v10.7.4 The download file is named: MacOSXUpd10.7.5.dmg Its SHA-1 digest is: e0a9582cce9896938a7a541bd431862d93893532

    For OS X Lion v10.7 and v10.7.3 The download file is named: MacOSXUpdCombo10.7.5.dmg Its SHA-1 digest is: f7a26b164fa10dae4fe646e57b01c34a619c8d9b

    For OS X Lion Server v10.7.4 The download file is named: MacOSXServerUpd10.7.5.dmg Its SHA-1 digest is: a891b03bfb4eecb745c0c39a32f39960fdb6796a

    For OS X Lion Server v10.7 and v10.7.3 The download file is named: MacOSXServerUpdCombo10.7.5.dmg Its SHA-1 digest is: df6e1748ab0a3c9e05c890be49d514673efd965e

    For Mac OS X v10.6.8 The download file is named: SecUpd2012-004.dmg Its SHA-1 digest is: 5b136e29a871d41012f0c6ea1362d6210c8b4fb7

    For Mac OS X Server v10.6.8 The download file is named: SecUpdSrvr2012-004.dmg Its SHA-1 digest is: 9b24496be15078e58a88537700f2f39c112e3b28

    Information will also be posted to the Apple Security Updates web site: http://support.apple.com/kb/HT1222

    This message is signed with Apple's Product Security PGP key, and details are available at: https://www.apple.com/support/security/pgp/

    -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.17 (Darwin) Comment: GPGTools - http://gpgtools.org

    iQIcBAEBAgAGBQJQWhlbAAoJEPefwLHPlZEwwjwQAKrpQlZh1B2mkSTLxR7QZg6e Qm7SmIZL9sjl5gQkTxoAvOGxJ8uRdYPlJ1IpyU/MbK0GqO53KmFSeKkwCnvLKMaW pc6tiFaQ4zV4LEAwBAFEuqCsMyPEJqKDhYXl2cHQmWfAlrLCyCKfzGLy2mY2UnkE DQC2+ys70DChFv2GzyXlibBXAGMKDygJ5dVKynsi1ceZLYWbUJoGwlUtXPylBpnO QyGWXmEloPbhK6HJbKMNacuDdVcb26pvIeFiivkTSxPVlZ3ns2tAwEyvHrzA9O4n 7rQ6jvfDbguOZmM5sPFvVKBw2GVDBNU+G3T8ouIXhk6Pjhr4in8VFCb8MIMLb8hm 7YYn2z1TzKTNmUuYbwe6ukQvf57cPuW0bAvslbl6PgrzqorlNPU4rDoSvPrJx/RO BOYkcxfirevHDGibfkeqXPjL3h+bVrb1USZpAv+ZOAy0M89SHFcvMtpAhxnoGiV5 w4EyKB+9Yi/CSAk2Ne3Y5kHH7/v3pWV68aJwhVirya7ex3vnJ+M+lRLKSm2BUjL3 +9fykrJBDujFDXoCmK5CN5Wx36DSVZ4VO1h635crotudtcvd+LQ2VHma/Chav5wK q5SSllf4KEownpx6o/qTxpg5tcC4lvgTcsDHlYcNq2s8KTTjmOden8ar4h7M7QD2 xyBfrQfG/dsif6jGHaot =8joH -----END PGP SIGNATURE----- . -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1

    Note: the current version of the following document is available here: https://h20566.www2.hp.com/portal/site/hpsc/public/kb/ docDisplay?docId=emr_na-c03316985

    SUPPORT COMMUNICATION - SECURITY BULLETIN

    Document ID: c03316985 Version: 1

    HPSBUX02777 SSRT100854 rev.1 - HP-UX Running Java JRE and JDK, Remote Denial of Service (DoS), Unauthorized Modification and Disclosure of Information

    NOTICE: The information in this Security Bulletin should be acted upon as soon as possible.

    Release Date: 2012-05-15 Last Updated: 2012-05-15


    Potential Security Impact: Remote Denial of service, unauthorized modification and disclosure of information

    Source: Hewlett-Packard Company, HP Software Security Response Team

    VULNERABILITY SUMMARY Potential security vulnerabilities have been identified in Java Runtime Environment (JRE) and Java Developer Kit (JDK) running on HP-UX. These vulnerabilities may allow remote Denial of Service (DoS), unauthorized modification and disclosure of information.

    References: CVE-2010-4447, CVE-2010-4448, CVE-2010-4454, CVE-2010-4462, CVE-2010-4465, CVE-2010-4469, CVE-2010-4473, CVE-2010-4475, CVE-2010-4476, CVE-2011-0802, CVE-2011-0814, CVE-2011-0815, CVE-2011-0862, CVE-2011-0864, CVE-2011-0865, CVE-2011-0867, CVE-2011-0871, CVE-2011-3389, CVE-2011-3545, CVE-2011-3547, CVE-2011-3548, CVE-2011-3549, CVE-2011-3552, CVE-2011-3556, CVE-2011-3557, CVE-2011-3560, CVE-2011-3563, CVE-2012-0499, CVE-2012-0502, CVE-2012-0503, CVE-2012-0505, CVE-2012-0506

    SUPPORTED SOFTWARE VERSIONS*: ONLY impacted versions are listed.

    BACKGROUND

    CVSS 2.0 Base Metrics

    Reference Base Vector Base Score CVE-2010-4447 (AV:N/AC:M/Au:N/C:P/I:N/A:N) 4.3 CVE-2010-4448 (AV:N/AC:H/Au:N/C:N/I:P/A:N) 2.6 CVE-2010-4454 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2010-4462 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2010-4465 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2010-4469 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2010-4473 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2010-4475 (AV:N/AC:M/Au:N/C:P/I:N/A:N) 4.3 CVE-2010-4476 (AV:N/AC:L/Au:N/C:N/I:N/A:P) 5.0 CVE-2011-0802 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2011-0814 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2011-0815 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2011-0862 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2011-0864 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2011-0865 (AV:N/AC:H/Au:N/C:N/I:P/A:N) 2.6 CVE-2011-0867 (AV:N/AC:L/Au:N/C:P/I:N/A:N) 5.0 CVE-2011-0871 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2011-3389 (AV:N/AC:M/Au:N/C:P/I:N/A:N) 4.3 CVE-2011-3545 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2011-3547 (AV:N/AC:L/Au:N/C:P/I:N/A:N) 5.0 CVE-2011-3548 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2011-3549 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2011-3552 (AV:N/AC:H/Au:N/C:N/I:P/A:N) 2.6 CVE-2011-3556 (AV:N/AC:L/Au:N/C:P/I:P/A:P) 7.5 CVE-2011-3557 (AV:N/AC:M/Au:N/C:P/I:P/A:P) 6.8 CVE-2011-3560 (AV:N/AC:L/Au:N/C:P/I:P/A:N) 6.4 CVE-2011-3563 (AV:N/AC:L/Au:N/C:P/I:N/A:P) 6.4 CVE-2012-0499 (AV:N/AC:L/Au:N/C:C/I:C/A:C) 10.0 CVE-2012-0502 (AV:N/AC:L/Au:N/C:P/I:N/A:P) 6.4 CVE-2012-0503 (AV:N/AC:L/Au:N/C:P/I:P/A:P) 7.5 CVE-2012-0505 (AV:N/AC:L/Au:N/C:P/I:P/A:P) 7.5 CVE-2012-0506 (AV:N/AC:M/Au:N/C:N/I:P/A:N) 4.3 =========================================================== Information on CVSS is documented in HP Customer Notice: HPSN-2008-002

    RESOLUTION

    HP is providing the following Java updates to resolve the vulnerabilities. The updates are available from: http://www.hp.com/go/java

    These issues are addressed in the following versions of the HP Java:

    HP-UX B.11.11 / SDK and JRE v1.4.2.28 or subsequent

    HP-UX B.11.23 / SDK and JRE v1.4.2.28 or subsequent

    HP-UX B.11.31 / SDK and JRE v1.4.2.28 or subsequent

    MANUAL ACTIONS: Yes - Update

    For Java v1.4.2.27 and earlier, update to Java v1.4.2.28 or subsequent.

    PRODUCT SPECIFIC INFORMATION

    HP-UX Software Assistant: HP-UX Software Assistant is an enhanced application that replaces HP-UX Security Patch Check. It analyzes all HP-issued Security Bulletins and lists recommended actions that may apply to a specific HP-UX system. It can also download patches and create a depot automatically. For more information see: https://www.hp.com/go/swa

    The following text is for use by the HP-UX Software Assistant.

    AFFECTED VERSIONS

    HP-UX B.11.11 HP-UX B.11.23 HP-UX B.11.31 =========== Jpi14.JPI14-COM Jpi14.JPI14-COM-DOC Jpi14.JPI14-IPF32 Jpi14.JPI14-PA11 Jdk14.JDK14-COM Jdk14.JDK14-DEMO Jdk14.JDK14-IPF32 Jdk14.JDK14-IPF64 Jdk14.JDK14-PA11 Jdk14.JDK14-PA20 Jdk14.JDK14-PA20W Jdk14.JDK14-PNV2 Jdk14.JDK14-PWV2 Jre14.JRE14-COM Jre14.JRE14-COM-DOC Jre14.JRE14-IPF32 Jre14.JRE14-IPF32-HS Jre14.JRE14-IPF64 Jre14.JRE14-IPF64-HS Jre14.JRE14-PA11 Jre14.JRE14-PA11-HS Jre14.JRE14-PA20 Jre14.JRE14-PA20-HS Jre14.JRE14-PA20W Jre14.JRE14-PA20W-HS Jre14.JRE14-PNV2 Jre14.JRE14-PNV2-H Jre14.JRE14-PWV2 Jre14.JRE14-PWV2-H action: install revision 1.4.2.28.00 or subsequent

    END AFFECTED VERSIONS

    HISTORY Version:1 (rev.1) - 15 May 2012 Initial release

    Third Party Security Patches: Third party security patches that are to be installed on systems running HP software products should be applied in accordance with the customer's patch management policy.

    Support: For issues about implementing the recommendations of this Security Bulletin, contact normal HP Services support channel. For other issues about the content of this Security Bulletin, send e-mail to security-alert@hp.com.

    Report: To report a potential security vulnerability with any HP supported product, send Email to: security-alert@hp.com

    Subscribe: To initiate a subscription to receive future HP Security Bulletin alerts via Email: http://h41183.www4.hp.com/signup_alerts.php?jumpid=hpsc_secbulletins

    Security Bulletin List: A list of HP Security Bulletins, updated periodically, is contained in HP Security Notice HPSN-2011-001: https://h20566.www2.hp.com/portal/site/hpsc/public/kb/ docDisplay?docId=emr_na-c02964430

    Security Bulletin Archive: A list of recently released Security Bulletins is available here: http://h20566.www2.hp.com/portal/site/hpsc/public/kb/secBullArchive/

    Software Product Category: The Software Product Category is represented in the title by the two characters following HPSB.

    3C = 3COM 3P = 3rd Party Software GN = HP General Software HF = HP Hardware and Firmware MP = MPE/iX MU = Multi-Platform Software NS = NonStop Servers OV = OpenVMS PI = Printing and Imaging PV = ProCurve ST = Storage Software TU = Tru64 UNIX UX = HP-UX

    Copyright 2012 Hewlett-Packard Development Company, L.P. Hewlett-Packard Company shall not be liable for technical or editorial errors or omissions contained herein. The information in this document is subject to change without notice. Hewlett-Packard Company and the names of Hewlett-Packard products referenced herein are trademarks of Hewlett-Packard Company in the United States and other countries. Other product and company names mentioned herein may be trademarks of their respective owners

    Show details on source website

    {
      "affected_products": {
        "_id": null,
        "data": [
          {
            "_id": null,
            "model": "web server",
            "scope": "eq",
            "trust": 1.8,
            "vendor": "hitachi",
            "version": "02-03"
          },
          {
            "_id": null,
            "model": "web server 02-04-/a",
            "scope": null,
            "trust": 1.5,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "web server",
            "scope": "eq",
            "trust": 1.2,
            "vendor": "hitachi",
            "version": "02-01"
          },
          {
            "_id": null,
            "model": "web server",
            "scope": "eq",
            "trust": 1.2,
            "vendor": "hitachi",
            "version": "02-02"
          },
          {
            "_id": null,
            "model": "simatic rf68xr",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "siemens",
            "version": "3.2.1"
          },
          {
            "_id": null,
            "model": "curl",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "haxx",
            "version": "7.10.6"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "enterprise linux workstation",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "ubuntu linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "canonical",
            "version": "10.04"
          },
          {
            "_id": null,
            "model": "internet explorer",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "simatic rf615r",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "siemens",
            "version": "3.2.1"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "mozilla",
            "version": null
          },
          {
            "_id": null,
            "model": "windows",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "curl",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "haxx",
            "version": "7.23.1"
          },
          {
            "_id": null,
            "model": "enterprise linux server aus",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "6.2"
          },
          {
            "_id": null,
            "model": "enterprise linux workstation",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "ubuntu linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "canonical",
            "version": "11.10"
          },
          {
            "_id": null,
            "model": "ubuntu linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "canonical",
            "version": "10.10"
          },
          {
            "_id": null,
            "model": "enterprise linux server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "ubuntu linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "canonical",
            "version": "11.04"
          },
          {
            "_id": null,
            "model": "enterprise linux eus",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "6.2"
          },
          {
            "_id": null,
            "model": "enterprise linux server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "browser",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "opera",
            "version": null
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "google",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 17",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "sdk 08",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "web server 01-02-/b",
            "scope": null,
            "trust": 0.9,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus developer",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "jre 1.4.2 30",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 16",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 05",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "sdk 10",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jdk 14",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "jre",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 25",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus client",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "jre 1.4.2 25",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 06",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jre 01",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.1"
          },
          {
            "_id": null,
            "model": "jre 05",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 03",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 11",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 10",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "ucosminexus application server-r",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "sdk 03",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.1"
          },
          {
            "_id": null,
            "model": "jre 01",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jre 1.5.0 11",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.4.2 12",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 09",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "sdk 24",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jre 02",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jre 07",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jre 1.4.2 22",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "jre 1.6.0 23",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 27",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 15",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "sdk 07",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 25",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 07",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 29",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 03",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.1"
          },
          {
            "_id": null,
            "model": "jre 1.6.0 11",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 02",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.1"
          },
          {
            "_id": null,
            "model": "jre 01",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jre 04",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jdk",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "jre 1.5.0 17",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.4.2 17",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 24",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jre 1.5.0 27",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus client",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 30",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.6.0 03",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 01",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jre 1.6.0 26",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 06",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jre 1.4.2 31",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 08",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jdk 10",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "jre 1.4.2 13",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 02",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 23",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 04",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jre 05",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 26",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.7"
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 16",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.5.0 29",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus service platform",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "ucosminexus service architect",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "ucosminexus service architect",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 31",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 16",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jre 1.5.0 20",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 32",
            "scope": "ne",
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 30",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 18",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jdk 11",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "sdk .0 03",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4"
          },
          {
            "_id": null,
            "model": "jre 1.4.2 11",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 0 10",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jre 1.5.0 10",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 24",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 27",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 03",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 29",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 02",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.1"
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 14",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.5.0 14",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.4.2 20",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 24",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "web server 01-02-/c",
            "scope": null,
            "trust": 0.9,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.5.0 25",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.6.0 24",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk .0 05",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jre 06",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "jre 1.5.0 28",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus operator for service platform",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 13",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.4.2 16",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 17",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.6.0 15",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.1"
          },
          {
            "_id": null,
            "model": "jre 1.6.0 21",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 33",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 15",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 31",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.6.0 28",
            "scope": "ne",
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 10",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jre 1.6.0 18",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.1"
          },
          {
            "_id": null,
            "model": "jre 1.6.0 22",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.5.0 31",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk .0 4",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4"
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 28",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 21",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.6.0 27",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 15",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk .0 02",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4"
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 12",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.4.2 18",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.4.2 14",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus application server-r",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "jre 1.6.0 02",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus developer",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "jre",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 28",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 06",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jre 1.4.2 15",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 15",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 26",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 28",
            "scope": "ne",
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.4.2 29",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 01",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.1"
          },
          {
            "_id": null,
            "model": "jdk 17",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "sdk 09",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jre 13",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "sdk",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "ucosminexus primary server base",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "ucosminexus primary server base",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "jre 1.4.2 32",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.5.0 26",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.4.2 33",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 26",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.5.0 30",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.5.0 32",
            "scope": "ne",
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 18",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 05",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "ucosminexus operator for service platform",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "jdk 17",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jdk 18",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 22",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.7"
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 02",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 04",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jre 1.6.0 01",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 12",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "jdk 07",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "sdk 05",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "web server 01-02-/a",
            "scope": null,
            "trust": 0.9,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 14",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jre 02",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "sdk 03",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jre 03",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 19",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.5.0 12",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.4"
          },
          {
            "_id": null,
            "model": "jdk 13",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "jre 1.5.0 13",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 25",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 32",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 22",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jre 1.4.2 19",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 23",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 20",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 20",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 27",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 04",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "jre 04",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "jre 1.6.0 19",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 20",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.5.0 23",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 22",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 1.4.2 13",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 06",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "jre 1.6.0 25",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 18",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 19",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.6.0 14",
            "scope": null,
            "trust": 0.9,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 22",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "google",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "mozilla",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "opera",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus client )",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "ucosminexus service platform )",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "jre .0 01",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "sun",
            "version": "1.4"
          },
          {
            "_id": null,
            "model": "jdk 01-b06",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "ucosminexus primary server base )",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "project openssl 1.0.0a",
            "scope": null,
            "trust": 0.6,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus operator for service platform )",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "web server linux",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "03-00"
          },
          {
            "_id": null,
            "model": "web server 02-04-/b",
            "scope": null,
            "trust": 0.6,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "project openssl 0.9.8m",
            "scope": null,
            "trust": 0.6,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.5.0.0 09",
            "scope": null,
            "trust": 0.6,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.4.2 28",
            "scope": null,
            "trust": 0.6,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk .0 04",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "ucosminexus service architect )",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "ucosminexus developer )",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "ucosminexus service architect )",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "jre .0 03",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "sun",
            "version": "1.4"
          },
          {
            "_id": null,
            "model": "cosminexus http server windows",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "web server hp-ux",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "03-00"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0.0 08",
            "scope": null,
            "trust": 0.6,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "web server",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "01-02"
          },
          {
            "_id": null,
            "model": "ucosminexus primary server base )",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "project openssl 0.9.8n",
            "scope": null,
            "trust": 0.6,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus application server-r )",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "jdk .0 03",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 12",
            "scope": null,
            "trust": 0.6,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre .0 02",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "sun",
            "version": "1.4"
          },
          {
            "_id": null,
            "model": "cosminexus http server windows",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-00-10"
          },
          {
            "_id": null,
            "model": "windows server sp1",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "web server linux",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "04-00"
          },
          {
            "_id": null,
            "model": "jre 1.6.0 2",
            "scope": null,
            "trust": 0.6,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus client )",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "jre 1.4.2 27",
            "scope": null,
            "trust": 0.6,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 07-b03",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jdk 06",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "jre",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "sun",
            "version": "1.4"
          },
          {
            "_id": null,
            "model": "ucosminexus application server-r )",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "jre 1.5.0.0 08",
            "scope": null,
            "trust": 0.6,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre .0 04",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "sun",
            "version": "1.4"
          },
          {
            "_id": null,
            "model": "web server",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "02-04"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0.0 12",
            "scope": null,
            "trust": 0.6,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server sp2",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "ucosminexus operator for service platform )",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0.0 09",
            "scope": null,
            "trust": 0.6,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "project openssl 0.9.8o",
            "scope": null,
            "trust": 0.6,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.5.0.0 11",
            "scope": null,
            "trust": 0.6,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 11-b03",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "ucosminexus application server",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "ucosminexus application server )",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hitachi",
            "version": "09-50"
          },
          {
            "_id": null,
            "model": "jre 1.5.0.0 07",
            "scope": null,
            "trust": 0.6,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 01",
            "scope": null,
            "trust": 0.6,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 1.6.0 20",
            "scope": null,
            "trust": 0.6,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp home sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "x640"
          },
          {
            "_id": null,
            "model": "software opera web browser beta1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.50"
          },
          {
            "_id": null,
            "model": "fusion middleware 11g release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "111.1.17"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.80"
          },
          {
            "_id": null,
            "model": "java se sr8 fp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6"
          },
          {
            "_id": null,
            "model": "enterprise linux server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "11.11"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7.3"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.2"
          },
          {
            "_id": null,
            "model": "project openssl g",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "nonstop server h06.16.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser b",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.53"
          },
          {
            "_id": null,
            "model": "enterprise linux as extras",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "_id": null,
            "model": "windows xp professional edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "x64"
          },
          {
            "_id": null,
            "model": "tv",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "voice portal sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "11.10"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.2"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.14.1"
          },
          {
            "_id": null,
            "model": "windows server for 32-bit systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20080"
          },
          {
            "_id": null,
            "model": "java se",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "11.50"
          },
          {
            "_id": null,
            "model": "web server windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "04-10"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.63"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.70"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.10"
          },
          {
            "_id": null,
            "model": "windows xp tablet pc edition sp3",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition x64-enterprise",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.7"
          },
          {
            "_id": null,
            "model": "project openssl b-36.8",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.0.0-68"
          },
          {
            "_id": null,
            "model": "power systems 350.c0",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "10.0.648.127"
          },
          {
            "_id": null,
            "model": "linux i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.225"
          },
          {
            "_id": null,
            "model": "nonstop server j06.09.03",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.50"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.219"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.30"
          },
          {
            "_id": null,
            "model": "web server windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "04-10-03"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.15.2"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.20"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.2.1"
          },
          {
            "_id": null,
            "model": "power systems 350.b1",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "_id": null,
            "model": "web server windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "04-10-01(x64)"
          },
          {
            "_id": null,
            "model": "ip office application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "_id": null,
            "model": "java se sr12",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0.0"
          },
          {
            "_id": null,
            "model": "meeting exchange",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0.0.52"
          },
          {
            "_id": null,
            "model": "windows server standard edition gold itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008-"
          },
          {
            "_id": null,
            "model": "flex system imm2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.00"
          },
          {
            "_id": null,
            "model": "windows server r2 enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "cosminexus developer standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.12"
          },
          {
            "_id": null,
            "model": "nonstop server h06.18.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "nonstop server j06.15.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "nonstop server h06.22.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp media center edition sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2005"
          },
          {
            "_id": null,
            "model": "websphere datapower soa appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.8"
          },
          {
            "_id": null,
            "model": "websphere datapower soa appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "rational appscan enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.1"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.51"
          },
          {
            "_id": null,
            "model": "meeting exchange web conferencing server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "java se",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.6"
          },
          {
            "_id": null,
            "model": "windows server r2 web edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "system management homepage c",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.10.186"
          },
          {
            "_id": null,
            "model": "project openssl h",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.2"
          },
          {
            "_id": null,
            "model": "project openssl i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.2"
          },
          {
            "_id": null,
            "model": "nonstop server j06.08.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "project openssl b",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "windows xp home sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista home basic sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "nonstop server j06.16",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.200"
          },
          {
            "_id": null,
            "model": "ucosminexus client for plug-in",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ucosminexus application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "nonstop server j6.0.14.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "java sdk sr10",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6"
          },
          {
            "_id": null,
            "model": "vplex geosynchrony sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "emc",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "software opera web browser win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.0.68"
          },
          {
            "_id": null,
            "model": "forms and reports 11g release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "211.1.2.1"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "350.00"
          },
          {
            "_id": null,
            "model": "windows for 32-bit systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "70"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "770.22"
          },
          {
            "_id": null,
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.3"
          },
          {
            "_id": null,
            "model": "flex system chassis management module",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "_id": null,
            "model": "cosminexus application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.303"
          },
          {
            "_id": null,
            "model": "linux ia-64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "windows server r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008x640"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 11",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser 1win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "ucosminexus developer light",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "flex system imm2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.00"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.211"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.104"
          },
          {
            "_id": null,
            "model": "nonstop server j06.07.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "6.0.0-95"
          },
          {
            "_id": null,
            "model": "linux i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.10"
          },
          {
            "_id": null,
            "model": "jrockit r28.0.0",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "8.51"
          },
          {
            "_id": null,
            "model": "meeting exchange sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "web server )",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "02-03"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.21.6"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0.0 06",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus service platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "cosminexus developer\u0027s kit for java (windows(x8",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-50-01"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "opera",
            "version": "11.51"
          },
          {
            "_id": null,
            "model": "cosminexus developer\u0027s kit for java",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00-06"
          },
          {
            "_id": null,
            "model": "ucosminexus application server light",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "nonstop server h06.15.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "meeting exchange",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.4"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "13.0.782.107"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "14"
          },
          {
            "_id": null,
            "model": "windows server standard edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20080"
          },
          {
            "_id": null,
            "model": "system management homepage b",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.5.146"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.54"
          },
          {
            "_id": null,
            "model": "windows server sp2 enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008-x64"
          },
          {
            "_id": null,
            "model": "system networking ethernet switch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.1"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.51"
          },
          {
            "_id": null,
            "model": "windows server gold standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "jrockit r28.1.1",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "773.10"
          },
          {
            "_id": null,
            "model": "windows server r2 standard edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20080"
          },
          {
            "_id": null,
            "model": "aura sip enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.1"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.5"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.40"
          },
          {
            "_id": null,
            "model": "system management homepage a",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.11.197"
          },
          {
            "_id": null,
            "model": "web server hp-ux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "03-10"
          },
          {
            "_id": null,
            "model": "firefox beta1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.15210"
          },
          {
            "_id": null,
            "model": "windows vista business",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "tv",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.17"
          },
          {
            "_id": null,
            "model": "project openssl l",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.11.1"
          },
          {
            "_id": null,
            "model": "proactive contact",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "windows server for x64-based systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20080"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.10"
          },
          {
            "_id": null,
            "model": "esx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "vmware",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "windows server standard edition gold web",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008-"
          },
          {
            "_id": null,
            "model": "aura communication manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "windows server itanium sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "7.1"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.3"
          },
          {
            "_id": null,
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.3"
          },
          {
            "_id": null,
            "model": "windows xp home sp3",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "5.12"
          },
          {
            "_id": null,
            "model": "java sdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.5"
          },
          {
            "_id": null,
            "model": "software opera web browser beta2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.50"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.018"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.019"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.3"
          },
          {
            "_id": null,
            "model": "project openssl d",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.17"
          },
          {
            "_id": null,
            "model": "enterprise linux hpc node optional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "windows vista ultimate 64-bit edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "11.00"
          },
          {
            "_id": null,
            "model": "project openssl beta2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.10"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3"
          },
          {
            "_id": null,
            "model": "enterprise linux server supplementary",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "350.60"
          },
          {
            "_id": null,
            "model": "nonstop server j06.13.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "iq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1.1"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.25"
          },
          {
            "_id": null,
            "model": "windows home premium sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "7-x32"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 11-b03",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server gold compute cluster",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "aura communication manager utility services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "software opera web browser win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "5.02"
          },
          {
            "_id": null,
            "model": "rsa bsafe micro edition suite",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "emc",
            "version": "4.0.5"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.19"
          },
          {
            "_id": null,
            "model": "project openssl e",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "windows server standard edition gold datacenter",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008-"
          },
          {
            "_id": null,
            "model": "project openssl f",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "enterprise linux workstation supplementary",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "project openssl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "access manager sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "novell",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "windows vista home premium sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.24"
          },
          {
            "_id": null,
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "11.04"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "11.0.696.65"
          },
          {
            "_id": null,
            "model": "windows vista home premium 64-bit edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "0"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.15"
          },
          {
            "_id": null,
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.10"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.60"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.12.3"
          },
          {
            "_id": null,
            "model": "windows server r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "project openssl 1.0.0c",
            "scope": null,
            "trust": 0.3,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.19"
          },
          {
            "_id": null,
            "model": "windows server sp1 platform sdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "software opera web browser beta1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.10"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition itanium sp1 beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20031"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.00"
          },
          {
            "_id": null,
            "model": "windows server sp2 beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.100"
          },
          {
            "_id": null,
            "model": "java se",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "windows server r2 x64-datacenter",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "cosminexus http server hp-ux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.7"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition itanium sp2 itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows for 32-bit systems sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "7"
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition x64-ultimate",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp professional edition sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "x64"
          },
          {
            "_id": null,
            "model": "proactive contact",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.2.1"
          },
          {
            "_id": null,
            "model": "nonstop server j06.15",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.9.2"
          },
          {
            "_id": null,
            "model": "aura presence services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "windows rc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "7"
          },
          {
            "_id": null,
            "model": "windows server for 32-bit systems sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "jre 07",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.1"
          },
          {
            "_id": null,
            "model": "callpilot",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "windows vista home premium",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "cosminexus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "9.0"
          },
          {
            "_id": null,
            "model": "vplex geosynchrony",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "emc",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.4"
          },
          {
            "_id": null,
            "model": "web server windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "03-10-10"
          },
          {
            "_id": null,
            "model": "ucosminexus application server enterprise )",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-80"
          },
          {
            "_id": null,
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.2"
          },
          {
            "_id": null,
            "model": "linux s/390",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "aura experience portal",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "control patch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "7.1.01"
          },
          {
            "_id": null,
            "model": "project openssl beta3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "ipad",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "0"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "6"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "10.0.648.133"
          },
          {
            "_id": null,
            "model": "nonstop server h06.21.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.3.132"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.13.2"
          },
          {
            "_id": null,
            "model": "access manager sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "novell",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "linux enterprise java sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "_id": null,
            "model": "jre 1.5.0 08",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "opera",
            "version": "11.60"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "350.20"
          },
          {
            "_id": null,
            "model": "web server windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "03-00-060"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.101"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "6.2"
          },
          {
            "_id": null,
            "model": "ucosminexus application server smart edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.14"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.8"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "8.52"
          },
          {
            "_id": null,
            "model": "cosminexus developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "meeting exchange recording server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7.4"
          },
          {
            "_id": null,
            "model": "cosminexus developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "5"
          },
          {
            "_id": null,
            "model": "desktop extras",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.52"
          },
          {
            "_id": null,
            "model": "nonstop server j06.06.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.5"
          },
          {
            "_id": null,
            "model": "windows server web edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "openpages grc platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "windows server r2 enterprise edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "rsa bsafe ssl-c",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "emc",
            "version": "2.8.6"
          },
          {
            "_id": null,
            "model": "nonstop server j06.06.03",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "nonstop server h06.17.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "5"
          },
          {
            "_id": null,
            "model": "jdk update21",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3.3"
          },
          {
            "_id": null,
            "model": "simatic rf68xr",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "siemens",
            "version": "3.2.1"
          },
          {
            "_id": null,
            "model": "network node manager i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.1"
          },
          {
            "_id": null,
            "model": "windows server standard edition release candidate",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "windows server standard edition sp2 web",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008-"
          },
          {
            "_id": null,
            "model": "aura application enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.2"
          },
          {
            "_id": null,
            "model": "fusion middleware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "12.1.3.0.0"
          },
          {
            "_id": null,
            "model": "database 11g release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "211.2.0.3"
          },
          {
            "_id": null,
            "model": "rational appscan enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0.1"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.5"
          },
          {
            "_id": null,
            "model": "windows server terminal services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "8.54"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.9"
          },
          {
            "_id": null,
            "model": "nonstop server h06.17.03",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "83"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "9.0.597.84"
          },
          {
            "_id": null,
            "model": "jre 21",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "enterprise linux hpc node",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "windows server standard edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "project openssl 0.9.8s",
            "scope": null,
            "trust": 0.3,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "ios beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2"
          },
          {
            "_id": null,
            "model": "windows vista home premium 64-bit edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.2"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "6.1.0.103"
          },
          {
            "_id": null,
            "model": "cms server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "16.2"
          },
          {
            "_id": null,
            "model": "iphone",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "0"
          },
          {
            "_id": null,
            "model": "enterprise linux server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition x86-ultimate",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "linux enterprise java sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "java se sr1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7"
          },
          {
            "_id": null,
            "model": "windows server gold datacenter",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.53"
          },
          {
            "_id": null,
            "model": "iq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.21"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "11"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.4"
          },
          {
            "_id": null,
            "model": "windows server r2 enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "350.70"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.1"
          },
          {
            "_id": null,
            "model": "tv",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "nonstop server h06.27",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.20.2"
          },
          {
            "_id": null,
            "model": "nonstop server j06.14.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "12.0.742.100"
          },
          {
            "_id": null,
            "model": "tv",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.10.186"
          },
          {
            "_id": null,
            "model": "rational appscan standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.8"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "jrockit r27.6.0-50",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.5.015"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.105"
          },
          {
            "_id": null,
            "model": "windows server r2 datacenter edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "project openssl b",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.8"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7"
          },
          {
            "_id": null,
            "model": "jdk 01",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "nonstop server j06.08.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.306"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.2"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.64"
          },
          {
            "_id": null,
            "model": "project openssl k",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.8"
          },
          {
            "_id": null,
            "model": "windows server sp1 compute cluster",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.13"
          },
          {
            "_id": null,
            "model": "java se",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6"
          },
          {
            "_id": null,
            "model": "web server hp-ux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "04-10-02"
          },
          {
            "_id": null,
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "1.1"
          },
          {
            "_id": null,
            "model": "software opera web browser win32 beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.01"
          },
          {
            "_id": null,
            "model": "jrockit r27.6.5",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.222"
          },
          {
            "_id": null,
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "10"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.18"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "9.0.597.107"
          },
          {
            "_id": null,
            "model": "java se sr10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "nonstop server j06.04.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "web server solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "04-00-01"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.0.2.77"
          },
          {
            "_id": null,
            "model": "software opera web browser linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.0.1"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.217"
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition x86-enterprise",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.40"
          },
          {
            "_id": null,
            "model": "linux enterprise server sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "windows server gold x64-datacenter",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "business server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "1"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.22"
          },
          {
            "_id": null,
            "model": "enterprise linux extras",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "_id": null,
            "model": "ucosminexus operator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "6.0.96"
          },
          {
            "_id": null,
            "model": "voice portal",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1.2"
          },
          {
            "_id": null,
            "model": "web server security enhancement",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "aura application server sip core",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "53002.0"
          },
          {
            "_id": null,
            "model": "voice portal",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "java system application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "8.2"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "11.0.696.77"
          },
          {
            "_id": null,
            "model": "aura sip enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "project openssl g",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "aura messaging",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "windows server for itanium-based systems r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "11.1"
          },
          {
            "_id": null,
            "model": "rsa bsafe ssl-j",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "emc",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "windows server for itanium-based systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20080"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3.2"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "13.0.782.112"
          },
          {
            "_id": null,
            "model": "websphere datapower soa appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.2"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.344"
          },
          {
            "_id": null,
            "model": "cosminexus developer\u0027s kit for java (windows(x8",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00-06"
          },
          {
            "_id": null,
            "model": "jdk update24",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "13.0.782.215"
          },
          {
            "_id": null,
            "model": "meeting exchange client registration server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "openpages grc platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.5.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3.1"
          },
          {
            "_id": null,
            "model": "proactive contact",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.2.2"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop supplementary",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "rational appscan enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.1"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "6.1.0.102"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "11.0.696.57"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "760.31"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.18"
          },
          {
            "_id": null,
            "model": "voice portal sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition sp1 beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20031"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.0.2"
          },
          {
            "_id": null,
            "model": "web server hp-ux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "03-00-05"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.81"
          },
          {
            "_id": null,
            "model": "linux mandrake x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2011"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0.0 04",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "vcenter",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "vmware",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "aura session manager sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.11.2"
          },
          {
            "_id": null,
            "model": "iq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.215"
          },
          {
            "_id": null,
            "model": "windows server r2 standard edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "project openssl h",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "windows server r2 for x64-based systems sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "project openssl a",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.5"
          },
          {
            "_id": null,
            "model": "software opera web browser j",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.11"
          },
          {
            "_id": null,
            "model": "project openssl i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "nonstop server h06.25",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.302"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.19.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3.5"
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition sp1 x86-enterprise",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.04"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.0.1-73"
          },
          {
            "_id": null,
            "model": "power systems 350.b0",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "_id": null,
            "model": "openpages grc platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.5.3"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.13"
          },
          {
            "_id": null,
            "model": "database 11g release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "211.2.0.2"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.20"
          },
          {
            "_id": null,
            "model": "windows vista edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "x64"
          },
          {
            "_id": null,
            "model": "enterprise linux for sap server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "_id": null,
            "model": "security appscan standard",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.00"
          },
          {
            "_id": null,
            "model": "meeting exchange sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "project openssl c",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "project openssl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "1.0.2"
          },
          {
            "_id": null,
            "model": "project openssl beta2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "system management homepage b",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.0.2.77"
          },
          {
            "_id": null,
            "model": "java se sr9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.0"
          },
          {
            "_id": null,
            "model": "linux mips",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "11.0.696.68"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "760.30"
          },
          {
            "_id": null,
            "model": "nonstop server j06.07.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "message networking sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "linux enterprise server for vmware sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "_id": null,
            "model": "project openssl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.3"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.549.0"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.013"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "8.50"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.13"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.207"
          },
          {
            "_id": null,
            "model": "jdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "project openssl c",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.1"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "350.80"
          },
          {
            "_id": null,
            "model": "nonstop server j06.08.04",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "rational appscan standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0.1"
          },
          {
            "_id": null,
            "model": "flex system cmm 1.40.2q",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.06"
          },
          {
            "_id": null,
            "model": "enterprise server x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "5"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.0.1"
          },
          {
            "_id": null,
            "model": "jdk 07",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "cosminexus developer\u0027s kit for java (windows(x6",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-50-01"
          },
          {
            "_id": null,
            "model": "tv",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.4"
          },
          {
            "_id": null,
            "model": "nonstop server h06.24",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "access manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "novell",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "nonstop server h06.16.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus developer professional for plug-in",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "nonstop server h06.18.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "meeting exchange",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.223"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.23"
          },
          {
            "_id": null,
            "model": "windows server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "cosminexus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "jdk update13",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "software opera web browser linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.0.3"
          },
          {
            "_id": null,
            "model": "windows server r2 datacenter edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "13"
          },
          {
            "_id": null,
            "model": "windows server gold x64-enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "nonstop server h06.19.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "windows for itanium-based systems sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "7"
          },
          {
            "_id": null,
            "model": "proactive contact",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "project openssl 1.0.0e",
            "scope": null,
            "trust": 0.3,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server enterprise edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "773.00"
          },
          {
            "_id": null,
            "model": "project openssl beta1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "project openssl a",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.8"
          },
          {
            "_id": null,
            "model": "esx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "vmware",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "10.0.648.128"
          },
          {
            "_id": null,
            "model": "jrockit r28.0.1",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk update19",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "openpages grc platform",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.1"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.0"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7.3"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.15"
          },
          {
            "_id": null,
            "model": "windows server r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "software opera web browser beta build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.2012981"
          },
          {
            "_id": null,
            "model": "project openssl c",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.222"
          },
          {
            "_id": null,
            "model": "windows server for x64-based systems r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.2"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition sp1 beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20031"
          },
          {
            "_id": null,
            "model": "windows server r2 datacenter sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "linux i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "11.04"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.14.20"
          },
          {
            "_id": null,
            "model": "cosminexus studio standard edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9"
          },
          {
            "_id": null,
            "model": "windows xp tablet pc edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "project openssl l",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "web server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "02-05"
          },
          {
            "_id": null,
            "model": "enterprise linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "6"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "8.53"
          },
          {
            "_id": null,
            "model": "cms server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "16.1"
          },
          {
            "_id": null,
            "model": "windows server r2 itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20080"
          },
          {
            "_id": null,
            "model": "windows xp professional sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server for itanium-based systems sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "nonstop server j06.11.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "java se sr9-fp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.0"
          },
          {
            "_id": null,
            "model": "business server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "collax",
            "version": "5.5.11"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.72"
          },
          {
            "_id": null,
            "model": "windows server standard edition sp2 hpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008-"
          },
          {
            "_id": null,
            "model": "linux mandrake",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2011"
          },
          {
            "_id": null,
            "model": "update manager update",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "vmware",
            "version": "5.01"
          },
          {
            "_id": null,
            "model": "ucosminexus developer professional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.551.1"
          },
          {
            "_id": null,
            "model": "glassfish enterprise server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "2.1.1"
          },
          {
            "_id": null,
            "model": "windows vista ultimate",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.10"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.20"
          },
          {
            "_id": null,
            "model": "virtualcenter",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "vmware",
            "version": "2.5"
          },
          {
            "_id": null,
            "model": "jrockit r27.6.7",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "rational appscan enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.01"
          },
          {
            "_id": null,
            "model": "nonstop server h06.20.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "vcenter",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "vmware",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "12"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.20"
          },
          {
            "_id": null,
            "model": "jre 10-b03",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "jrockit r27.6.0",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.61"
          },
          {
            "_id": null,
            "model": "hp-ux b.11.31",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "java se",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "project openssl e",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "rational appscan enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "350.90"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7.1"
          },
          {
            "_id": null,
            "model": "messaging storage server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "nonstop server j06.05.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "jre 07",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "nonstop server j06.07.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "project openssl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "windows server gold",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "aura session manager sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3.4"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.53"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.10.8"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.20.1"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.71"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.0.1.104"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.220"
          },
          {
            "_id": null,
            "model": "java ibm 31-bit sdk for z/os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "aura session manager sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20080"
          },
          {
            "_id": null,
            "model": "project openssl k",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.16.4"
          },
          {
            "_id": null,
            "model": "cosminexus developer professional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "aura application enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.10"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.0.1.73"
          },
          {
            "_id": null,
            "model": "project openssl beta3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "java se sr5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "rsa bsafe ssl-c",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "emc",
            "version": "2.8.5"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "cosminexus http server windows",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00-11"
          },
          {
            "_id": null,
            "model": "aura application enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.1"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "760.00"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.102"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.8"
          },
          {
            "_id": null,
            "model": "nonstop server h06.21.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition sp1 x64-enterprise",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.10"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.20"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.16"
          },
          {
            "_id": null,
            "model": "java se",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7"
          },
          {
            "_id": null,
            "model": "software opera web browser beta1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.60"
          },
          {
            "_id": null,
            "model": "software opera web browser win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.0.5"
          },
          {
            "_id": null,
            "model": "ucosminexus service platform aix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00(64)"
          },
          {
            "_id": null,
            "model": "web server windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "04-10-03(x64)"
          },
          {
            "_id": null,
            "model": "ipod touch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "0"
          },
          {
            "_id": null,
            "model": "linux enterprise software development kit sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.8.179"
          },
          {
            "_id": null,
            "model": "web server aix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "03-00"
          },
          {
            "_id": null,
            "model": "software opera web browser beta1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.00"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "770.20"
          },
          {
            "_id": null,
            "model": "power systems 350.d0",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.224"
          },
          {
            "_id": null,
            "model": "business server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "collax",
            "version": "5.5.12"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.61"
          },
          {
            "_id": null,
            "model": "flex system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop optional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "enterprise linux hpc node supplementary",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop supplementary client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.308"
          },
          {
            "_id": null,
            "model": "ip office application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.8.5"
          },
          {
            "_id": null,
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.10.6"
          },
          {
            "_id": null,
            "model": "jdk update17",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.4"
          },
          {
            "_id": null,
            "model": "rational appscan enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6"
          },
          {
            "_id": null,
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.1"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "cosminexus http server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00-13"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.12"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.54"
          },
          {
            "_id": null,
            "model": "nonstop server j06.05.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser .6win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "openpages grc platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "sdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.221"
          },
          {
            "_id": null,
            "model": "sdk 02",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "linux ia-32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "11"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.201"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.11"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "11.0.672.2"
          },
          {
            "_id": null,
            "model": "jdk 0 03",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "10"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.1"
          },
          {
            "_id": null,
            "model": "jdk update20",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "windows server standard edition r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.62"
          },
          {
            "_id": null,
            "model": "proactive contact",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.61"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.237"
          },
          {
            "_id": null,
            "model": "linux enterprise desktop sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "nonstop server h06.17.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "773.02"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "770.31"
          },
          {
            "_id": null,
            "model": "nonstop server j06.08.03",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "aura conferencing standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "nonstop server j06.10.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista home premium 64-bit edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp embedded sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server datacenter edition itanium sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "nonstop server h06.17.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "freeflow print server 91.d2.32",
            "scope": null,
            "trust": 0.3,
            "vendor": "xerox",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "cosminexus server web edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "linux enterprise for sap applications sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.2.6"
          },
          {
            "_id": null,
            "model": "rsa bsafe micro edition suite",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "emc",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "windows vista enterprise 64-bit edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server sp1 storage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "project openssl 1.0.0d",
            "scope": null,
            "trust": 0.3,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "meeting exchange streaming server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "processing kit for xml",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "rsa bsafe micro edition suite",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "emc",
            "version": "3.2.6"
          },
          {
            "_id": null,
            "model": "java se sr11 pf1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "lotus domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.3"
          },
          {
            "_id": null,
            "model": "web server hp-ux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "04-00"
          },
          {
            "_id": null,
            "model": "groupware suite",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "collax",
            "version": "5.5.11"
          },
          {
            "_id": null,
            "model": "cosminexus studio web edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.213"
          },
          {
            "_id": null,
            "model": "nonstop server h06.15.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "voice portal sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.06"
          },
          {
            "_id": null,
            "model": "cosminexus application server standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.1"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.15"
          },
          {
            "_id": null,
            "model": "windows server standard edition itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "nonstop server j06.14",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk 01",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "760.40"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.70"
          },
          {
            "_id": null,
            "model": "windows vista ultimate 64-bit edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ucosminexus application server standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "openpages grc platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.5"
          },
          {
            "_id": null,
            "model": "jre 1.5.0 09-b03",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "system integrated management module",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "x2"
          },
          {
            "_id": null,
            "model": "windows vista enterprise 64-bit edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "0"
          },
          {
            "_id": null,
            "model": "nonstop server h06.26",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "rsa bsafe ssl-j",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "emc",
            "version": "5.1.1"
          },
          {
            "_id": null,
            "model": "windows server web edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.218"
          },
          {
            "_id": null,
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.10"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7.2"
          },
          {
            "_id": null,
            "model": "nonstop server j06.13",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "aura communication manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.14"
          },
          {
            "_id": null,
            "model": "linux mandrake x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2010.1"
          },
          {
            "_id": null,
            "model": "project openssl j",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.8"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "770.21"
          },
          {
            "_id": null,
            "model": "nonstop server j06.09.04",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "web server windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "03-10"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7.3"
          },
          {
            "_id": null,
            "model": "meeting exchange sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "messaging application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.6.156"
          },
          {
            "_id": null,
            "model": "windows for itanium-based systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "70"
          },
          {
            "_id": null,
            "model": "ir",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.10"
          },
          {
            "_id": null,
            "model": "project openssl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "esx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "vmware",
            "version": "3.5"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.45"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.7"
          },
          {
            "_id": null,
            "model": "software opera web browser mac",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "nonstop server j06.05.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "cosminexus server standard edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "rational policy tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0.1"
          },
          {
            "_id": null,
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.216"
          },
          {
            "_id": null,
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.1"
          },
          {
            "_id": null,
            "model": "rsa bsafe micro edition suite",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "emc",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "rational policy tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "_id": null,
            "model": "rsa bsafe micro edition suite",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "emc",
            "version": "3.2"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.19"
          },
          {
            "_id": null,
            "model": "project openssl beta5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "1.0.0"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition itanium sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server gold enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows vista sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.6"
          },
          {
            "_id": null,
            "model": "websphere datapower soa appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.8.1"
          },
          {
            "_id": null,
            "model": "jrockit r27.1.0",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "project openssl a",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "fusion middleware 11g release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "111.1.16"
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "0"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.23.1"
          },
          {
            "_id": null,
            "model": "websphere multichannel bank transformation toolkit",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1"
          },
          {
            "_id": null,
            "model": "vplex geosynchrony",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "emc",
            "version": "5.2.1"
          },
          {
            "_id": null,
            "model": "software opera web browser b",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.11"
          },
          {
            "_id": null,
            "model": "enterprise linux supplementary server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "_id": null,
            "model": "voice portal",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "jrockit r28.1.4",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.2.9.1"
          },
          {
            "_id": null,
            "model": "aura sip enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "6.1.0-103"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.12.201"
          },
          {
            "_id": null,
            "model": "windows xp media center edition sp3",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.16"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.01"
          },
          {
            "_id": null,
            "model": "rational appscan standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.12"
          },
          {
            "_id": null,
            "model": "enterprise linux workstation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "nonstop server j06.09.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server enterprise edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "_id": null,
            "model": "jrockit r27.6.6",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "nonstop server j06.06.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "project openssl 0.9.8q",
            "scope": null,
            "trust": 0.3,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp media center edition",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7.4"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.012"
          },
          {
            "_id": null,
            "model": "software opera web browser beta2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.00"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.17"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.15.3"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "760.11"
          },
          {
            "_id": null,
            "model": "aura presence services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "lotus domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.2"
          },
          {
            "_id": null,
            "model": "bladecenter advanced management module",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.2.127"
          },
          {
            "_id": null,
            "model": "java sdk sr13 fp11",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.50"
          },
          {
            "_id": null,
            "model": "cms server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "16.0"
          },
          {
            "_id": null,
            "model": "windows server gold storage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "jrockit r27.6.8",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.02"
          },
          {
            "_id": null,
            "model": "windows xp mode",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "70"
          },
          {
            "_id": null,
            "model": "software opera web browser win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "windows vista home premium sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.310"
          },
          {
            "_id": null,
            "model": "cosminexus developer\u0027s kit for java (windows(x6",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00-06"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.62"
          },
          {
            "_id": null,
            "model": "web server hp-ux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "04-10-01"
          },
          {
            "_id": null,
            "model": "software opera web browser win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.0.1"
          },
          {
            "_id": null,
            "model": "windows server r2 sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008x64"
          },
          {
            "_id": null,
            "model": "callpilot",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "project openssl 0.9.8g",
            "scope": null,
            "trust": 0.3,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "linux enterprise software development kit sp1 for sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "_id": null,
            "model": "voice portal sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.11"
          },
          {
            "_id": null,
            "model": "windows vista home basic 64-bit edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "cosminexus studio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "windows server standard edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "java se sr12-fp5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "openjdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openjdk",
            "version": "6"
          },
          {
            "_id": null,
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.202"
          },
          {
            "_id": null,
            "model": "windows vista business sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server standard edition gold hpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008-"
          },
          {
            "_id": null,
            "model": "windows server gold x64-standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "web server windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "04-00-05"
          },
          {
            "_id": null,
            "model": "jre beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "software opera web browser win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "5.10"
          },
          {
            "_id": null,
            "model": "java sdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.15.5"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "350.30"
          },
          {
            "_id": null,
            "model": "jrockit r27.6.4",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "ip office application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "aura system manager sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "7.1.1"
          },
          {
            "_id": null,
            "model": "messaging storage server sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "14.0.835.186"
          },
          {
            "_id": null,
            "model": "windows server sp2 storage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.015"
          },
          {
            "_id": null,
            "model": "windows vista enterprise sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "cosminexus application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "linux mandrake",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2010.1"
          },
          {
            "_id": null,
            "model": "sdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.219"
          },
          {
            "_id": null,
            "model": "java se sr10",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "9.0.597.94"
          },
          {
            "_id": null,
            "model": "cosminexus http server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00-10"
          },
          {
            "_id": null,
            "model": "nonstop server h06.20.03",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "proactive contact",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.2"
          },
          {
            "_id": null,
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "java se sr11",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "windows server standard edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008x64"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "770.10"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "7.2"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.80"
          },
          {
            "_id": null,
            "model": "ucosminexus service platform hp-ux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "freeflow print server 73.c5.11",
            "scope": null,
            "trust": 0.3,
            "vendor": "xerox",
            "version": null
          },
          {
            "_id": null,
            "model": "rsa bsafe ssl-j",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "emc",
            "version": "6.0.1"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.50"
          },
          {
            "_id": null,
            "model": "enterprise linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "5"
          },
          {
            "_id": null,
            "model": "web server windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "03-00"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "8.02"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.52"
          },
          {
            "_id": null,
            "model": "windows xp tablet pc edition",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows professional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "70"
          },
          {
            "_id": null,
            "model": "ucosminexus developer )",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "meeting exchange",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "10.0.648.204"
          },
          {
            "_id": null,
            "model": "project openssl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.8"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.5"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.551.0"
          },
          {
            "_id": null,
            "model": "tls",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.301"
          },
          {
            "_id": null,
            "model": "enterprise linux workstation optional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.90"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.00"
          },
          {
            "_id": null,
            "model": "rsa bsafe ssl-j",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "emc",
            "version": "5.1.2"
          },
          {
            "_id": null,
            "model": "project openssl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.4"
          },
          {
            "_id": null,
            "model": "jdk update23",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "12.0.742.112"
          },
          {
            "_id": null,
            "model": "linux enterprise server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.3"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.03"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "8.0.2"
          },
          {
            "_id": null,
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.10"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.10.7"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.6"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.51"
          },
          {
            "_id": null,
            "model": "jre 28",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "system management homepage b",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.10.186"
          },
          {
            "_id": null,
            "model": "firefox beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.62"
          },
          {
            "_id": null,
            "model": "project openssl d",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.8"
          },
          {
            "_id": null,
            "model": "windows server itanium sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "control",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "7.1.0"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20080"
          },
          {
            "_id": null,
            "model": "web server )",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "02-04"
          },
          {
            "_id": null,
            "model": "cosminexus http server linux",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00-12"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7.4"
          },
          {
            "_id": null,
            "model": "flex system cmm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.00"
          },
          {
            "_id": null,
            "model": "rsa bsafe micro edition suite",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "emc",
            "version": "4.0.3"
          },
          {
            "_id": null,
            "model": "project openssl 1.0.0b",
            "scope": null,
            "trust": 0.3,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.52"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "11.01"
          },
          {
            "_id": null,
            "model": "ucosminexus developer standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "web server 01-02-/d",
            "scope": null,
            "trust": 0.3,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "http server 12c",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "12.1.2"
          },
          {
            "_id": null,
            "model": "windows server r2 x64-enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.11"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "7.1.2"
          },
          {
            "_id": null,
            "model": "windows server gold",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "aura system manager sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "aura communication manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.4.143"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.15"
          },
          {
            "_id": null,
            "model": "project openssl f",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.8"
          },
          {
            "_id": null,
            "model": "java system application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "8.1"
          },
          {
            "_id": null,
            "model": "windows xp embedded sp3",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.60"
          },
          {
            "_id": null,
            "model": "windows vista ultimate 64-bit edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server datacenter edition release candidate",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "jdk 0 09",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "6.2.0-12"
          },
          {
            "_id": null,
            "model": "windows server r2 enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20080"
          },
          {
            "_id": null,
            "model": "hirdb for java",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.7"
          },
          {
            "_id": null,
            "model": "vcenter",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "vmware",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "proactive contact",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "jre 04",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.1"
          },
          {
            "_id": null,
            "model": "windows xp professional",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.20"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.300"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.021"
          },
          {
            "_id": null,
            "model": "rational policy tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "software opera web browser beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.50"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.51"
          },
          {
            "_id": null,
            "model": "enterprise linux server optional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.5.146"
          },
          {
            "_id": null,
            "model": "nonstop server j06.04.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.0.3"
          },
          {
            "_id": null,
            "model": "windows home premium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "70"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.46"
          },
          {
            "_id": null,
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.2"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.2"
          },
          {
            "_id": null,
            "model": "windows vista sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus primary server base",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.15.1"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.4"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7.5"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.22"
          },
          {
            "_id": null,
            "model": "windows server r2 enterprise edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "project openssl m",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.205"
          },
          {
            "_id": null,
            "model": "windows xp media center edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows starter",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "70"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.07"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.204"
          },
          {
            "_id": null,
            "model": "cosminexus http server hp-ux",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00-13"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "11.10"
          },
          {
            "_id": null,
            "model": "lotus domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "jdk update25",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "lotus domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1"
          },
          {
            "_id": null,
            "model": "java se sr13-fp11",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "project openssl j",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "windows server sp2 datacenter",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server standard edition gold standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008-"
          },
          {
            "_id": null,
            "model": "windows vista home basic sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "voice portal",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "aura system platform sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "aura sip enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.103"
          },
          {
            "_id": null,
            "model": "windows server standard edition sp2 storage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008-"
          },
          {
            "_id": null,
            "model": "jdk 1.6.0 01-b06",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.18.1"
          },
          {
            "_id": null,
            "model": "web server 02-04-/c",
            "scope": null,
            "trust": 0.3,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "cosminexus developer light",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "11.0.696.71"
          },
          {
            "_id": null,
            "model": "ucosminexus client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "windows server standard edition r2 sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "meeting exchange webportal",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "-6.0"
          },
          {
            "_id": null,
            "model": "aura application enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.1"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "12.0.742.91"
          },
          {
            "_id": null,
            "model": "software opera web browser beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.601"
          },
          {
            "_id": null,
            "model": "aura communication manager utility services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "web server solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "03-00"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.017"
          },
          {
            "_id": null,
            "model": "windows server r2 compute cluster",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.210"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": null,
            "trust": 0.3,
            "vendor": "gentoo",
            "version": null
          },
          {
            "_id": null,
            "model": "web server hp-ux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "03-00-01"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0.0 03",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista ultimate sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.227"
          },
          {
            "_id": null,
            "model": "project openssl k",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.309"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.214"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.19.4"
          },
          {
            "_id": null,
            "model": "sdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.224"
          },
          {
            "_id": null,
            "model": "ucosminexus service platform linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00(x64)"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.9"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "10"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.11"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7"
          },
          {
            "_id": null,
            "model": "windows server standard edition gold storage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008-"
          },
          {
            "_id": null,
            "model": "windows for x64-based systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "70"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.52"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.1"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.8"
          },
          {
            "_id": null,
            "model": "nonstop server h06.20.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "cosminexus developer no version",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.0.121"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "14.0.835.163"
          },
          {
            "_id": null,
            "model": "jdk update18",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.304"
          },
          {
            "_id": null,
            "model": "windows vista enterprise sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.11"
          },
          {
            "_id": null,
            "model": "nonstop server j06.09.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.305"
          },
          {
            "_id": null,
            "model": "windows xp professional sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.60"
          },
          {
            "_id": null,
            "model": "windows server r2 datacenter edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "iq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "tv",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.13.1"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.16"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.50"
          },
          {
            "_id": null,
            "model": "rsa bsafe micro edition suite",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "emc",
            "version": "3.2.4"
          },
          {
            "_id": null,
            "model": "nonstop server h06.18.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "cosminexus application server no version",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "websphere datapower soa appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "770.00"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.24.0"
          },
          {
            "_id": null,
            "model": "windows server r2 datacenter",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20080"
          },
          {
            "_id": null,
            "model": "windows vista home basic 64-bit edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "x64"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "760.10"
          },
          {
            "_id": null,
            "model": "project openssl 0.9.8f",
            "scope": null,
            "trust": 0.3,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "350.50"
          },
          {
            "_id": null,
            "model": "linux enterprise sdk sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "windows vista enterprise 64-bit edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.203"
          },
          {
            "_id": null,
            "model": "proactive contact",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.1.1"
          },
          {
            "_id": null,
            "model": "nonstop server h06.19.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server enterprise edition itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "windows vista home basic",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition sp1 x86-ultimate",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.7"
          },
          {
            "_id": null,
            "model": "aura application enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "web server aix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "04-00"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "freeflow print server 81.d0.73",
            "scope": null,
            "trust": 0.3,
            "vendor": "xerox",
            "version": null
          },
          {
            "_id": null,
            "model": "meeting exchange sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.208"
          },
          {
            "_id": null,
            "model": "project openssl b",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition itanium sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "software opera web browser beta3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.00"
          },
          {
            "_id": null,
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "_id": null,
            "model": "windows server standard edition sp1 beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20031"
          },
          {
            "_id": null,
            "model": "nonstop server j06.06.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "cms server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "15.0"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.12"
          },
          {
            "_id": null,
            "model": "jrockit r27.6.2",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.3"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.0.2-77"
          },
          {
            "_id": null,
            "model": "ucosminexus application server express",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-70"
          },
          {
            "_id": null,
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.8"
          },
          {
            "_id": null,
            "model": "web server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "03-00-01"
          },
          {
            "_id": null,
            "model": "aura system platform sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hp",
            "version": "7.2.1"
          },
          {
            "_id": null,
            "model": "simatic rf615r",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "siemens",
            "version": "3.2.1"
          },
          {
            "_id": null,
            "model": "windows vista edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "x64"
          },
          {
            "_id": null,
            "model": "windows server gold itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "jre 27",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "rational appscan standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.3"
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition sp1 x64-ultimate",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.209"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.226"
          },
          {
            "_id": null,
            "model": "windows server standard edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.014"
          },
          {
            "_id": null,
            "model": "cosminexus application server enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "nonstop server j06.12.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server enterprise edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "jrockit r27.6.9",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "project openssl 0.9.8r",
            "scope": null,
            "trust": 0.3,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server r2 storage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "power systems 350.a0",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "_id": null,
            "model": "simatic rf68xr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "siemens",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.011"
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition sp1 x64-home premium",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "nonstop server j06.09.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "jrockit r27.6.3",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.9"
          },
          {
            "_id": null,
            "model": "jdk update14",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "cosminexus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "project openssl beta4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "1.0.0"
          },
          {
            "_id": null,
            "model": "java se sr6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.0.1"
          },
          {
            "_id": null,
            "model": "windows server standard edition gold enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008-"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "tv",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3"
          },
          {
            "_id": null,
            "model": "meeting exchange sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "project openssl 0.9.8p",
            "scope": null,
            "trust": 0.3,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server standard edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "rsa bsafe micro edition suite",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "emc",
            "version": "4.0.2"
          },
          {
            "_id": null,
            "model": "ucosminexus developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "010"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.15-210"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.27"
          },
          {
            "_id": null,
            "model": "ucosminexus service architect",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "messaging application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5"
          },
          {
            "_id": null,
            "model": "windows server r2 sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "6.0.0.95"
          },
          {
            "_id": null,
            "model": "windows xp tablet pc edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus service platform messaging",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "voice portal sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.18"
          },
          {
            "_id": null,
            "model": "networks matrixssl",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "peersec",
            "version": "3.2.2"
          },
          {
            "_id": null,
            "model": "windows server standard edition gold",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008-"
          },
          {
            "_id": null,
            "model": "windows server r2 platfom sdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows vista ultimate sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "web server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "03-00-02"
          },
          {
            "_id": null,
            "model": "nonstop server j06.10.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "aura messaging",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.1"
          },
          {
            "_id": null,
            "model": "secure sockets layer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "windows ultimate",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "70"
          },
          {
            "_id": null,
            "model": "windows server standard edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "rsa bsafe micro edition suite",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "emc",
            "version": "3.2.5"
          },
          {
            "_id": null,
            "model": "aura sip enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "nonstop server h06.24.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.23"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "project openssl d",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "windows server r2 standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.60"
          },
          {
            "_id": null,
            "model": "messaging storage server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "websphere multichannel bank transformation toolkit",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.0.2"
          },
          {
            "_id": null,
            "model": "windows vista home basic 64-bit edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "connect build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "7.1.42985"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.10"
          },
          {
            "_id": null,
            "model": "web server 02-04-/a (windows(ip",
            "scope": null,
            "trust": 0.3,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.19.6"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition itanium sp1 beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20031"
          },
          {
            "_id": null,
            "model": "windows server for x64-based systems sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7.5"
          },
          {
            "_id": null,
            "model": "virtualcenter update 6b",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "vmware",
            "version": "2.5"
          },
          {
            "_id": null,
            "model": "project openssl a",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "simatic rf68xr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "siemens",
            "version": "3.2"
          },
          {
            "_id": null,
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "11.04"
          },
          {
            "_id": null,
            "model": "jre 1.5.0 09",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "project openssl f",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "cosminexus http server hp-ux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00-10"
          },
          {
            "_id": null,
            "model": "enterprise linux ws extras",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.6"
          },
          {
            "_id": null,
            "model": "windows xp home",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.10"
          },
          {
            "_id": null,
            "model": "windows server web edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "hp-ux b.11.11",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser 3win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "enterprise linux es extras",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "_id": null,
            "model": "openjdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openjdk",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.010"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.8"
          },
          {
            "_id": null,
            "model": "firefox beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.63"
          },
          {
            "_id": null,
            "model": "software opera web browser 2win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.0.64"
          },
          {
            "_id": null,
            "model": "windows server itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "8.01"
          },
          {
            "_id": null,
            "model": "windows xp service pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "30"
          },
          {
            "_id": null,
            "model": "nonstop server j06.08.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "freeflow print server 82.d1.44",
            "scope": null,
            "trust": 0.3,
            "vendor": "xerox",
            "version": null
          },
          {
            "_id": null,
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.2.8"
          },
          {
            "_id": null,
            "model": "communication server telephony manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "10003.0"
          },
          {
            "_id": null,
            "model": "project openssl 0.9.8l",
            "scope": null,
            "trust": 0.3,
            "vendor": "openssl",
            "version": null
          },
          {
            "_id": null,
            "model": "web server hp-ux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "03-10-09"
          },
          {
            "_id": null,
            "model": "windows server r2 datacenter",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server sp2 compute cluster",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "project openssl h",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.8"
          },
          {
            "_id": null,
            "model": "cosminexus developer\u0027s kit for java",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-50-01"
          },
          {
            "_id": null,
            "model": "software opera web browser win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.0.4"
          },
          {
            "_id": null,
            "model": "nonstop server h06.15.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "project openssl i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.8"
          },
          {
            "_id": null,
            "model": "cosminexus primary server base",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "740.21"
          },
          {
            "_id": null,
            "model": "sdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4.223"
          },
          {
            "_id": null,
            "model": "connect",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "8.1"
          },
          {
            "_id": null,
            "model": "web server hp-ux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "04-00-04"
          },
          {
            "_id": null,
            "model": "nonstop server h06.23",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "aura application enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.3"
          },
          {
            "_id": null,
            "model": "enterprise server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "5"
          },
          {
            "_id": null,
            "model": "simatic rf615r",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "siemens",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "java se sr7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.20"
          },
          {
            "_id": null,
            "model": "java se sr13-fp10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.63"
          },
          {
            "_id": null,
            "model": "windows xp professional edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "x64"
          },
          {
            "_id": null,
            "model": "business server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "1x8664"
          },
          {
            "_id": null,
            "model": "jdk update16",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "project openssl c",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.8"
          },
          {
            "_id": null,
            "model": "windows home premium sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "7-x64"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.14"
          },
          {
            "_id": null,
            "model": "nonstop server h06.22.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "groupware suite",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "collax",
            "version": "5.5.12"
          },
          {
            "_id": null,
            "model": "windows xp professional sp3",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.0.2.106"
          },
          {
            "_id": null,
            "model": "jrockit r28.1.3",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "_id": null,
            "model": "sdk .0 01",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.4"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7.1"
          },
          {
            "_id": null,
            "model": "windows vista home basic 64-bit edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "x64"
          },
          {
            "_id": null,
            "model": "lotus domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "5.12"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition release candidate",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.020"
          },
          {
            "_id": null,
            "model": "enterprise linux as for sap",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "_id": null,
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.1"
          },
          {
            "_id": null,
            "model": "flex system integrated management module",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2"
          },
          {
            "_id": null,
            "model": "nonstop server h06.19.03",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "760.41"
          },
          {
            "_id": null,
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.1"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.12.2"
          },
          {
            "_id": null,
            "model": "windows vista home basic 64-bit edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.05"
          },
          {
            "_id": null,
            "model": "cosminexus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "networks matrixssl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "peersec",
            "version": "3.2.1"
          },
          {
            "_id": null,
            "model": "websphere multichannel bank transformation toolkit",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "interactive response",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "windows for x64-based systems sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "7"
          },
          {
            "_id": null,
            "model": "vplex geosynchrony",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "emc",
            "version": "5.3"
          },
          {
            "_id": null,
            "model": "messaging application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "project openssl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.5"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.16.3"
          },
          {
            "_id": null,
            "model": "windows server r2 itanium sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "xcode",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.51"
          },
          {
            "_id": null,
            "model": "nonstop server h06.21.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.8"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7.3"
          },
          {
            "_id": null,
            "model": "software opera web browser win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "5.11"
          },
          {
            "_id": null,
            "model": "cosminexus client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.212"
          },
          {
            "_id": null,
            "model": "cosminexus http server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.206"
          },
          {
            "_id": null,
            "model": "cms server aux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "15.0"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "6.3"
          },
          {
            "_id": null,
            "model": "cosminexus http server windows",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00-12"
          },
          {
            "_id": null,
            "model": "nonstop server h06.19.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "web server windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "04-00"
          },
          {
            "_id": null,
            "model": "freeflow print server 93.e0.21c",
            "scope": null,
            "trust": 0.3,
            "vendor": "xerox",
            "version": null
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "350.10"
          },
          {
            "_id": null,
            "model": "simatic rf615r",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "siemens",
            "version": "3.2"
          },
          {
            "_id": null,
            "model": "proactive contact",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.1.2"
          },
          {
            "_id": null,
            "model": "linux i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "11.10"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.9"
          },
          {
            "_id": null,
            "model": "cosminexus http server linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "windows server r2 x64-standard",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "nonstop server j06.11.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "nonstop server h06.26.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "aura presence services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.1"
          },
          {
            "_id": null,
            "model": "linux enterprise server sp1 for sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "11.0.696.43"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.26"
          },
          {
            "_id": null,
            "model": "software opera web browser win32 beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "7.02"
          },
          {
            "_id": null,
            "model": "access manager sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "novell",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "ucosminexus developer hp-ux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00"
          },
          {
            "_id": null,
            "model": "websphere datapower soa appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.8.2"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.221"
          },
          {
            "_id": null,
            "model": "nonstop server j06.04.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.6.016"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.307"
          },
          {
            "_id": null,
            "model": "windows xp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jdk 1.5.0 07-b03",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.1"
          },
          {
            "_id": null,
            "model": "voice portal",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1.1"
          },
          {
            "_id": null,
            "model": "windows server r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.552.21"
          },
          {
            "_id": null,
            "model": "software opera web browser win32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.0.2"
          },
          {
            "_id": null,
            "model": "update manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "vmware",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.12.1"
          },
          {
            "_id": null,
            "model": "project openssl e",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.8"
          },
          {
            "_id": null,
            "model": "ucosminexus service platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "cosminexus http server linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00-10"
          },
          {
            "_id": null,
            "model": "software opera web browser linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "350.40"
          },
          {
            "_id": null,
            "model": "enterprise linux sap",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "nonstop server h06.20.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.19.5"
          },
          {
            "_id": null,
            "model": "software opera web browser beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.201"
          },
          {
            "_id": null,
            "model": "stenberg curl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "daniel",
            "version": "7.21.7"
          },
          {
            "_id": null,
            "model": "nonstop server j06.10.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "websphere multichannel bank transformation toolkit",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1"
          },
          {
            "_id": null,
            "model": "ucosminexus application server standard-r",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "0"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "9.21"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "8.0.550.0"
          },
          {
            "_id": null,
            "model": "windows vista enterprise",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus service platform windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hitachi",
            "version": "09-00(x64)"
          },
          {
            "_id": null,
            "model": "nonstop server h06.16.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "software opera web browser linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "6.0.2"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.1.3"
          },
          {
            "_id": null,
            "model": "voice portal",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "windows server sp2 enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "11.04"
          },
          {
            "_id": null,
            "model": "jdk update22",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10.61"
          },
          {
            "_id": null,
            "model": "software opera web browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "opera",
            "version": "10"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "760.20"
          },
          {
            "_id": null,
            "model": "windows xp media center edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "jdk update15",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "project openssl beta1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.7"
          },
          {
            "_id": null,
            "model": "communication server telephony manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "10004.0"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.8.2"
          },
          {
            "_id": null,
            "model": "system management homepage",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.0.2"
          },
          {
            "_id": null,
            "model": "power systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "730.91"
          },
          {
            "_id": null,
            "model": "xcode",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.4"
          },
          {
            "_id": null,
            "model": "freeflow print server 73.d2.33",
            "scope": null,
            "trust": 0.3,
            "vendor": "xerox",
            "version": null
          },
          {
            "_id": null,
            "model": "project openssl m",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "database 11g release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "111.1.0.7"
          },
          {
            "_id": null,
            "model": "chrome",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "google",
            "version": "10.0.648.205"
          },
          {
            "_id": null,
            "model": "project openssl b",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.2"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.2"
          },
          {
            "_id": null,
            "model": "nonstop server h06.25.01",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "project openssl j",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "openssl",
            "version": "0.9.6"
          },
          {
            "_id": null,
            "model": "windows server web edition sp1 beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20031"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.7.2"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#864643"
          },
          {
            "db": "BID",
            "id": "49778"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-3389"
          }
        ]
      },
      "credits": {
        "_id": null,
        "data": "Thai Duong and Juliano Rizzo, Wendy Parrington from United Utilities.",
        "sources": [
          {
            "db": "BID",
            "id": "49778"
          }
        ],
        "trust": 0.3
      },
      "cve": "CVE-2011-3389",
      "cvss": {
        "_id": null,
        "data": [
          {
            "cvssV2": [
              {
                "accessComplexity": "MEDIUM",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "nvd@nist.gov",
                "availabilityImpact": "NONE",
                "baseScore": 4.3,
                "confidentialityImpact": "PARTIAL",
                "exploitabilityScore": 8.6,
                "id": "CVE-2011-3389",
                "impactScore": 2.9,
                "integrityImpact": "NONE",
                "severity": "MEDIUM",
                "trust": 1.1,
                "vectorString": "AV:N/AC:M/Au:N/C:P/I:N/A:N",
                "version": "2.0"
              }
            ],
            "cvssV3": [],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2011-3389",
                "trust": 1.0,
                "value": "MEDIUM"
              },
              {
                "author": "CARNEGIE MELLON",
                "id": "VU#864643",
                "trust": 0.8,
                "value": "3.38"
              },
              {
                "author": "VULMON",
                "id": "CVE-2011-3389",
                "trust": 0.1,
                "value": "MEDIUM"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#864643"
          },
          {
            "db": "VULMON",
            "id": "CVE-2011-3389"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-3389"
          }
        ]
      },
      "description": {
        "_id": null,
        "data": "The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a \"BEAST\" attack. A vulnerability in the specification of the SSL 3.0 and TLS 1.0 protocols could allow an attacker to decrypt encrypted traffic. This will result in a false sense of security, and potentially result in the disclosure of sensitive information. \nHP System Management Homepage (SMH) v7.2.0 and earlier running on Linux and\nWindows. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nGentoo Linux Security Advisory                           GLSA 201111-02\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n                                            http://security.gentoo.org/\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\n Severity: Normal\n    Title: Oracle JRE/JDK: Multiple vulnerabilities\n     Date: November 05, 2011\n     Bugs: #340421, #354213, #370559, #387851\n       ID: 201111-02\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\nSynopsis\n========\n\nMultiple vulnerabilities have been found in the Oracle JRE/JDK,\nallowing attackers to cause unspecified impact. \n\nAffected packages\n=================\n\n    -------------------------------------------------------------------\n     Package              /     Vulnerable     /            Unaffected\n    -------------------------------------------------------------------\n  1  dev-java/sun-jre-bin        \u003c 1.6.0.29              \u003e= 1.6.0.29 *\n  2  app-emulation/emul-linux-x86-java\n                                 \u003c 1.6.0.29              \u003e= 1.6.0.29 *\n  3  dev-java/sun-jdk            \u003c 1.6.0.29              \u003e= 1.6.0.29 *\n    -------------------------------------------------------------------\n     NOTE: Packages marked with asterisks require manual intervention!\n    -------------------------------------------------------------------\n     3 affected packages\n    -------------------------------------------------------------------\n\nDescription\n===========\n\nMultiple vulnerabilities have been reported in the Oracle Java\nimplementation. Please review the CVE identifiers referenced below and\nthe associated Oracle Critical Patch Update Advisory for details. \n\nWorkaround\n==========\n\nThere is no known workaround at this time. \n\nResolution\n==========\n\nAll Oracle JDK 1.6 users should upgrade to the latest version:\n\n  # emerge --sync\n  # emerge --ask --oneshot --verbose \"\u003e=dev-java/sun-jdk-1.6.0.29\"\n\nAll Oracle JRE 1.6 users should upgrade to the latest version:\n\n  # emerge --sync\n  # emerge --ask --oneshot --verbose \"\u003e=dev-java/sun-jre-bin-1.6.0.29\"\n\nAll users of the precompiled 32-bit Oracle JRE 1.6 should upgrade to\nthe latest version:\n\n  # emerge --sync\n  # emerge -a -1 -v \"\u003e=app-emulation/emul-linux-x86-java-1.6.0.29\"\n\nNOTE: As Oracle has revoked the DLJ license for its Java\nimplementation, the packages can no longer be updated automatically. \nThis limitation is not present on a non-fetch restricted implementation\nsuch as dev-java/icedtea-bin. \n\nReferences\n==========\n\n[  1 ] CVE-2010-3541\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3541\n[  2 ] CVE-2010-3548\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3548\n[  3 ] CVE-2010-3549\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3549\n[  4 ] CVE-2010-3550\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3550\n[  5 ] CVE-2010-3551\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3551\n[  6 ] CVE-2010-3552\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3552\n[  7 ] CVE-2010-3553\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3553\n[  8 ] CVE-2010-3554\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3554\n[  9 ] CVE-2010-3555\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3555\n[ 10 ] CVE-2010-3556\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3556\n[ 11 ] CVE-2010-3557\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3557\n[ 12 ] CVE-2010-3558\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3558\n[ 13 ] CVE-2010-3559\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3559\n[ 14 ] CVE-2010-3560\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3560\n[ 15 ] CVE-2010-3561\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3561\n[ 16 ] CVE-2010-3562\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3562\n[ 17 ] CVE-2010-3563\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3563\n[ 18 ] CVE-2010-3565\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3565\n[ 19 ] CVE-2010-3566\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3566\n[ 20 ] CVE-2010-3567\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3567\n[ 21 ] CVE-2010-3568\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3568\n[ 22 ] CVE-2010-3569\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3569\n[ 23 ] CVE-2010-3570\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3570\n[ 24 ] CVE-2010-3571\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3571\n[ 25 ] CVE-2010-3572\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3572\n[ 26 ] CVE-2010-3573\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3573\n[ 27 ] CVE-2010-3574\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-3574\n[ 28 ] CVE-2010-4422\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4422\n[ 29 ] CVE-2010-4447\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4447\n[ 30 ] CVE-2010-4448\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4448\n[ 31 ] CVE-2010-4450\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4450\n[ 32 ] CVE-2010-4451\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4451\n[ 33 ] CVE-2010-4452\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4452\n[ 34 ] CVE-2010-4454\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4454\n[ 35 ] CVE-2010-4462\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4462\n[ 36 ] CVE-2010-4463\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4463\n[ 37 ] CVE-2010-4465\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4465\n[ 38 ] CVE-2010-4466\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4466\n[ 39 ] CVE-2010-4467\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4467\n[ 40 ] CVE-2010-4468\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4468\n[ 41 ] CVE-2010-4469\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4469\n[ 42 ] CVE-2010-4470\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4470\n[ 43 ] CVE-2010-4471\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4471\n[ 44 ] CVE-2010-4472\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4472\n[ 45 ] CVE-2010-4473\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4473\n[ 46 ] CVE-2010-4474\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4474\n[ 47 ] CVE-2010-4475\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4475\n[ 48 ] CVE-2010-4476\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2010-4476\n[ 49 ] CVE-2011-0802\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0802\n[ 50 ] CVE-2011-0814\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0814\n[ 51 ] CVE-2011-0815\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0815\n[ 52 ] CVE-2011-0862\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0862\n[ 53 ] CVE-2011-0863\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0863\n[ 54 ] CVE-2011-0864\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0864\n[ 55 ] CVE-2011-0865\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0865\n[ 56 ] CVE-2011-0867\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0867\n[ 57 ] CVE-2011-0868\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0868\n[ 58 ] CVE-2011-0869\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0869\n[ 59 ] CVE-2011-0871\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0871\n[ 60 ] CVE-2011-0872\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0872\n[ 61 ] CVE-2011-0873\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-0873\n[ 62 ] CVE-2011-3389\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3389\n[ 63 ] CVE-2011-3516\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3516\n[ 64 ] CVE-2011-3521\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3521\n[ 65 ] CVE-2011-3544\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3544\n[ 66 ] CVE-2011-3545\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3545\n[ 67 ] CVE-2011-3546\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3546\n[ 68 ] CVE-2011-3547\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3547\n[ 69 ] CVE-2011-3548\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3548\n[ 70 ] CVE-2011-3549\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3549\n[ 71 ] CVE-2011-3550\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3550\n[ 72 ] CVE-2011-3551\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3551\n[ 73 ] CVE-2011-3552\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3552\n[ 74 ] CVE-2011-3553\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3553\n[ 75 ] CVE-2011-3554\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3554\n[ 76 ] CVE-2011-3555\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3555\n[ 77 ] CVE-2011-3556\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3556\n[ 78 ] CVE-2011-3557\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3557\n[ 79 ] CVE-2011-3558\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3558\n[ 80 ] CVE-2011-3560\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3560\n[ 81 ] CVE-2011-3561\n       http://nvd.nist.gov/nvd.cfm?cvename=CVE-2011-3561\n\nAvailability\n============\n\nThis GLSA and any updates to it are available for viewing at\nthe Gentoo Security Website:\n\n http://security.gentoo.org/glsa/glsa-201111-02.xml\n\nConcerns?\n=========\n\nSecurity is a primary focus of Gentoo Linux and ensuring the\nconfidentiality and security of our users\u0027 machines is of utmost\nimportance to us. Any security concerns should be addressed to\nsecurity@gentoo.org or alternatively, you may file a bug at\nhttps://bugs.gentoo.org. \n\nLicense\n=======\n\nCopyright 2011 Gentoo Foundation, Inc; referenced text\nbelongs to its owner(s). \n\nThe contents of this document are licensed under the\nCreative Commons - Attribution / Share Alike license. \n\nhttp://creativecommons.org/licenses/by-sa/2.5\n. ----------------------------------------------------------------------\n\nSC World Congress, New York, USA, 16 November 2011\nVisit the Secunia booth (#203) and discover how you can improve your handling of third party programs:\n\nhttp://secunia.com/resources/events/sc_2011/ \n\n----------------------------------------------------------------------\n\nTITLE:\nIBM Lotus Domino SSL/TLS Initialization Vector Selection Weakness\n\nSECUNIA ADVISORY ID:\nSA46791\n\nVERIFY ADVISORY:\nSecunia.com\nhttp://secunia.com/advisories/46791/\nCustomer Area (Credentials Required)\nhttps://ca.secunia.com/?page=viewadvisory\u0026vuln_id=46791\n\nRELEASE DATE:\n2011-11-11\n\nDISCUSS ADVISORY:\nhttp://secunia.com/advisories/46791/#comments\n\nAVAILABLE ON SITE AND IN CUSTOMER AREA:\n * Last Update\n * Popularity\n * Comments\n * Criticality Level\n * Impact\n * Where\n * Solution Status\n * Operating System / Software\n * CVE Reference(s)\n\nhttp://secunia.com/advisories/46791/\n\nONLY AVAILABLE IN CUSTOMER AREA:\n * Authentication Level\n * Report Reliability\n * Secunia PoC\n * Secunia Analysis\n * Systems Affected\n * Approve Distribution\n * Remediation Status\n * Secunia CVSS Score\n * CVSS\n\nhttps://ca.secunia.com/?page=viewadvisory\u0026vuln_id=46791\n\nONLY AVAILABLE WITH SECUNIA CSI AND SECUNIA PSI:\n * AUTOMATED SCANNING\n\nhttp://secunia.com/vulnerability_scanning/personal/\nhttp://secunia.com/vulnerability_scanning/corporate/wsus_sccm_3rd_third_party_patching/\n\nDESCRIPTION:\nA weakness has been reported in IBM Lotus Domino, which can be\nexploited by malicious people to disclose potentially sensitive\ninformation and hijack a user\u0027s session. \n\nSOLUTION:\nAs a workaround enable RC4 encryption (please see the vendor\u0027s\nadvisory for details). \n\nPROVIDED AND/OR DISCOVERED BY:\nThai Duong and Juliano Rizzo\n\nORIGINAL ADVISORY:\nIBM:\nhttp://www.ibm.com/support/docview.wss?uid=swg21568229\n\nIBM ISS X-Force:\nhttp://xforce.iss.net/xforce/xfdb/70069\n\nOTHER REFERENCES:\nFurther details available in Customer Area:\nhttp://secunia.com/vulnerability_intelligence/\n\nDEEP LINKS:\nFurther details available in Customer Area:\nhttp://secunia.com/vulnerability_intelligence/\n\nEXTENDED DESCRIPTION:\nFurther details available in Customer Area:\nhttp://secunia.com/vulnerability_intelligence/\n\nEXTENDED SOLUTION:\nFurther details available in Customer Area:\nhttp://secunia.com/vulnerability_intelligence/\n\nEXPLOIT:\nFurther details available in Customer Area:\nhttp://secunia.com/vulnerability_intelligence/\n\n----------------------------------------------------------------------\n\nAbout:\nThis Advisory was delivered by Secunia as a free service to help\nprivate users keeping their systems up to date against the latest\nvulnerabilities. \n\nSubscribe:\nhttp://secunia.com/advisories/secunia_security_advisories/\n\nDefinitions: (Criticality, Where etc.)\nhttp://secunia.com/advisories/about_secunia_advisories/\n\n\nPlease Note:\nSecunia recommends that you verify all advisories you receive by\nclicking the link. \nSecunia NEVER sends attached files with advisories. \nSecunia does not advise people to install third party patches, only\nuse those supplied by the vendor. \n\n----------------------------------------------------------------------\n\nUnsubscribe: Secunia Security Advisories\nhttp://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org\n\n----------------------------------------------------------------------\n\n\n. \n \n A flaw was found in the way the Python SimpleHTTPServer module\n generated directory listings. An attacker able to upload a file\n with a specially-crafted name to a server could possibly perform a\n cross-site scripting (XSS) attack against victims visiting a listing\n page generated by SimpleHTTPServer, for a directory containing\n the crafted file (if the victims were using certain web browsers)\n (CVE-2011-4940). \n \n A race condition was found in the way the Python distutils module\n set file permissions during the creation of the .pypirc file. If a\n local user had access to the home directory of another user who is\n running distutils, they could use this flaw to gain access to that\n user\u0026#039;s .pypirc file, which can contain usernames and passwords for\n code repositories (CVE-2011-4944). \n \n A flaw was found in the way the Python SimpleXMLRPCServer module\n handled clients disconnecting prematurely. \n \n Hash table collisions CPU usage DoS for the embedded copy of expat\n (CVE-2012-0876). \n \n A denial of service flaw was found in the implementation of associative\n arrays (dictionaries) in Python. An attacker able to supply a large\n number of inputs to a Python application (such as HTTP POST request\n parameters sent to a web application) that are used as keys when\n inserting data into an array could trigger multiple hash function\n collisions, making array operations take an excessive amount of\n CPU time. To mitigate this issue, randomization has been added to\n the hash function to reduce the chance of an attacker successfully\n causing intentional collisions (CVE-2012-1150). \n \n The updated packages have been patched to correct these issues.  The verification\n of md5 checksums and GPG signatures is performed automatically for you.  You can obtain the\n GPG public key of the Mandriva Security Team by executing:\n\n  gpg --recv-keys --keyserver pgp.mit.edu 0x22458A98\n\n You can view other update advisories for Mandriva Linux at:\n\n  http://www.mandriva.com/security/advisories\n\n If you want to report vulnerabilities, please contact\n\n  security_(at)_mandriva.com\n _______________________________________________________________________\n\n Type Bits/KeyID     Date       User ID\n pub  1024D/22458A98 2000-07-10 Mandriva Security Team\n  \u003csecurity*mandriva.com\u003e\n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\niD8DBQFP4cpsmqjQ0CJFipgRAns2AKCf6yQzu1AwCPejS+sWBnfY717HLQCeIefL\nNJQbNxUlwmb1w7aFZIt0vdU=\n=3Vdc\n-----END PGP SIGNATURE-----\n. ==========================================================================\nUbuntu Security Notice USN-1263-1\nNovember 16, 2011\n\nicedtea-web, openjdk-6, openjdk-6b18 vulnerabilities\n==========================================================================\n\nA security issue affects these releases of Ubuntu and its derivatives:\n\n- Ubuntu 11.10\n- Ubuntu 11.04\n- Ubuntu 10.10\n- Ubuntu 10.04 LTS\n\nSummary:\n\nMultiple OpenJDK 6 and IcedTea-Web vulnerabilities have been fixed. \n\nSoftware Description:\n- icedtea-web: A web browser plugin to execute Java applets\n- openjdk-6: Open Source Java implementation\n- openjdk-6b18: Open Source Java implementation\n\nDetails:\n\nDeepak Bhole discovered a flaw in the Same Origin Policy (SOP)\nimplementation in the IcedTea web browser plugin. This could allow a\nremote attacker to open connections to certain hosts that should\nnot be permitted. (CVE-2011-3377)\n\nJuliano Rizzo and Thai Duong discovered that the block-wise AES\nencryption algorithm block-wise as used in TLS/SSL was vulnerable to\na chosen-plaintext attack. This could allow a remote attacker to view\nconfidential data. (CVE-2011-3389)\n\nIt was discovered that a type confusion flaw existed in the in\nthe Internet Inter-Orb Protocol (IIOP) deserialization code. A\nremote attacker could use this to cause an untrusted application\nor applet to execute arbitrary code by deserializing malicious\ninput. (CVE-2011-3521)\n\nIt was discovered that the Java scripting engine did not perform\nSecurityManager checks. This could allow a remote attacker to cause\nan untrusted application or applet to execute arbitrary code with\nthe full privileges of the JVM. (CVE-2011-3544)\n\nIt was discovered that the InputStream class used a global buffer to\nstore input bytes skipped. An attacker could possibly use this to gain\naccess to sensitive information. (CVE-2011-3547)\n\nIt was discovered that a vulnerability existed in the AWTKeyStroke\nclass. A remote attacker could cause an untrusted application or applet\nto execute arbitrary code. (CVE-2011-3548)\n\nIt was discovered that an integer overflow vulnerability existed\nin the TransformHelper class in the Java2D implementation. A remote\nattacker could use this cause a denial of service via an application\nor applet crash or possibly execute arbitrary code. (CVE-2011-3551)\n\nIt was discovered that the default number of available UDP sockets for\napplications running under SecurityManager restrictions was set too\nhigh. A remote attacker could use this with a malicious application or\napplet exhaust the number of available UDP sockets to cause a denial\nof service for other applets or applications running within the same\nJVM. (CVE-2011-3552)\n\nIt was discovered that Java API for XML Web Services (JAX-WS) could\nincorrectly expose a stack trace. (CVE-2011-3553)\n\nIt was discovered that the unpacker for pack200 JAR files did not\nsufficiently check for errors. An attacker could cause a denial of\nservice or possibly execute arbitrary code through a specially crafted\npack200 JAR file. (CVE-2011-3554)\n\nIt was discovered that the RMI registration implementation did not\nproperly restrict privileges of remotely executed code. A remote\nattacker could use this to execute code with elevated privileges. \n(CVE-2011-3556, CVE-2011-3557)\n\nIt was discovered that the HotSpot VM could be made to crash, allowing\nan attacker to cause a denial of service or possibly leak sensitive\ninformation. (CVE-2011-3558)\n\nIt was discovered that the HttpsURLConnection class did not\nproperly perform SecurityManager checks in certain situations. This\ncould allow a remote attacker to bypass restrictions on HTTPS\nconnections. (CVE-2011-3560)\n\nUpdate instructions:\n\nThe problem can be corrected by updating your system to the following\npackage versions:\n\nUbuntu 11.10:\n  icedtea-6-jre-cacao             6b23~pre11-0ubuntu1.11.10\n  icedtea-6-jre-jamvm             6b23~pre11-0ubuntu1.11.10\n  icedtea-netx                    1.1.3-1ubuntu1.1\n  icedtea-plugin                  1.1.3-1ubuntu1.1\n  openjdk-6-jre                   6b23~pre11-0ubuntu1.11.10\n  openjdk-6-jre-headless          6b23~pre11-0ubuntu1.11.10\n  openjdk-6-jre-lib               6b23~pre11-0ubuntu1.11.10\n  openjdk-6-jre-zero              6b23~pre11-0ubuntu1.11.10\n\nUbuntu 11.04:\n  icedtea-6-jre-cacao             6b22-1.10.4-0ubuntu1~11.04.1\n  icedtea-6-jre-jamvm             6b22-1.10.4-0ubuntu1~11.04.1\n  icedtea-netx                    1.1.1-0ubuntu1~11.04.2\n  icedtea-plugin                  1.1.1-0ubuntu1~11.04.2\n  openjdk-6-jre                   6b22-1.10.4-0ubuntu1~11.04.1\n  openjdk-6-jre-headless          6b22-1.10.4-0ubuntu1~11.04.1\n  openjdk-6-jre-lib               6b22-1.10.4-0ubuntu1~11.04.1\n  openjdk-6-jre-zero              6b22-1.10.4-0ubuntu1~11.04.1\n\nUbuntu 10.10:\n  icedtea-6-jre-cacao             6b20-1.9.10-0ubuntu1~10.10.2\n  openjdk-6-demo                  6b20-1.9.10-0ubuntu1~10.10.2\n  openjdk-6-jdk                   6b20-1.9.10-0ubuntu1~10.10.2\n  openjdk-6-jre                   6b20-1.9.10-0ubuntu1~10.10.2\n  openjdk-6-jre-headless          6b20-1.9.10-0ubuntu1~10.10.2\n  openjdk-6-jre-lib               6b20-1.9.10-0ubuntu1~10.10.2\n  openjdk-6-jre-zero              6b20-1.9.10-0ubuntu1~10.10.2\n\nUbuntu 10.04 LTS:\n  icedtea-6-jre-cacao             6b20-1.9.10-0ubuntu1~10.04.2\n  icedtea6-plugin                 6b20-1.9.10-0ubuntu1~10.04.2\n  openjdk-6-demo                  6b20-1.9.10-0ubuntu1~10.04.2\n  openjdk-6-jre                   6b20-1.9.10-0ubuntu1~10.04.2\n  openjdk-6-jre-headless          6b20-1.9.10-0ubuntu1~10.04.2\n  openjdk-6-jre-lib               6b20-1.9.10-0ubuntu1~10.04.2\n  openjdk-6-jre-zero              6b20-1.9.10-0ubuntu1~10.04.2\n\nAfter a standard system update you need to restart any Java applications\nor applets to make all the necessary changes. -----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA1\n\n\nESA-2012-032: RSA BSAFE\\xae Micro Edition Suite Security Update for BEAST (Browser Exploit Against SSL/TLS) attacks\n\nEMC Identifier: ESA-2012-032\n\nCVE Identifier: CVE-2011-3389\n\nSeverity Rating: CVSS v2 Base Score: 4.3 (AV:N/AC:M/Au:N/C:P/I:N/A:N)\n\n\nAffected Products:\n\nAll versions of RSA BSAFE Micro Edition Suite prior to 4.0, all platforms\n\n\nUnaffected Products:\n\nRSA BSAFE Micro Edition Suite 4.0 and higher\n\n\nSummary:\n\nRSA BSAFE Micro Edition Suite contains updates designed to prevent BEAST attacks (CVE-2011-3389)\n\n\n\nDetails:\n\nThere is a known vulnerability in SSLv3 and TLS v1.0 to do with how the Initialization Vector (IV) is generated. For symmetric key algorithms in CBC mode, the IV for the first record is generated using keys and secrets set during the SSL or TLS handshake. All subsequent records are encrypted using the ciphertext block from the previous record as the IV. With symmetric key encryption in CBC mode, plain text encrypted with the same IV and key generates the same cipher text, which is why having a variable IV is important. \n\nThe BEAST exploit uses this SSLv3 and TLS v1.0 vulnerability by allowing an attacker to observe the last ciphertext block, which is the IV, then replace this with an IV of their choice, inject some of their own plain text data, and when this new IV is used to encrypt the data, the attacker can guess the plain text data one byte at a time. \n\n\n\nRecommendation:\n\nThe best way to help prevent this attack is to use TLS v1.1 or higher. The vulnerability to do with IV generation was fixed in TLS v1.1 (released in 2006) so implementations using only TLS v1.1 or v1.2 are engineered to be secure against the BEAST exploit. However, support for these higher level protocols is limited to a smaller number of applications, so supporting only TLS v1.1 or v1.2 might cause interoperability issues. \n\nA second solution is to limit the negotiated cipher suites to exclude those that do not require symmetric key algorithms in CBC mode. However, this substantially restricts the number of cipher suites that can be negotiated. That is, only cipher suites with NULL encryption or cipher suites with streaming encryption algorithms (the RC4 algorithm) could be negotiated, which might result in reduced security. \n\nFor customers who cannot or should not implement either of these two methods, RSA BSAFE Micro Edition Suite 4.0 introduces a new feature called first block splitting. First block splitting prevents the BEAST exploit by introducing unknown data into the encryption scheme prior to the attackers inserted plain text data. This is done as follows: \n\n\\x951. The first plain text block to be encrypted is split into two blocks. The first block contains the first byte of the data, the second block contains the rest. \n\\x952. A MAC is generated from the one byte of data, the MAC key, and an increasing counter. This MAC is included in the first block. \n\\x953. The one byte of data, along with the MAC, is encrypted and becomes the IV for the next block. Because the IV is now essentially random data, it is impossible for an attacker to predict it and replace it with one of their own. \nTo implement first block splitting in RSA BSAFE Micro Edition Suite 4.0, either for an SSL context or SSL object, call R_SSL_CTX_set_options_by_type() or R_SSL_set_options_by_type() respectively, with the SSL_OP_TYPE_SECURITY option type and the SSL_OP_SPLIT_FIRST_FRAGMENT identifier. \n\nFor more information about these functions and identifiers, see the RSA BSAFE Micro Edition Suite API Reference Guide. \n\n\n\nSeverity Rating:\n\nFor an explanation of Severity Ratings, refer to the Knowledge Base Article, \\x93Security Advisories Severity Rating\\x94 at https://knowledge.rsasecurity.com/scolcms/knowledge.aspx?solution=a46604. RSA recommends all customers take into account both the base score and any relevant temporal and environmental scores which may impact the potential severity associated with particular security vulnerability. \n\n\nObtaining Documentation:\n\nTo obtain RSA documentation, log on to RSA SecurCare Online at https://knowledge.rsasecurity.com and click Products in the top navigation menu. Select the specific product whose documentation you want to obtain. Scroll to the section for the product version that you want and click the set link. \n\n\n\nGetting Support and Service:\n\nFor customers with current maintenance contracts, contact your local RSA Customer Support center with any additional questions regarding this RSA SecurCare Note. For contact telephone numbers or e-mail addresses, log on to RSA SecurCare Online at https://knowledge.rsasecurity.com, click Help \u0026 Contact, and then click the Contact Us - Phone tab or the Contact Us - Email tab. \n\n\nGeneral Customer Support Information:\n\nhttp://www.rsa.com/node.aspx?id=1264\n\n\nRSA SecurCare Online:\n\nhttps://knowledge.rsasecurity.com\n\n\nEOPS Policy:\n\nRSA has a defined End of Primary Support policy associated with all major versions. Please refer to the link below for additional details. \nhttp://www.rsa.com/node.aspx?id=2575\n\n\nSecurCare Online Security Advisories\n\nRSA, The Security Division of EMC, distributes SCOL Security Advisories in order to bring to the attention of users of the affected RSA products important security information. RSA recommends that all users determine the applicability of this information to their individual situations and take appropriate action. The information set forth herein is provided \"as is\" without warranty of any kind. RSA disclaim all warranties, either express or implied, including the warranties of merchantability, fitness for a particular purpose, title and non-infringement. In no event shall RSA or its suppliers be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages, even if RSA or its suppliers have been advised of the possibility of such damages. Some states do not allow the exclusion or limitation of liability for consequential or incidental damages so the foregoing limitation may not apply. \n\n\nAbout RSA SecurCare Notes \u0026 Security Advisories Subscription\n\nRSA SecurCare Notes \u0026 Security Advisories are targeted e-mail messages that RSA sends you based on the RSA product family you currently use. If you\\x92d like to stop receiving RSA SecurCare Notes \u0026 Security Advisories, or if you\\x92d like to change which RSA product family Notes \u0026 Security Advisories you currently receive, log on to RSA SecurCare Online at https://knowledge.rsasecurity.com/scolcms/help.aspx?_v=view3. Following the instructions on the page, remove the check mark next to the RSA product family whose Notes \u0026 Security Advisories you no longer want to receive. Click the Submit button to save your selection. \n\n\nEMC Product Security Response Center\n\nSecurity_Alert@EMC.COM\n\nhttp://www.emc.com/contact-us/contact/product-security-response-center.html\n\n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1.4.12 (Cygwin)\n\niEYEARECAAYFAlBKOMwACgkQtjd2rKp+ALw1HQCfezG65rzhhtvVQAFkXzXQmthr\nCc8An3CJlTmuxBfF1dHt/NvQgKED9eR4\n=++hy\n-----END PGP SIGNATURE-----\n. The Common Vulnerabilities and Exposures project identifies the\nfollowing problems:\n\nCVE-2011-3389\n\n   This update enables OpenSSL workarounds against the \"BEAST\" attack. \n   Additional information can be found in the Curl advisory:\n   http://curl.haxx.se/docs/adv_20120124B.html\n\nCVE-2012-0036\n\n   Dan Fandrich discovered that Curl performs insufficient sanitising\n   when extracting the file path part of an URL. \n\nFor the oldstable distribution (lenny), this problem has been fixed in\nversion 7.18.2-8lenny6. \n\nFor the stable distribution (squeeze), this problem has been fixed in\nversion 7.21.0-2.1+squeeze1. \n\nFor the unstable distribution (sid), this problem has been fixed in\nversion 7.24.0-1. \n\nWe recommend that you upgrade your curl packages. \nCharter: http://lists.grok.org.uk/full-disclosure-charter.html\nHosted and sponsored by Secunia - http://secunia.com/\n. -----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA1\n\n=====================================================================\n                   Red Hat Security Advisory\n\nSynopsis:          Critical: java-1.5.0-ibm security update\nAdvisory ID:       RHSA-2012:0508-01\nProduct:           Red Hat Enterprise Linux Extras\nAdvisory URL:      https://rhn.redhat.com/errata/RHSA-2012-0508.html\nIssue date:        2012-04-23\nCVE Names:         CVE-2011-3389 CVE-2011-3557 CVE-2011-3560 \n                   CVE-2011-3563 CVE-2012-0498 CVE-2012-0499 \n                   CVE-2012-0501 CVE-2012-0502 CVE-2012-0503 \n                   CVE-2012-0505 CVE-2012-0506 CVE-2012-0507 \n=====================================================================\n\n1. Summary:\n\nUpdated java-1.5.0-ibm packages that fix several security issues are now\navailable for Red Hat Enterprise Linux 5 and 6 Supplementary. \n\nThe Red Hat Security Response Team has rated this update as having critical\nsecurity impact. \n\n2. Relevant releases/architectures:\n\nRed Hat Enterprise Linux Desktop Supplementary (v. 5) - i386, x86_64\nRed Hat Enterprise Linux Desktop Supplementary (v. 6) - i386, x86_64\nRed Hat Enterprise Linux HPC Node Supplementary (v. 6) - x86_64\nRed Hat Enterprise Linux Server Supplementary (v. 5) - i386, ppc, s390x, x86_64\nRed Hat Enterprise Linux Server Supplementary (v. 6) - i386, ppc64, s390x, x86_64\nRed Hat Enterprise Linux Workstation Supplementary (v. 6) - i386, x86_64\n\n3. Description:\n\nThe IBM 1.5.0 Java release includes the IBM Java 2 Runtime Environment and\nthe IBM Java 2 Software Development Kit. \n\nThis update fixes several vulnerabilities in the IBM Java 2 Runtime\nEnvironment and the IBM Java 2 Software Development Kit. Detailed\nvulnerability descriptions are linked from the IBM \"Security alerts\" page,\nlisted in the References section. (CVE-2011-3389, CVE-2011-3557,\nCVE-2011-3560, CVE-2011-3563, CVE-2012-0498, CVE-2012-0499, CVE-2012-0501,\nCVE-2012-0502, CVE-2012-0503, CVE-2012-0505, CVE-2012-0506, CVE-2012-0507)\n\nAll users of java-1.5.0-ibm are advised to upgrade to these updated\npackages, containing the IBM 1.5.0 SR13-FP1 Java release. All running\ninstances of IBM Java must be restarted for this update to take effect. \n\n4. Solution:\n\nBefore applying this update, make sure all previously-released errata\nrelevant to your system have been applied. \n\nThis update is available via the Red Hat Network. Details on how to\nuse the Red Hat Network to apply this update are available at\nhttps://access.redhat.com/knowledge/articles/11258\n\n5. Bugs fixed (http://bugzilla.redhat.com/):\n\n737506 - CVE-2011-3389 HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)\n745379 - CVE-2011-3560 OpenJDK: missing checkSetFactory calls in HttpsURLConnection (JSSE, 7096936)\n745464 - CVE-2011-3557 OpenJDK: RMI registry privileged code execution (RMI, 7083012)\n788624 - CVE-2012-0501 OpenJDK: off-by-one bug in ZIP reading code (JRE, 7118283)\n788976 - CVE-2012-0503 OpenJDK: unrestricted use of TimeZone.setDefault() (i18n, 7110687)\n788994 - CVE-2012-0507 OpenJDK: AtomicReferenceArray insufficient array type check (Concurrency, 7082299)\n789295 - CVE-2011-3563 OpenJDK: JavaSound incorrect bounds check (Sound, 7088367)\n789297 - CVE-2012-0502 OpenJDK: KeyboardFocusManager focus stealing (AWT, 7110683)\n789299 - CVE-2012-0505 OpenJDK: incomplete info in the deserialization exception (Serialization, 7110700)\n789300 - CVE-2012-0506 OpenJDK: mutable repository identifiers (CORBA, 7110704)\n790720 - CVE-2012-0498 Oracle JDK: unspecified vulnerability fixed in 6u31 and 7u3 (2D)\n790722 - CVE-2012-0499 Oracle JDK: unspecified vulnerability fixed in 6u31 and 7u3 (2D)\n\n6. Package List:\n\nRed Hat Enterprise Linux Desktop Supplementary (v. 5):\n\ni386:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-accessibility-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.i386.rpm\n\nx86_64:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.x86_64.rpm\njava-1.5.0-ibm-accessibility-1.5.0.13.1-1jpp.1.el5.x86_64.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.x86_64.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.x86_64.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.x86_64.rpm\njava-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.x86_64.rpm\n\nRed Hat Enterprise Linux Server Supplementary (v. 5):\n\ni386:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-accessibility-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.i386.rpm\n\nppc:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.ppc.rpm\njava-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.ppc64.rpm\njava-1.5.0-ibm-accessibility-1.5.0.13.1-1jpp.1.el5.ppc.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.ppc.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.ppc64.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.ppc.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.ppc64.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.ppc.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.ppc64.rpm\njava-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.1.el5.ppc.rpm\njava-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.1.el5.ppc.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.ppc.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.ppc64.rpm\n\ns390x:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.s390.rpm\njava-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.s390x.rpm\njava-1.5.0-ibm-accessibility-1.5.0.13.1-1jpp.1.el5.s390x.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.s390.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.s390x.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.s390.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.s390x.rpm\njava-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.1.el5.s390.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.s390.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.s390x.rpm\n\nx86_64:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-1.5.0.13.1-1jpp.1.el5.x86_64.rpm\njava-1.5.0-ibm-accessibility-1.5.0.13.1-1jpp.1.el5.x86_64.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.1.el5.x86_64.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.1.el5.x86_64.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.1.el5.x86_64.rpm\njava-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.i386.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.1.el5.x86_64.rpm\n\nRed Hat Enterprise Linux Desktop Supplementary (v. 6):\n\ni386:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\n\nx86_64:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\n\nRed Hat Enterprise Linux HPC Node Supplementary (v. 6):\n\nx86_64:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\n\nRed Hat Enterprise Linux Server Supplementary (v. 6):\n\ni386:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\n\nppc64:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.ppc64.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.ppc64.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.ppc.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.ppc64.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.ppc64.rpm\njava-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.2.el6_2.ppc.rpm\njava-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.2.el6_2.ppc.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.ppc64.rpm\n\ns390x:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.s390x.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.s390x.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.s390.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.s390x.rpm\njava-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.2.el6_2.s390.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.s390x.rpm\n\nx86_64:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\n\nRed Hat Enterprise Linux Workstation Supplementary (v. 6):\n\ni386:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-jdbc-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-plugin-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\n\nx86_64:\njava-1.5.0-ibm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-demo-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.i686.rpm\njava-1.5.0-ibm-devel-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-javacomm-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\njava-1.5.0-ibm-src-1.5.0.13.1-1jpp.2.el6_2.x86_64.rpm\n\nThese packages are GPG signed by Red Hat for security.  Our key and\ndetails on how to verify the signature are available from\nhttps://access.redhat.com/security/team/key/#package\n\n7. References:\n\nhttps://www.redhat.com/security/data/cve/CVE-2011-3389.html\nhttps://www.redhat.com/security/data/cve/CVE-2011-3557.html\nhttps://www.redhat.com/security/data/cve/CVE-2011-3560.html\nhttps://www.redhat.com/security/data/cve/CVE-2011-3563.html\nhttps://www.redhat.com/security/data/cve/CVE-2012-0498.html\nhttps://www.redhat.com/security/data/cve/CVE-2012-0499.html\nhttps://www.redhat.com/security/data/cve/CVE-2012-0501.html\nhttps://www.redhat.com/security/data/cve/CVE-2012-0502.html\nhttps://www.redhat.com/security/data/cve/CVE-2012-0503.html\nhttps://www.redhat.com/security/data/cve/CVE-2012-0505.html\nhttps://www.redhat.com/security/data/cve/CVE-2012-0506.html\nhttps://www.redhat.com/security/data/cve/CVE-2012-0507.html\nhttps://access.redhat.com/security/updates/classification/#critical\nhttp://www.ibm.com/developerworks/java/jdk/alerts/\n\n8. Contact:\n\nThe Red Hat security contact is \u003csecalert@redhat.com\u003e.  More contact\ndetails at https://access.redhat.com/security/team/contact/\n\nCopyright 2012 Red Hat, Inc. -----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA1\n\nAPPLE-SA-2012-09-19-2 OS X Mountain Lion v10.8.2, OS X Lion v10.7.5 and\nSecurity Update 2012-004\n\nOS X Mountain Lion v10.8.2, OS X Lion v10.7.5 and Security Update\n2012-004 are now available and address the following:\n\nApache\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8,\nOS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4\nImpact:  Multiple vulnerabilities in Apache\nDescription:  Apache is updated to version 2.2.22 to address several\nvulnerabilities, the most serious of which may lead to a denial of\nservice. Further information is available via the Apache web site at\nhttp://httpd.apache.org/. This issue does not affect OS X Mountain\nLion systems. \nCVE-ID\nCVE-2011-3368\nCVE-2011-3607\nCVE-2011-4317\nCVE-2012-0021\nCVE-2012-0031\nCVE-2012-0053\n\nBIND\nAvailable for:  OS X Lion v10.7 to v10.7.4,\nOS X Lion Server v10.7 to v10.7.4\nImpact:  A remote attacker may be able to cause a denial of service\nin systems configured to run BIND as a DNS nameserver\nDescription:  A reachable assertion issue existed in the handling of\nDNS records. This issue was addressed by updating to BIND 9.7.6-P1. \nThis issue does not affect OS X Mountain Lion systems. \nCVE-ID\nCVE-2011-4313\n\nBIND\nAvailable for:  OS X Lion v10.7 to v10.7.4,\nOS X Lion Server v10.7 to v10.7.4,\nOS X Mountain Lion v10.8 and v10.8.1\nImpact:  A remote attacker may be able to cause a denial of service,\ndata corruption, or obtain sensitive information from process memory\nin systems configured to run BIND as a DNS nameserver\nDescription:  A memory management issue existed in the handling of\nDNS records. This issue was addressed by updating to BIND 9.7.6-P1 on\nOS X Lion systems, and BIND 9.8.3-P1 on OS X Mountain Lion systems. \nCVE-ID\nCVE-2012-1667\n\nCoreText\nAvailable for:  OS X Lion v10.7 to v10.7.4,\nOS X Lion Server v10.7 to v10.7.4\nImpact:  Applications that use CoreText may be vulnerable to an\nunexpected application termination or arbitrary code execution\nDescription:  A bounds checking issue existed in the handling of text\nglyphs, which may lead to out of bounds memory reads or writes. This\nissue was addressed through improved bounds checking. This issue does\nnot affect Mac OS X v10.6 or OS X Mountain Lion systems. \nCVE-ID\nCVE-2012-3716 : Jesse Ruderman of Mozilla Corporation\n\nData Security\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8,\nOS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4,\nOS X Mountain Lion v10.8 and v10.8.1\nImpact:  An attacker with a privileged network position may intercept\nuser credentials or other sensitive information\nDescription:  TrustWave, a trusted root CA, has issued, and\nsubsequently revoked, a sub-CA certificate from one of its trusted\nanchors. This sub-CA facilitated the interception of communications\nsecured by Transport Layer Security (TLS). This update adds the\ninvolved sub-CA certificate to OS X\u0027s list of untrusted certificates. \n\nDirectoryService\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8\nImpact:  If the DirectoryService Proxy is used, a remote attacker may\ncause a denial of service or arbitrary code execution\nDescription:  A buffer overflow existed in the DirectoryService\nProxy. This issue was addressed through improved bounds checking. \nThis issue does not affect OS X Lion and Mountain Lion systems. \nCVE-ID\nCVE-2012-0650 : aazubel working with HP\u0027s Zero Day Initiative\n\nImageIO\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8,\nOS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4\nImpact:  Viewing a maliciously crafted PNG image may lead to an\nunexpected application termination or arbitrary code execution\nDescription:  Multiple memory corruption issues existed in libpng\u0027s\nhandling of PNG images. These issues were addressed through improved\nvalidation of PNG images. These issues do not affect OS X Mountain\nLion systems. \nCVE-ID\nCVE-2011-3026 : Juri Aedla\nCVE-2011-3048\n\nImageIO\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8,\nOS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4\nImpact:  Viewing a maliciously crafted TIFF image may lead to an\nunexpected application termination or arbitrary code execution\nDescription:  An integer overflow issue existed in libTIFF\u0027s handling\nof TIFF images. This issue was addressed through improved validation\nof TIFF images. This issue does not affect OS X Mountain Lion\nsystems. \nCVE-ID\nCVE-2012-1173 : Alexander Gavrun working with HP\u0027s Zero Day\nInitiative\n\nInstaller\nAvailable for:  OS X Lion v10.7 to v10.7.4,\nOS X Lion Server v10.7 to v10.7.4\nImpact:  Remote admins and persons with physical access to the system\nmay obtain account information\nDescription:  The fix for CVE-2012-0652 in OS X Lion 10.7.4 prevented\nuser passwords from being recorded in the system log, but did not\nremove the old log entries. This issue was addressed by deleting log\nfiles that contained passwords. This issue does not affect Mac OS X\n10.6 or OS X Mountain Lion systems. \nCVE-ID\nCVE-2012-0652\n\nInternational Components for Unicode\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8,\nOS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4\nImpact:  Applications that use ICU may be vulnerable to an unexpected\napplication termination or arbitrary code execution\nDescription:  A stack buffer overflow existed in the handling of ICU\nlocale IDs. This issue was addressed through improved bounds\nchecking. This issue does not affect OS X Mountain Lion systems. \nCVE-ID\nCVE-2011-4599\n\nKernel\nAvailable for:  OS X Lion v10.7 to v10.7.4,\nOS X Lion Server v10.7 to v10.7.4\nImpact:  A malicious program could bypass sandbox restrictions\nDescription:  A logic issue existed in the handling of debug system\ncalls. This may allow a malicious program to gain code execution in\nother programs with the same user privileges. This issue was\naddressed by disabling handling of addresses in PT_STEP and\nPT_CONTINUE. This issue does not affect OS X Mountain Lion systems. \nCVE-ID\nCVE-2012-0643 : iOS Jailbreak Dream Team\n\nLoginWindow\nAvailable for:  OS X Mountain Lion v10.8 and v10.8.1\nImpact:  A local user may be able to obtain other user\u0027s login\npasswords\nDescription:  A user-installed input method could intercept password\nkeystrokes from Login Window or Screen Saver Unlock. This issue was\naddressed by preventing user-installed methods from being used when\nthe system is handling login information. \nCVE-ID\nCVE-2012-3718 : An anonymous researcher\n\nMail\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8,\nOS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4\nImpact:  Viewing an e-mail message may lead to execution of web\nplugins\nDescription:  An input validation issue existed in Mail\u0027s handling of\nembedded web plugins. This issue was addressed by disabling third-\nparty plug-ins in Mail. This issue does not affect OS X Mountain Lion\nsystems. \nCVE-ID\nCVE-2012-3719 : Will Dormann of the CERT/CC\n\nMobile Accounts\nAvailable for:  OS X Mountain Lion v10.8 and v10.8.1\nImpact:  A user with access to the contents of a mobile account may\nobtain the account password\nDescription:  Creating a mobile account saved a hash of the password\nin the account, which was used to login when the mobile account was\nused as an external account. The password hash could be used to\ndetermine the user\u0027s password. This issue was addressed by creating\nthe password hash only if external accounts are enabled on the system\nwhere the mobile account is created. \nCVE-ID\nCVE-2012-3720 : Harald Wagener of Google, Inc. \n\nPHP\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8,\nOS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4,\nOS X Mountain Lion v10.8 and v10.8.1\nImpact:  Multiple vulnerabilities in PHP\nDescription:  \u003ePHP is updated to version 5.3.15 to address multiple\nvulnerabilities, the most serious of which may lead to arbitrary code\nexecution. Further information is available via the PHP web site at\nhttp://www.php.net\nCVE-ID\nCVE-2012-0831\nCVE-2012-1172\nCVE-2012-1823\nCVE-2012-2143\nCVE-2012-2311\nCVE-2012-2386\nCVE-2012-2688\n\nPHP\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8,\nOS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4\nImpact:  PHP scripts which use libpng may be vulnerable to an\nunexpected application termination or arbitrary code execution\nDescription:  A memory corruption issue existed in the handling of\nPNG files. This issue was addressed by updating PHP\u0027s copy of libpng\nto version 1.5.10. This issue does not affect OS X Mountain Lion\nsystems. \nCVE-ID\nCVE-2011-3048\n\nProfile Manager\nAvailable for:  OS X Lion Server v10.7 to v10.7.4\nImpact:  An unauthenticated user could enumerate managed devices\nDescription:  An authentication issue existed in the Device\nManagement private interface. This issue was addressed by removing\nthe interface. This issue does not affect OS X Mountain Lion\nsystems. \nCVE-ID\nCVE-2012-3721 : Derick Cassidy of XEquals Corporation\n\nQuickLook\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8,\nOS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4\nImpact:  Viewing a maliciously crafted .pict file may lead to an\nunexpected application termination or arbitrary code execution\nDescription:  A memory corruption issue existed in the handling of\n.pict files. This issue was addressed through improved validation of\n.pict files. This issue does not affect OS X Mountain Lion systems. \nCVE-ID\nCVE-2012-0671 : Rodrigo Rubira Branco (twitter.com/bsdaemon) from the\nQualys Vulnerability \u0026 Malware Research Labs (VMRL)\n\nQuickTime\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8,\nOS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4\nImpact:  Viewing a maliciously crafted movie file may lead to an\nunexpected application termination or arbitrary code execution\nDescription:  An integer overflow existed in QuickTime\u0027s handling of\nsean atoms. This issue was addressed through improved bounds\nchecking. This issue does not affect OS X Mountain Lion systems. \nCVE-ID\nCVE-2012-0670 : Tom Gallagher (Microsoft) and Paul Bates (Microsoft)\nworking with HP\u0027s Zero Day Initiative\n\nQuickTime\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8,\nOS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4\nImpact:  Viewing a maliciously crafted movie file may lead to an\nunexpected application termination or arbitrary code execution\nDescription:  An uninitialized memory access existed in the handling\nof Sorenson encoded movie files. This issue was addressed through\nimproved memory initialization. This issue does not affect OS X\nMountain Lion systems. \nCVE-ID\nCVE-2012-3722 : Will Dormann of the CERT/CC\n\nQuickTime\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8,\nOS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4\nImpact:  Viewing a maliciously crafted movie file may lead to an\nunexpected application termination or arbitrary code execution\nDescription:  A buffer overflow existed in the handling of RLE\nencoded movie files. This issue was addressed through improved bounds\nchecking. This issue does not affect OS X Mountain Lion systems. \nCVE-ID\nCVE-2012-0668 : Luigi Auriemma working with HP\u0027s Zero Day Initiative\n\nRuby\nAvailable for:  Mac OS X 10.6.8, Mac OS X Server 10.6.8,\nOS X Lion v10.7 to v10.7.4, OS X Lion Server v10.7 to v10.7.4\nImpact:  An attacker may be able to decrypt data protected by SSL\nDescription:  There are known attacks on the confidentiality of SSL\n3.0 and TLS 1.0 when a cipher suite uses a block cipher in CBC mode. \nThe Ruby OpenSSL module disabled the \u0027empty fragment\u0027 countermeasure\nwhich prevented these attacks. This issue was addressed by enabling\nempty fragments. This issue does not affect OS X Mountain Lion\nsystems. \nCVE-ID\nCVE-2011-3389\n\nUSB\nAvailable for:  OS X Lion v10.7 to v10.7.4,\nOS X Lion Server v10.7 to v10.7.4\nImpact:  Attaching a USB device may lead to an unexpected system\ntermination or arbitrary code execution\nDescription:  A memory corruption issue existed in the handling of\nUSB hub descriptors. This issue was addressed through improved\nhandling of the bNbrPorts descriptor field. This issue does not\naffect OS X Mountain Lion systems. \nCVE-ID\nCVE-2012-3723 : Andy Davis of NGS Secure\n\nNote: OS X Mountain Lion v10.8.2 includes the content of\nSafari 6.0.1. For further details see \"About the security content\nof Safari 6.0.1\" at http://http//support.apple.com/kb/HT5502\n\n\nOS X Mountain Lion v10.8.2, OS X Lion v10.7.5 and Security Update\n2012-004 may be obtained from the Software Update pane in System\nPreferences, or Apple\u0027s Software Downloads web site:\nhttp://www.apple.com/support/downloads/\n\nThe Software Update utility will present the update that applies\nto your system configuration. Only one is needed, either\nOS X Mountain Lion v10.8.2, OS X Lion v10.7.5 or Security Update\n2012-004. \n\nFor OS X Mountain Lion v10.8.1\nThe download file is named: OSXUpd10.8.2.dmg\nIts SHA-1 digest is: d6779e1cc748b78af0207499383b1859ffbebe33\n\nFor OS X Mountain Lion v10.8\nThe download file is named: OSXUpdCombo10.8.2.dmg\nIts SHA-1 digest is: b08f10233d362e39f20b69f91d1d73f5e7b68a2c\n\nFor OS X Lion v10.7.4\nThe download file is named: MacOSXUpd10.7.5.dmg\nIts SHA-1 digest is: e0a9582cce9896938a7a541bd431862d93893532\n\nFor OS X Lion v10.7 and v10.7.3\nThe download file is named: MacOSXUpdCombo10.7.5.dmg\nIts SHA-1 digest is: f7a26b164fa10dae4fe646e57b01c34a619c8d9b\n\nFor OS X Lion Server v10.7.4\nThe download file is named: MacOSXServerUpd10.7.5.dmg\nIts SHA-1 digest is: a891b03bfb4eecb745c0c39a32f39960fdb6796a\n\nFor OS X Lion Server v10.7 and v10.7.3\nThe download file is named: MacOSXServerUpdCombo10.7.5.dmg\nIts SHA-1 digest is: df6e1748ab0a3c9e05c890be49d514673efd965e\n\nFor Mac OS X v10.6.8\nThe download file is named: SecUpd2012-004.dmg\nIts SHA-1 digest is: 5b136e29a871d41012f0c6ea1362d6210c8b4fb7\n\nFor Mac OS X Server v10.6.8\nThe download file is named: SecUpdSrvr2012-004.dmg\nIts SHA-1 digest is: 9b24496be15078e58a88537700f2f39c112e3b28\n\nInformation will also be posted to the Apple Security Updates\nweb site: http://support.apple.com/kb/HT1222\n\nThis message is signed with Apple\u0027s Product Security PGP key,\nand details are available at:\nhttps://www.apple.com/support/security/pgp/\n\n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG/MacGPG2 v2.0.17 (Darwin)\nComment: GPGTools - http://gpgtools.org\n\niQIcBAEBAgAGBQJQWhlbAAoJEPefwLHPlZEwwjwQAKrpQlZh1B2mkSTLxR7QZg6e\nQm7SmIZL9sjl5gQkTxoAvOGxJ8uRdYPlJ1IpyU/MbK0GqO53KmFSeKkwCnvLKMaW\npc6tiFaQ4zV4LEAwBAFEuqCsMyPEJqKDhYXl2cHQmWfAlrLCyCKfzGLy2mY2UnkE\nDQC2+ys70DChFv2GzyXlibBXAGMKDygJ5dVKynsi1ceZLYWbUJoGwlUtXPylBpnO\nQyGWXmEloPbhK6HJbKMNacuDdVcb26pvIeFiivkTSxPVlZ3ns2tAwEyvHrzA9O4n\n7rQ6jvfDbguOZmM5sPFvVKBw2GVDBNU+G3T8ouIXhk6Pjhr4in8VFCb8MIMLb8hm\n7YYn2z1TzKTNmUuYbwe6ukQvf57cPuW0bAvslbl6PgrzqorlNPU4rDoSvPrJx/RO\nBOYkcxfirevHDGibfkeqXPjL3h+bVrb1USZpAv+ZOAy0M89SHFcvMtpAhxnoGiV5\nw4EyKB+9Yi/CSAk2Ne3Y5kHH7/v3pWV68aJwhVirya7ex3vnJ+M+lRLKSm2BUjL3\n+9fykrJBDujFDXoCmK5CN5Wx36DSVZ4VO1h635crotudtcvd+LQ2VHma/Chav5wK\nq5SSllf4KEownpx6o/qTxpg5tcC4lvgTcsDHlYcNq2s8KTTjmOden8ar4h7M7QD2\nxyBfrQfG/dsif6jGHaot\n=8joH\n-----END PGP SIGNATURE-----\n. -----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA1\n\nNote: the current version of the following document is available here:\nhttps://h20566.www2.hp.com/portal/site/hpsc/public/kb/\ndocDisplay?docId=emr_na-c03316985\n\nSUPPORT COMMUNICATION - SECURITY BULLETIN\n\nDocument ID: c03316985\nVersion: 1\n\nHPSBUX02777 SSRT100854 rev.1 - HP-UX Running Java JRE and JDK, Remote Denial\nof Service (DoS), Unauthorized Modification and Disclosure of Information\n\nNOTICE: The information in this Security Bulletin should be acted upon as\nsoon as possible. \n\nRelease Date: 2012-05-15\nLast Updated: 2012-05-15\n\n- -----------------------------------------------------------------------------\n\nPotential Security Impact: Remote Denial of service, unauthorized\nmodification and disclosure of information\n\nSource: Hewlett-Packard Company, HP Software Security Response Team\n\nVULNERABILITY SUMMARY\nPotential security vulnerabilities have been identified in Java Runtime\nEnvironment (JRE) and Java Developer Kit (JDK) running on HP-UX. These\nvulnerabilities may allow remote Denial of Service (DoS), unauthorized\nmodification and disclosure of information. \n\nReferences: CVE-2010-4447, CVE-2010-4448, CVE-2010-4454, CVE-2010-4462,\nCVE-2010-4465, CVE-2010-4469, CVE-2010-4473, CVE-2010-4475, CVE-2010-4476,\nCVE-2011-0802, CVE-2011-0814, CVE-2011-0815, CVE-2011-0862, CVE-2011-0864,\nCVE-2011-0865, CVE-2011-0867, CVE-2011-0871, CVE-2011-3389, CVE-2011-3545,\nCVE-2011-3547, CVE-2011-3548, CVE-2011-3549, CVE-2011-3552, CVE-2011-3556,\nCVE-2011-3557, CVE-2011-3560, CVE-2011-3563, CVE-2012-0499, CVE-2012-0502,\nCVE-2012-0503, CVE-2012-0505, CVE-2012-0506\n\nSUPPORTED SOFTWARE VERSIONS*: ONLY impacted versions are listed. \n\nBACKGROUND\n\nCVSS 2.0 Base Metrics\n===========================================================\n  Reference              Base Vector             Base Score\nCVE-2010-4447    (AV:N/AC:M/Au:N/C:P/I:N/A:N)        4.3\nCVE-2010-4448    (AV:N/AC:H/Au:N/C:N/I:P/A:N)        2.6\nCVE-2010-4454    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2010-4462    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2010-4465    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2010-4469    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2010-4473    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2010-4475    (AV:N/AC:M/Au:N/C:P/I:N/A:N)        4.3\nCVE-2010-4476    (AV:N/AC:L/Au:N/C:N/I:N/A:P)        5.0\nCVE-2011-0802    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2011-0814    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2011-0815    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2011-0862    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2011-0864    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2011-0865    (AV:N/AC:H/Au:N/C:N/I:P/A:N)        2.6\nCVE-2011-0867    (AV:N/AC:L/Au:N/C:P/I:N/A:N)        5.0\nCVE-2011-0871    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2011-3389    (AV:N/AC:M/Au:N/C:P/I:N/A:N)        4.3\nCVE-2011-3545    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2011-3547    (AV:N/AC:L/Au:N/C:P/I:N/A:N)        5.0\nCVE-2011-3548    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2011-3549    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2011-3552    (AV:N/AC:H/Au:N/C:N/I:P/A:N)        2.6\nCVE-2011-3556    (AV:N/AC:L/Au:N/C:P/I:P/A:P)        7.5\nCVE-2011-3557    (AV:N/AC:M/Au:N/C:P/I:P/A:P)        6.8\nCVE-2011-3560    (AV:N/AC:L/Au:N/C:P/I:P/A:N)        6.4\nCVE-2011-3563    (AV:N/AC:L/Au:N/C:P/I:N/A:P)        6.4\nCVE-2012-0499    (AV:N/AC:L/Au:N/C:C/I:C/A:C)       10.0\nCVE-2012-0502    (AV:N/AC:L/Au:N/C:P/I:N/A:P)        6.4\nCVE-2012-0503    (AV:N/AC:L/Au:N/C:P/I:P/A:P)        7.5\nCVE-2012-0505    (AV:N/AC:L/Au:N/C:P/I:P/A:P)        7.5\nCVE-2012-0506    (AV:N/AC:M/Au:N/C:N/I:P/A:N)        4.3\n===========================================================\n             Information on CVSS is documented\n            in HP Customer Notice: HPSN-2008-002\n\nRESOLUTION\n\nHP is providing the following Java updates to resolve the vulnerabilities. \nThe updates are available from: http://www.hp.com/go/java\n\nThese issues are addressed in the following versions of the HP Java:\n\nHP-UX B.11.11 / SDK and JRE v1.4.2.28 or subsequent\n\nHP-UX B.11.23 / SDK and JRE v1.4.2.28 or subsequent\n\nHP-UX B.11.31 / SDK and JRE v1.4.2.28 or subsequent\n\nMANUAL ACTIONS: Yes - Update\n\nFor Java v1.4.2.27 and earlier, update to Java v1.4.2.28 or subsequent. \n\nPRODUCT SPECIFIC INFORMATION\n\nHP-UX Software Assistant:\nHP-UX Software Assistant is an enhanced application that replaces HP-UX\nSecurity Patch Check. It analyzes all HP-issued Security Bulletins and lists\nrecommended actions that may apply to a specific HP-UX system. It can also\ndownload patches and create a depot automatically. For more information see:\nhttps://www.hp.com/go/swa\n\nThe following text is for use by the HP-UX Software Assistant. \n\nAFFECTED VERSIONS\n\nHP-UX B.11.11\nHP-UX B.11.23\nHP-UX B.11.31\n===========\nJpi14.JPI14-COM\nJpi14.JPI14-COM-DOC\nJpi14.JPI14-IPF32\nJpi14.JPI14-PA11\nJdk14.JDK14-COM\nJdk14.JDK14-DEMO\nJdk14.JDK14-IPF32\nJdk14.JDK14-IPF64\nJdk14.JDK14-PA11\nJdk14.JDK14-PA20\nJdk14.JDK14-PA20W\nJdk14.JDK14-PNV2\nJdk14.JDK14-PWV2\nJre14.JRE14-COM\nJre14.JRE14-COM-DOC\nJre14.JRE14-IPF32\nJre14.JRE14-IPF32-HS\nJre14.JRE14-IPF64\nJre14.JRE14-IPF64-HS\nJre14.JRE14-PA11\nJre14.JRE14-PA11-HS\nJre14.JRE14-PA20\nJre14.JRE14-PA20-HS\nJre14.JRE14-PA20W\nJre14.JRE14-PA20W-HS\nJre14.JRE14-PNV2\nJre14.JRE14-PNV2-H\nJre14.JRE14-PWV2\nJre14.JRE14-PWV2-H\naction: install revision 1.4.2.28.00 or subsequent\n\nEND AFFECTED VERSIONS\n\nHISTORY\nVersion:1 (rev.1) - 15 May 2012 Initial release\n\nThird Party Security Patches: Third party security patches that are to be\ninstalled on systems running HP software products should be applied in\naccordance with the customer\u0027s patch management policy. \n\nSupport: For issues about implementing the recommendations of this Security\nBulletin, contact normal HP Services support channel.  For other issues about\nthe content of this Security Bulletin, send e-mail to security-alert@hp.com. \n\nReport: To report a potential security vulnerability with any HP supported\nproduct, send Email to: security-alert@hp.com\n\nSubscribe: To initiate a subscription to receive future HP Security Bulletin\nalerts via Email:\nhttp://h41183.www4.hp.com/signup_alerts.php?jumpid=hpsc_secbulletins\n\nSecurity Bulletin List: A list of HP Security Bulletins, updated\nperiodically, is contained in HP Security Notice HPSN-2011-001:\nhttps://h20566.www2.hp.com/portal/site/hpsc/public/kb/\ndocDisplay?docId=emr_na-c02964430\n\nSecurity Bulletin Archive: A list of recently released Security Bulletins is\navailable here:\nhttp://h20566.www2.hp.com/portal/site/hpsc/public/kb/secBullArchive/\n\nSoftware Product Category: The Software Product Category is represented in\nthe title by the two characters following HPSB. \n\n3C = 3COM\n3P = 3rd Party Software\nGN = HP General Software\nHF = HP Hardware and Firmware\nMP = MPE/iX\nMU = Multi-Platform Software\nNS = NonStop Servers\nOV = OpenVMS\nPI = Printing and Imaging\nPV = ProCurve\nST = Storage Software\nTU = Tru64 UNIX\nUX = HP-UX\n\nCopyright 2012 Hewlett-Packard Development Company, L.P. \nHewlett-Packard Company shall not be liable for technical or editorial errors\nor omissions contained herein. The\ninformation in this document is subject to change without notice. \nHewlett-Packard Company and the names of Hewlett-Packard products referenced\nherein are trademarks of Hewlett-Packard Company in the United States and\nother countries. Other product and company names mentioned herein may be\ntrademarks of their respective owners",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2011-3389"
          },
          {
            "db": "CERT/CC",
            "id": "VU#864643"
          },
          {
            "db": "BID",
            "id": "49778"
          },
          {
            "db": "VULMON",
            "id": "CVE-2011-3389"
          },
          {
            "db": "PACKETSTORM",
            "id": "123310"
          },
          {
            "db": "PACKETSTORM",
            "id": "106640"
          },
          {
            "db": "PACKETSTORM",
            "id": "106901"
          },
          {
            "db": "PACKETSTORM",
            "id": "114005"
          },
          {
            "db": "PACKETSTORM",
            "id": "107051"
          },
          {
            "db": "PACKETSTORM",
            "id": "116406"
          },
          {
            "db": "PACKETSTORM",
            "id": "109207"
          },
          {
            "db": "PACKETSTORM",
            "id": "112108"
          },
          {
            "db": "PACKETSTORM",
            "id": "116792"
          },
          {
            "db": "PACKETSTORM",
            "id": "112826"
          }
        ],
        "trust": 2.88
      },
      "external_ids": {
        "_id": null,
        "data": [
          {
            "db": "NVD",
            "id": "CVE-2011-3389",
            "trust": 2.3
          },
          {
            "db": "CERT/CC",
            "id": "VU#864643",
            "trust": 2.1
          },
          {
            "db": "SIEMENS",
            "id": "SSA-556833",
            "trust": 1.3
          },
          {
            "db": "BID",
            "id": "49778",
            "trust": 1.3
          },
          {
            "db": "SECUNIA",
            "id": "45791",
            "trust": 1.0
          },
          {
            "db": "SECUNIA",
            "id": "55350",
            "trust": 1.0
          },
          {
            "db": "SECUNIA",
            "id": "48256",
            "trust": 1.0
          },
          {
            "db": "SECUNIA",
            "id": "47998",
            "trust": 1.0
          },
          {
            "db": "SECUNIA",
            "id": "48915",
            "trust": 1.0
          },
          {
            "db": "SECUNIA",
            "id": "55351",
            "trust": 1.0
          },
          {
            "db": "SECUNIA",
            "id": "49198",
            "trust": 1.0
          },
          {
            "db": "SECUNIA",
            "id": "55322",
            "trust": 1.0
          },
          {
            "db": "SECUNIA",
            "id": "48948",
            "trust": 1.0
          },
          {
            "db": "SECUNIA",
            "id": "48692",
            "trust": 1.0
          },
          {
            "db": "OSVDB",
            "id": "74829",
            "trust": 1.0
          },
          {
            "db": "SECTRACK",
            "id": "1026103",
            "trust": 1.0
          },
          {
            "db": "SECTRACK",
            "id": "1029190",
            "trust": 1.0
          },
          {
            "db": "SECTRACK",
            "id": "1026704",
            "trust": 1.0
          },
          {
            "db": "SECTRACK",
            "id": "1025997",
            "trust": 1.0
          },
          {
            "db": "BID",
            "id": "49388",
            "trust": 1.0
          },
          {
            "db": "USCERT",
            "id": "TA12-010A",
            "trust": 1.0
          },
          {
            "db": "ICS CERT",
            "id": "ICSMA-18-058-02",
            "trust": 1.0
          },
          {
            "db": "XF",
            "id": "70069",
            "trust": 0.4
          },
          {
            "db": "HITACHI",
            "id": "HS14-011",
            "trust": 0.3
          },
          {
            "db": "HITACHI",
            "id": "HS11-024",
            "trust": 0.3
          },
          {
            "db": "HITACHI",
            "id": "HS13-018",
            "trust": 0.3
          },
          {
            "db": "ICS CERT",
            "id": "ICSA-19-192-04",
            "trust": 0.3
          },
          {
            "db": "SECUNIA",
            "id": "46791",
            "trust": 0.2
          },
          {
            "db": "VULMON",
            "id": "CVE-2011-3389",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "123310",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "106640",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "106901",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "114005",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "107051",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "116406",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "109207",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "112108",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "116792",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "112826",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#864643"
          },
          {
            "db": "VULMON",
            "id": "CVE-2011-3389"
          },
          {
            "db": "BID",
            "id": "49778"
          },
          {
            "db": "PACKETSTORM",
            "id": "123310"
          },
          {
            "db": "PACKETSTORM",
            "id": "106640"
          },
          {
            "db": "PACKETSTORM",
            "id": "106901"
          },
          {
            "db": "PACKETSTORM",
            "id": "114005"
          },
          {
            "db": "PACKETSTORM",
            "id": "107051"
          },
          {
            "db": "PACKETSTORM",
            "id": "116406"
          },
          {
            "db": "PACKETSTORM",
            "id": "109207"
          },
          {
            "db": "PACKETSTORM",
            "id": "112108"
          },
          {
            "db": "PACKETSTORM",
            "id": "116792"
          },
          {
            "db": "PACKETSTORM",
            "id": "112826"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-3389"
          }
        ]
      },
      "id": "VAR-201109-0130",
      "iot": {
        "_id": null,
        "data": true,
        "sources": [
          {
            "db": "VARIoT devices database",
            "id": null
          }
        ],
        "trust": 0.33862434333333336
      },
      "last_update_date": "2026-04-10T22:16:45.123000Z",
      "patch": {
        "_id": null,
        "data": [
          {
            "title": "Debian CVElist Bug Report Logs: CVE-2011-4362: DoS because of incorrect code in src/http_auth.c:67",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_cvelist_bugreportlogs\u0026qid=210cf4b6236578faf8f94374acf42746"
          },
          {
            "title": "Debian CVElist Bug Report Logs: nss: CVE-2014-1569 information leak",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_cvelist_bugreportlogs\u0026qid=ab91355beed7b295ca76667e7725b8ff"
          },
          {
            "title": "Red Hat: Critical: java-1.4.2-ibm security update",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=red_hat_security_advisories\u0026qid=RHSA-20120006 - Security Advisory"
          },
          {
            "title": "Debian Security Advisories: DSA-2398-2 curl -- several vulnerabilities",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_security_advisories\u0026qid=aedc7511d582d3d92a5ba7329ed7d34e"
          },
          {
            "title": "Red Hat: Moderate: java-1.4.2-ibm-sap security update",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=red_hat_security_advisories\u0026qid=RHSA-20120343 - Security Advisory"
          },
          {
            "title": "Debian Security Advisories: DSA-2368-1 lighttpd -- multiple vulnerabilities",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_security_advisories\u0026qid=013e897d92ab510d8719f5ffc2cb7e80"
          },
          {
            "title": "Siemens Security Advisories: Siemens Security Advisory",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=siemens_security_advisories\u0026qid=43a9f1e298f8daf772ebfe7187e61853"
          },
          {
            "title": "Debian CVElist Bug Report Logs: asterisk: CVE-2015-3008: TLS Certificate Common name NULL byte exploit",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_cvelist_bugreportlogs\u0026qid=3dcc7cafafedb5ec8b84970acf17457b"
          },
          {
            "title": "Red Hat: Critical: java-1.6.0-ibm security update",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=red_hat_security_advisories\u0026qid=RHSA-20120034 - Security Advisory"
          },
          {
            "title": "Debian CVElist Bug Report Logs: asterisk: chan_sip: File descriptors leak (UDP sockets) / AST-2016-007, CVE-2016-7551",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_cvelist_bugreportlogs\u0026qid=84da1980846b47c2025a829646fab2ad"
          },
          {
            "title": "Red Hat: Critical: thunderbird security update",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=red_hat_security_advisories\u0026qid=RHSA-20121089 - Security Advisory"
          },
          {
            "title": "Ubuntu Security Notice: openjdk-6, openjdk-6b18 regression",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=ubuntu_security_notice\u0026qid=USN-1263-2"
          },
          {
            "title": "Red Hat: Critical: firefox security update",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=red_hat_security_advisories\u0026qid=RHSA-20121088 - Security Advisory"
          },
          {
            "title": "Ubuntu Security Notice: icedtea-web, openjdk-6, openjdk-6b18 vulnerabilities",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=ubuntu_security_notice\u0026qid=USN-1263-1"
          },
          {
            "title": "Debian Security Advisories: DSA-2356-1 openjdk-6 -- several vulnerabilities",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=debian_security_advisories\u0026qid=a48d7ee302b835c97c950b74a371fcfe"
          },
          {
            "title": "Amazon Linux AMI: ALAS-2011-010",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=amazon_linux_ami\u0026qid=ALAS-2011-010"
          },
          {
            "title": "IBM: IBM Security Bulletin: IBM Cognos Controller 2019Q2 Security Updater: Multiple vulnerabilities have been identified in IBM Cognos Controller",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=ibm_psirt_blog\u0026qid=38227211accce022b0a3d9b56a974186"
          },
          {
            "title": "Oracle: Oracle Critical Patch Update Advisory - July 2015",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=oracle_advisories\u0026qid=459961024c4bdce7bb3a1a40a65a6f2e"
          },
          {
            "title": "Oracle: Oracle Critical Patch Update Advisory - January 2015",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=oracle_advisories\u0026qid=4a692d6d60aa31507cb101702b494c51"
          },
          {
            "title": "Red Hat: Low: Red Hat Network Satellite server IBM Java Runtime security update",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=red_hat_security_advisories\u0026qid=RHSA-20131455 - Security Advisory"
          },
          {
            "title": "litecoin_demo",
            "trust": 0.1,
            "url": "https://github.com/swod00/litecoin_demo "
          },
          {
            "title": "litecoin",
            "trust": 0.1,
            "url": "https://github.com/daniel1302/litecoin "
          },
          {
            "title": "reg",
            "trust": 0.1,
            "url": "https://github.com/genuinetools/reg "
          },
          {
            "title": "testssl-report",
            "trust": 0.1,
            "url": "https://github.com/tzaffi/testssl-report "
          },
          {
            "title": "",
            "trust": 0.1,
            "url": "https://github.com/ricardobranco777/regview "
          },
          {
            "title": "",
            "trust": 0.1,
            "url": "https://github.com/Valdem88/dev-17_ib-yakovlev_vs "
          }
        ],
        "sources": [
          {
            "db": "VULMON",
            "id": "CVE-2011-3389"
          }
        ]
      },
      "problemtype_data": {
        "_id": null,
        "data": [
          {
            "problemtype": "CWE-326",
            "trust": 1.0
          }
        ],
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2011-3389"
          }
        ]
      },
      "references": {
        "_id": null,
        "data": [
          {
            "trust": 2.1,
            "url": "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx"
          },
          {
            "trust": 1.8,
            "url": "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html"
          },
          {
            "trust": 1.8,
            "url": "http://vnhacker.blogspot.com/2011/09/beast.html"
          },
          {
            "trust": 1.8,
            "url": "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx"
          },
          {
            "trust": 1.8,
            "url": "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html"
          },
          {
            "trust": 1.7,
            "url": "http://www.ibm.com/developerworks/java/jdk/alerts/"
          },
          {
            "trust": 1.6,
            "url": "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c03839862"
          },
          {
            "trust": 1.4,
            "url": "http://curl.haxx.se/docs/adv_20120124b.html"
          },
          {
            "trust": 1.3,
            "url": "http://www.opera.com/docs/changelogs/windows/1160/"
          },
          {
            "trust": 1.3,
            "url": "http://www.opera.com/support/kb/view/1004/"
          },
          {
            "trust": 1.3,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html"
          },
          {
            "trust": 1.3,
            "url": "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html"
          },
          {
            "trust": 1.3,
            "url": "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf"
          },
          {
            "trust": 1.3,
            "url": "http://www.kb.cert.org/vuls/id/864643"
          },
          {
            "trust": 1.1,
            "url": "https://bugzilla.mozilla.org/show_bug.cgi?id=665814"
          },
          {
            "trust": 1.1,
            "url": "http://www.ubuntu.com/usn/usn-1263-1"
          },
          {
            "trust": 1.1,
            "url": "http://rhn.redhat.com/errata/rhsa-2012-0508.html"
          },
          {
            "trust": 1.0,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html"
          },
          {
            "trust": 1.0,
            "url": "https://bugzilla.novell.com/show_bug.cgi?id=719047"
          },
          {
            "trust": 1.0,
            "url": "https://oval.cisecurity.org/repository/search/definition/oval%3aorg.mitre.oval%3adef%3a14752"
          },
          {
            "trust": 1.0,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=133728004526190\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html"
          },
          {
            "trust": 1.0,
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=737506"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=132750579901589\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://lists.apple.com/archives/security-announce/2012/may/msg00001.html"
          },
          {
            "trust": 1.0,
            "url": "http://ekoparty.org/2011/juliano-rizzo.php"
          },
          {
            "trust": 1.0,
            "url": "http://secunia.com/advisories/47998"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=134254866602253\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://secunia.com/advisories/55351"
          },
          {
            "trust": 1.0,
            "url": "http://lists.apple.com/archives/security-announce/2011//oct/msg00001.html"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=133365109612558\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://technet.microsoft.com/security/advisory/2588513"
          },
          {
            "trust": 1.0,
            "url": "http://www.securitytracker.com/id/1029190"
          },
          {
            "trust": 1.0,
            "url": "http://www.securityfocus.com/bid/49388"
          },
          {
            "trust": 1.0,
            "url": "http://osvdb.org/74829"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=132872385320240\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://lists.apple.com/archives/security-announce/2012/feb/msg00000.html"
          },
          {
            "trust": 1.0,
            "url": "http://www.insecure.cl/beast-ssl.rar"
          },
          {
            "trust": 1.0,
            "url": "http://www.securitytracker.com/id?1026704"
          },
          {
            "trust": 1.0,
            "url": "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail"
          },
          {
            "trust": 1.0,
            "url": "http://lists.apple.com/archives/security-announce/2012/sep/msg00004.html"
          },
          {
            "trust": 1.0,
            "url": "http://support.apple.com/kb/ht5001"
          },
          {
            "trust": 1.0,
            "url": "http://www.mandriva.com/security/advisories?name=mdvsa-2012:058"
          },
          {
            "trust": 1.0,
            "url": "http://support.apple.com/kb/ht5501"
          },
          {
            "trust": 1.0,
            "url": "http://rhn.redhat.com/errata/rhsa-2013-1455.html"
          },
          {
            "trust": 1.0,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html"
          },
          {
            "trust": 1.0,
            "url": "http://www.opera.com/docs/changelogs/unix/1160/"
          },
          {
            "trust": 1.0,
            "url": "http://secunia.com/advisories/48915"
          },
          {
            "trust": 1.0,
            "url": "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/"
          },
          {
            "trust": 1.0,
            "url": "http://secunia.com/advisories/49198"
          },
          {
            "trust": 1.0,
            "url": "http://secunia.com/advisories/48948"
          },
          {
            "trust": 1.0,
            "url": "http://www.opera.com/docs/changelogs/mac/1160/"
          },
          {
            "trust": 1.0,
            "url": "http://lists.apple.com/archives/security-announce/2012/jul/msg00001.html"
          },
          {
            "trust": 1.0,
            "url": "http://www.redhat.com/support/errata/rhsa-2012-0006.html"
          },
          {
            "trust": 1.0,
            "url": "http://www.securitytracker.com/id?1026103"
          },
          {
            "trust": 1.0,
            "url": "http://lists.apple.com/archives/security-announce/2013/oct/msg00004.html"
          },
          {
            "trust": 1.0,
            "url": "http://lists.apple.com/archives/security-announce/2011//oct/msg00002.html"
          },
          {
            "trust": 1.0,
            "url": "http://secunia.com/advisories/48692"
          },
          {
            "trust": 1.0,
            "url": "http://security.gentoo.org/glsa/glsa-201203-02.xml"
          },
          {
            "trust": 1.0,
            "url": "http://downloads.asterisk.org/pub/security/ast-2016-001.html"
          },
          {
            "trust": 1.0,
            "url": "http://www.redhat.com/support/errata/rhsa-2011-1384.html"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=134254957702612\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html"
          },
          {
            "trust": 1.0,
            "url": "http://www.debian.org/security/2012/dsa-2398"
          },
          {
            "trust": 1.0,
            "url": "https://hermes.opensuse.org/messages/13155432"
          },
          {
            "trust": 1.0,
            "url": "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html"
          },
          {
            "trust": 1.0,
            "url": "http://support.apple.com/kb/ht5281"
          },
          {
            "trust": 1.0,
            "url": "http://www.opera.com/docs/changelogs/mac/1151/"
          },
          {
            "trust": 1.0,
            "url": "http://www.opera.com/docs/changelogs/windows/1151/"
          },
          {
            "trust": 1.0,
            "url": "http://eprint.iacr.org/2006/136"
          },
          {
            "trust": 1.0,
            "url": "http://www.opera.com/docs/changelogs/unix/1151/"
          },
          {
            "trust": 1.0,
            "url": "http://secunia.com/advisories/48256"
          },
          {
            "trust": 1.0,
            "url": "http://secunia.com/advisories/45791"
          },
          {
            "trust": 1.0,
            "url": "http://www.us-cert.gov/cas/techalerts/ta12-010a.html"
          },
          {
            "trust": 1.0,
            "url": "http://support.apple.com/kb/ht6150"
          },
          {
            "trust": 1.0,
            "url": "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006"
          },
          {
            "trust": 1.0,
            "url": "http://secunia.com/advisories/55350"
          },
          {
            "trust": 1.0,
            "url": "https://ics-cert.us-cert.gov/advisories/icsma-18-058-02"
          },
          {
            "trust": 1.0,
            "url": "http://secunia.com/advisories/55322"
          },
          {
            "trust": 1.0,
            "url": "http://www.apcmedia.com/salestools/sjhn-7rkgnm/sjhn-7rkgnm_r4_en.pdf"
          },
          {
            "trust": 1.0,
            "url": "http://security.gentoo.org/glsa/glsa-201406-32.xml"
          },
          {
            "trust": 1.0,
            "url": "http://isc.sans.edu/diary/ssl+tls+part+3+/11635"
          },
          {
            "trust": 1.0,
            "url": "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue"
          },
          {
            "trust": 1.0,
            "url": "http://support.apple.com/kb/ht4999"
          },
          {
            "trust": 1.0,
            "url": "https://hermes.opensuse.org/messages/13154861"
          },
          {
            "trust": 1.0,
            "url": "http://www.securitytracker.com/id?1025997"
          },
          {
            "trust": 1.0,
            "url": "http://www.securityfocus.com/bid/49778"
          },
          {
            "trust": 1.0,
            "url": "http://support.apple.com/kb/ht5130"
          },
          {
            "trust": 1.0,
            "url": "http://eprint.iacr.org/2004/111"
          },
          {
            "trust": 0.8,
            "url": "http://www.openssl.org/~bodo/tls-cbc.txt"
          },
          {
            "trust": 0.8,
            "url": "http://www.phonefactor.com/blog/slaying-beast-mitigating-the-latest-ssltls-vulnerability.php"
          },
          {
            "trust": 0.8,
            "url": "https://blog.torproject.org/blog/tor-and-beast-ssl-attack"
          },
          {
            "trust": 0.8,
            "url": "http://src.chromium.org/viewvc/chrome?view=rev\u0026revision=97269"
          },
          {
            "trust": 0.8,
            "url": "http://www.ekoparty.org/2011/juliano-rizzo.php"
          },
          {
            "trust": 0.8,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3389"
          },
          {
            "trust": 0.4,
            "url": "http://xforce.iss.net/xforce/xfdb/70069"
          },
          {
            "trust": 0.4,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21568229"
          },
          {
            "trust": 0.3,
            "url": "http://www.collax.com/download/file/target/frame/file/2926"
          },
          {
            "trust": 0.3,
            "url": "http://www.collax.com/produkte/allinone-server-for-small-businesses"
          },
          {
            "trust": 0.3,
            "url": "http://www.collax.com/download/file/target/frame/file/2930"
          },
          {
            "trust": 0.3,
            "url": "http://www.collax.com/produkte/email-calendar-contacts-in-a-safe-business-server"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21578730"
          },
          {
            "trust": 0.3,
            "url": "http://blogs.oracle.com/sunsecurity/entry/cve_2011_3389_chosen_plaintext2"
          },
          {
            "trust": 0.3,
            "url": "seclists.org/bugtraq/2014/apr/att-70/esa-2012-032.txt"
          },
          {
            "trust": 0.3,
            "url": "http://seclists.org/bugtraq/2012/sep/att-39/esa-2012-032.txt"
          },
          {
            "trust": 0.3,
            "url": "http://seclists.org/bugtraq/2014/mar/att-156/esa-2014-016.txt"
          },
          {
            "trust": 0.3,
            "url": "http://www.theregister.co.uk/2011/09/19/beast_exploits_paypal_ssl/"
          },
          {
            "trust": 0.3,
            "url": "http://www.kerio.com/connect/history"
          },
          {
            "trust": 0.3,
            "url": "http://www.matrixssl.org/"
          },
          {
            "trust": 0.3,
            "url": "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_python"
          },
          {
            "trust": 0.3,
            "url": "http://www.novell.com/support/viewcontent.do?externalid=7009901\u0026sliceid=1"
          },
          {
            "trust": 0.3,
            "url": "http://www.opera.com/support/kb/view/1000/"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg1pm60958"
          },
          {
            "trust": 0.3,
            "url": "https://www-304.ibm.com/connections/blogs/psirt/entry/security_bulletin_ibm_system_x_and_flex_systems_browser_exploit_against_ssl_tls_beast_mitigations_cve_2011_33891?lang=en_us"
          },
          {
            "trust": 0.3,
            "url": "http://tools.ietf.org/html/draft-ietf-tls-ssl-version3-00"
          },
          {
            "trust": 0.3,
            "url": "http://www.ietf.org/rfc/rfc2246.txt"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21571596"
          },
          {
            "trust": 0.3,
            "url": "/archive/1/524142"
          },
          {
            "trust": 0.3,
            "url": "http://support.apple.com/kb/ht5416"
          },
          {
            "trust": 0.3,
            "url": "http://support.avaya.com/css/p8/documents/100151219"
          },
          {
            "trust": 0.3,
            "url": "http://support.avaya.com/css/p8/documents/100150852"
          },
          {
            "trust": 0.3,
            "url": "http://support.avaya.com/css/p8/documents/100154049"
          },
          {
            "trust": 0.3,
            "url": "http://support.avaya.com/css/p8/documents/100154899"
          },
          {
            "trust": 0.3,
            "url": "http://seclists.org/bugtraq/2013/jun/att-65/esa-2013-039.txt"
          },
          {
            "trust": 0.3,
            "url": "http://h20000.www2.hp.com/bizsupport/techsupport/document.jsp?objectid=c03358587"
          },
          {
            "trust": 0.3,
            "url": "http://h20565.www2.hp.com/portal/site/hpsc/template.page/public/kb/docdisplay/?docid=emr_na-c03909126-1\u0026ac.admitted=1378134276525.876444892.492883150"
          },
          {
            "trust": 0.3,
            "url": "http://h20565.www2.hp.com/portal/site/hpsc/public/kb/docdisplay/?docid=emr_na-c03266681\u0026ac.admitted=1333452464452.876444892.492883150"
          },
          {
            "trust": 0.3,
            "url": "http://www.hitachi.co.jp/prod/comp/soft1/global/security/info/vuls/hs11-024/index.html"
          },
          {
            "trust": 0.3,
            "url": "http://www-947.ibm.com/support/entry/portal/docdisplay?lndocid=migr-5093636"
          },
          {
            "trust": 0.3,
            "url": "https://www.us-cert.gov/ics/advisories/icsa-19-192-04"
          },
          {
            "trust": 0.3,
            "url": "http://technet.microsoft.com/en-us/security/advisory/2588513"
          },
          {
            "trust": 0.3,
            "url": "http://technet.microsoft.com/en-us/security/bulletin/ms12-006"
          },
          {
            "trust": 0.3,
            "url": "http://www.hitachi.co.jp/prod/comp/soft1/global/security/info/vuls/hs13-018/index.html"
          },
          {
            "trust": 0.3,
            "url": "http://www.oracle.com/technetwork/topics/security/cpuoct2013-1899837.html"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21643845"
          },
          {
            "trust": 0.3,
            "url": "http://www-947.ibm.com/support/entry/portal/docdisplay?lndocid=migr-5093630"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21641966"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=isg3t1022152"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21609004"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21609022"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=isg3t1019998"
          },
          {
            "trust": 0.3,
            "url": "http://lists.vmware.com/pipermail/security-announce/2012/000162.html"
          },
          {
            "trust": 0.3,
            "url": "http://www.vmware.com/security/advisories/vmsa-2012-0005.html"
          },
          {
            "trust": 0.3,
            "url": "http://www.hitachi.co.jp/prod/comp/soft1/global/security/info/vuls/hs14-011/index.html"
          },
          {
            "trust": 0.3,
            "url": "http://www.xerox.com/download/security/security-bulletin/12047-4e4eed8d42ca6/cert_xrx13-007_v1.0.pdf"
          },
          {
            "trust": 0.3,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3560"
          },
          {
            "trust": 0.3,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3557"
          },
          {
            "trust": 0.2,
            "url": "http://h41183.www4.hp.com/signup_alerts.php?jumpid=hpsc_secbulletins"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-2311"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3552"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3556"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3548"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3547"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3563"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0499"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2013-2358"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2013-2357"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2013-2362"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2013-2361"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2013-2364"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2013-2363"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2013-4821"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2013-2359"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-2329"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-5217"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-2335"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2013-2356"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-2110"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-2336"
          },
          {
            "trust": 0.1,
            "url": "http://h18013.www1.hp.com/products/servers/management/agents/index.html"
          },
          {
            "trust": 0.1,
            "url": "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/"
          },
          {
            "trust": 0.1,
            "url": "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/secbullarchive/"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0883"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2013-2355"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2013-2360"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4474"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3574"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3548"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3565"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0814"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3563"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3570"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0864"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3553"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3555"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4451"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3560"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3516"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3557"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4450"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3550"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0865"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4471"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3550"
          },
          {
            "trust": 0.1,
            "url": "http://creativecommons.org/licenses/by-sa/2.5"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3557"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3562"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3567"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3556"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3550"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4447"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4476"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3549"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3554"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3563"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0862"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4466"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3568"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3561"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4467"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3567"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4465"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4472"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3556"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0863"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3568"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3548"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3558"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3541"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3566"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3549"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3562"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3555"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3556"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3573"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3552"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4462"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4469"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3572"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4448"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3521"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3571"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3546"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3569"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3559"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0871"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0815"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3571"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3561"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3554"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3558"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4475"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3569"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3559"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3573"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3548"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3541"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3549"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3565"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0872"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3552"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3554"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3574"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3552"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4470"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-4422"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3553"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0867"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4468"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3551"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4463"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3560"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3544"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3570"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3545"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3547"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3560"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0869"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3555"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3566"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4452"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0802"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3551"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4422"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3553"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4473"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3558"
          },
          {
            "trust": 0.1,
            "url": "http://security.gentoo.org/glsa/glsa-201111-02.xml"
          },
          {
            "trust": 0.1,
            "url": "http://security.gentoo.org/"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-3572"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0873"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3561"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-0868"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2010-4454"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2011-3389"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3551"
          },
          {
            "trust": 0.1,
            "url": "https://bugs.gentoo.org."
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-3557"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/46791/#comments"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/vulnerability_intelligence/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/vulnerability_scanning/corporate/wsus_sccm_3rd_third_party_patching/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/secunia_security_advisories/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/46791/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/resources/events/sc_2011/"
          },
          {
            "trust": 0.1,
            "url": "https://ca.secunia.com/?page=viewadvisory\u0026vuln_id=46791"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/vulnerability_scanning/personal/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/about_secunia_advisories/"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2011-4944"
          },
          {
            "trust": 0.1,
            "url": "http://www.mandriva.com/security/"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2012-0845"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-4944"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0876"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-1150"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2011-4940"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0845"
          },
          {
            "trust": 0.1,
            "url": "http://www.mandriva.com/security/advisories"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2012-0876"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2011-3389"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-4940"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2012-1150"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/openjdk-6b18/6b18-1.8.10-0ubuntu1~10.10.2"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/openjdk-6/6b20-1.9.10-0ubuntu1~10.04.2"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3521"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/icedtea-web/1.1.1-0ubuntu1~11.04.2"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/openjdk-6/6b23~pre11-0ubuntu1.11.10"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3553"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3558"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/openjdk-6b18/6b18-1.8.10-0ubuntu1~11.04.1"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3554"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/openjdk-6/6b22-1.10.4-0ubuntu1~11.04.1"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3544"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/openjdk-6b18/6b18-1.8.10-0ubuntu1~10.04.2"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3377"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3551"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/openjdk-6/6b20-1.9.10-0ubuntu1~10.10.2"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/icedtea-web/1.1.3-1ubuntu1.1"
          },
          {
            "trust": 0.1,
            "url": "https://knowledge.rsasecurity.com/scolcms/knowledge.aspx?solution=a46604."
          },
          {
            "trust": 0.1,
            "url": "http://www.emc.com/contact-us/contact/product-security-response-center.html"
          },
          {
            "trust": 0.1,
            "url": "https://knowledge.rsasecurity.com/scolcms/help.aspx?_v=view3."
          },
          {
            "trust": 0.1,
            "url": "https://knowledge.rsasecurity.com"
          },
          {
            "trust": 0.1,
            "url": "http://www.rsa.com/node.aspx?id=1204."
          },
          {
            "trust": 0.1,
            "url": "http://www.rsa.com/node.aspx?id=1264"
          },
          {
            "trust": 0.1,
            "url": "http://www.rsa.com/node.aspx?id=2575"
          },
          {
            "trust": 0.1,
            "url": "https://knowledge.rsasecurity.com,"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0036"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/"
          },
          {
            "trust": 0.1,
            "url": "http://www.debian.org/security/faq"
          },
          {
            "trust": 0.1,
            "url": "http://www.debian.org/security/"
          },
          {
            "trust": 0.1,
            "url": "http://lists.grok.org.uk/full-disclosure-charter.html"
          },
          {
            "trust": 0.1,
            "url": "https://www.redhat.com/security/data/cve/cve-2011-3560.html"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0507"
          },
          {
            "trust": 0.1,
            "url": "https://www.redhat.com/security/data/cve/cve-2011-3557.html"
          },
          {
            "trust": 0.1,
            "url": "https://www.redhat.com/security/data/cve/cve-2012-0503.html"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0503"
          },
          {
            "trust": 0.1,
            "url": "https://www.redhat.com/security/data/cve/cve-2012-0502.html"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/updates/classification/#critical"
          },
          {
            "trust": 0.1,
            "url": "https://www.redhat.com/security/data/cve/cve-2012-0498.html"
          },
          {
            "trust": 0.1,
            "url": "https://www.redhat.com/security/data/cve/cve-2011-3563.html"
          },
          {
            "trust": 0.1,
            "url": "https://www.redhat.com/security/data/cve/cve-2011-3389.html"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/team/contact/"
          },
          {
            "trust": 0.1,
            "url": "https://www.redhat.com/mailman/listinfo/rhsa-announce"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0501"
          },
          {
            "trust": 0.1,
            "url": "https://www.redhat.com/security/data/cve/cve-2012-0499.html"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0498"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/knowledge/articles/11258"
          },
          {
            "trust": 0.1,
            "url": "https://www.redhat.com/security/data/cve/cve-2012-0505.html"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0502"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0505"
          },
          {
            "trust": 0.1,
            "url": "https://www.redhat.com/security/data/cve/cve-2012-0507.html"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/team/key/#package"
          },
          {
            "trust": 0.1,
            "url": "https://www.redhat.com/security/data/cve/cve-2012-0506.html"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0506"
          },
          {
            "trust": 0.1,
            "url": "http://bugzilla.redhat.com/):"
          },
          {
            "trust": 0.1,
            "url": "https://www.redhat.com/security/data/cve/cve-2012-0501.html"
          },
          {
            "trust": 0.1,
            "url": "http://www.php.net"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-2688"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-3718"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-4313"
          },
          {
            "trust": 0.1,
            "url": "http://http//support.apple.com/kb/ht5502"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3048"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0031"
          },
          {
            "trust": 0.1,
            "url": "http://support.apple.com/kb/ht1222"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0668"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3368"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-4317"
          },
          {
            "trust": 0.1,
            "url": "http://www.apple.com/support/downloads/"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0831"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0670"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0671"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-1173"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-2143"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-1172"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0652"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-4599"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-1823"
          },
          {
            "trust": 0.1,
            "url": "https://www.apple.com/support/security/pgp/"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-1667"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-2386"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3607"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0021"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0650"
          },
          {
            "trust": 0.1,
            "url": "http://gpgtools.org"
          },
          {
            "trust": 0.1,
            "url": "http://httpd.apache.org/."
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3026"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0643"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-0053"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2012-3716"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3549"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-0865"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-4469"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-4448"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-0864"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-3545"
          },
          {
            "trust": 0.1,
            "url": "http://h20566.www2.hp.com/portal/site/hpsc/public/kb/secbullarchive/"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-4454"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-0815"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-4476"
          },
          {
            "trust": 0.1,
            "url": "http://www.hp.com/go/java"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-4462"
          },
          {
            "trust": 0.1,
            "url": "https://www.hp.com/go/swa"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-0862"
          },
          {
            "trust": 0.1,
            "url": "https://h20566.www2.hp.com/portal/site/hpsc/public/kb/"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-0867"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-4465"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-4475"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-0871"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-4473"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2010-4447"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-0802"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2011-0814"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#864643"
          },
          {
            "db": "BID",
            "id": "49778"
          },
          {
            "db": "PACKETSTORM",
            "id": "123310"
          },
          {
            "db": "PACKETSTORM",
            "id": "106640"
          },
          {
            "db": "PACKETSTORM",
            "id": "106901"
          },
          {
            "db": "PACKETSTORM",
            "id": "114005"
          },
          {
            "db": "PACKETSTORM",
            "id": "107051"
          },
          {
            "db": "PACKETSTORM",
            "id": "116406"
          },
          {
            "db": "PACKETSTORM",
            "id": "109207"
          },
          {
            "db": "PACKETSTORM",
            "id": "112108"
          },
          {
            "db": "PACKETSTORM",
            "id": "116792"
          },
          {
            "db": "PACKETSTORM",
            "id": "112826"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-3389"
          }
        ]
      },
      "sources": {
        "_id": null,
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#864643",
            "ident": null
          },
          {
            "db": "VULMON",
            "id": "CVE-2011-3389",
            "ident": null
          },
          {
            "db": "BID",
            "id": "49778",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "123310",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "106640",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "106901",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "114005",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "107051",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "116406",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "109207",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "112108",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "116792",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "112826",
            "ident": null
          },
          {
            "db": "NVD",
            "id": "CVE-2011-3389",
            "ident": null
          }
        ]
      },
      "sources_release_date": {
        "_id": null,
        "data": [
          {
            "date": "2011-09-27T00:00:00",
            "db": "CERT/CC",
            "id": "VU#864643",
            "ident": null
          },
          {
            "date": "2011-09-06T00:00:00",
            "db": "VULMON",
            "id": "CVE-2011-3389",
            "ident": null
          },
          {
            "date": "2011-09-19T00:00:00",
            "db": "BID",
            "id": "49778",
            "ident": null
          },
          {
            "date": "2013-09-19T22:22:00",
            "db": "PACKETSTORM",
            "id": "123310",
            "ident": null
          },
          {
            "date": "2011-11-06T01:01:42",
            "db": "PACKETSTORM",
            "id": "106640",
            "ident": null
          },
          {
            "date": "2011-11-12T02:51:49",
            "db": "PACKETSTORM",
            "id": "106901",
            "ident": null
          },
          {
            "date": "2012-06-21T05:28:48",
            "db": "PACKETSTORM",
            "id": "114005",
            "ident": null
          },
          {
            "date": "2011-11-17T02:34:27",
            "db": "PACKETSTORM",
            "id": "107051",
            "ident": null
          },
          {
            "date": "2012-09-11T16:00:16",
            "db": "PACKETSTORM",
            "id": "116406",
            "ident": null
          },
          {
            "date": "2012-01-31T02:55:32",
            "db": "PACKETSTORM",
            "id": "109207",
            "ident": null
          },
          {
            "date": "2012-04-23T20:54:36",
            "db": "PACKETSTORM",
            "id": "112108",
            "ident": null
          },
          {
            "date": "2012-09-22T06:30:43",
            "db": "PACKETSTORM",
            "id": "116792",
            "ident": null
          },
          {
            "date": "2012-05-17T21:16:37",
            "db": "PACKETSTORM",
            "id": "112826",
            "ident": null
          },
          {
            "date": "2011-09-06T19:55:03.197000",
            "db": "NVD",
            "id": "CVE-2011-3389",
            "ident": null
          }
        ]
      },
      "sources_update_date": {
        "_id": null,
        "data": [
          {
            "date": "2011-12-08T00:00:00",
            "db": "CERT/CC",
            "id": "VU#864643",
            "ident": null
          },
          {
            "date": "2022-11-29T00:00:00",
            "db": "VULMON",
            "id": "CVE-2011-3389",
            "ident": null
          },
          {
            "date": "2019-07-16T13:00:00",
            "db": "BID",
            "id": "49778",
            "ident": null
          },
          {
            "date": "2025-04-11T00:51:21.963000",
            "db": "NVD",
            "id": "CVE-2011-3389",
            "ident": null
          }
        ]
      },
      "threat_type": {
        "_id": null,
        "data": "network",
        "sources": [
          {
            "db": "BID",
            "id": "49778"
          }
        ],
        "trust": 0.3
      },
      "title": {
        "_id": null,
        "data": "SSL 3.0 and TLS 1.0 allow chosen plaintext attack in CBC modes",
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#864643"
          }
        ],
        "trust": 0.8
      },
      "type": {
        "_id": null,
        "data": "Design Error",
        "sources": [
          {
            "db": "BID",
            "id": "49778"
          }
        ],
        "trust": 0.3
      }
    }

    VAR-202310-0175

    Vulnerability from variot - Updated: 2026-04-10 22:02

    The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512


    Debian Security Advisory DSA-5540-1 security@debian.org https://www.debian.org/security/ Markus Koschany October 30, 2023 https://www.debian.org/security/faq


    Package : jetty9 CVE ID : CVE-2023-36478 CVE-2023-44487

    Two remotely exploitable security vulnerabilities were discovered in Jetty 9, a Java based web server and servlet engine. The HTTP/2 protocol implementation did not sufficiently verify if HPACK header values exceed their size limit. This problem is also known as Rapid Reset Attack.

    For the oldstable distribution (bullseye), these problems have been fixed in version 9.4.50-4+deb11u1.

    For the stable distribution (bookworm), these problems have been fixed in version 9.4.50-4+deb12u2.

    We recommend that you upgrade your jetty9 packages.

    For the detailed security status of jetty9 please refer to its security tracker page at: https://security-tracker.debian.org/tracker/jetty9

    Further information about Debian Security Advisories, how to apply these updates to your system and frequently asked questions can be found at: https://www.debian.org/security/

    Mailing list: debian-security-announce@lists.debian.org -----BEGIN PGP SIGNATURE-----

    iQKTBAEBCgB9FiEErPPQiO8y7e9qGoNf2a0UuVE7UeQFAmVABttfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEFD RjNEMDg4RUYzMkVERUY2QTFBODM1RkQ5QUQxNEI5NTEzQjUxRTQACgkQ2a0UuVE7 UeTJ2g/9E8TKXU1Mko9WhumkvRQNsYxAM43L/gmYMRm4JEqhqpjHHZECJIOAVyxs uN0uE13T+JckplIAhfdsZgbmDDNjASyFWv9OfOdf2h4Y9ZhoXP22MXI2MjKb9MSH KfmPtX4S95UyF/Ty0kK17W63p4EvtNlcgRokx5yFpUF/rN72GXVx25W6WQ1pSHrJ ESJMqOr8d3Wn5/4yaPEunQrvPa4WkQSTv8nHAIxIenP3wiNuK2tZWN6GCAdbirQp MWt282W/ueGcRDq8UJB2tWkxqx8CNnqeIeh0LpaSZRbaf62DChtyj+5OnYyhwBTk 1mhwuveCFtNzRQyHRBrOrVWRAG43ktSyEYG90Il9iDchQROi0sJkQFVB0TXG6FnC hIFBcPw9VW5+7I+4gxexhpguq/SXZV9V9QH+jSeEBOgdKY/qX0farjElmhgFLRuS /weJAqnc9C6w4BB7gnE9ow4nbGqKqMEj1yoO8itMhCWBCaEIia0INpao7pfpf/9r KekLFoi6Gux0gqVMhhBw3latxW9zth93tNEeuuGb+kP/TDreBVkZnqrYVbtj49Wv IMX77Q8OB/TDQ8K5cEq05wcq59TIkAaVKGrP3sXsjbt4umbkjhbp8Oxv+chMOgPQ E8ThC0Q+lbZ4nth0vw2R93ObMfzlxZN2YJUqKf3aw/yAKd8YIys=CO/+ -----END PGP SIGNATURE----- .

    Description:

    Red Hat AMQ Streams, based on the Apache Kafka project, offers a distributed backbone that allows microservices and other applications to share data with extremely high throughput and extremely low latency. This could result in denial of service.

    Description:

    nghttp2 contains the Hypertext Transfer Protocol version 2 (HTTP/2) client, server, and proxy programs as well as a library implementing the HTTP/2 protocol in C.

    Description:

    Node.js is a software development platform for building fast and scalable network applications in the JavaScript programming language.

    Description:

    .NET is a managed-software framework. It implements a subset of the .NET framework APIs and several new APIs, and it includes a CLR implementation.

    New versions of .NET that address a security vulnerability are now available. The updated versions are .NET 6.0 to SDK 6.0.123 and Runtime 6.0.23.

    The following advisory data is extracted from:

    https://access.redhat.com/security/data/csaf/v2/advisories/2023/rhsa-2023_7481.json

    Red Hat officially shut down their mailing list notifications October 10, 2023. Due to this, Packet Storm has recreated the below data as a reference point to raise awareness. It must be noted that due to an inability to easily track revision updates without crawling Red Hat's archive, these advisories are single notifications and we strongly suggest that you visit the Red Hat provided links to ensure you have the latest information available if the subject matter listed pertains to your environment.

    • Packet Storm Staff

    ==================================================================== Red Hat Security Advisory

    Synopsis: Important: OpenShift Container Platform 4.11.54 packages and security update Advisory ID: RHSA-2023:7481-01 Product: Red Hat OpenShift Enterprise Advisory URL: https://access.redhat.com/errata/RHSA-2023:7481 Issue date: 2023-11-29 Revision: 01 CVE Names: CVE-2023-44487 ====================================================================

    Summary:

    Red Hat OpenShift Container Platform release 4.11.54 is now available with updates to packages and images that fix several bugs and add enhancements.

    This release includes a security update for Red Hat OpenShift Container Platform 4.11.

    Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.

    Description:

    Red Hat OpenShift Container Platform is Red Hat's cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.

    This advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.11.54. See the following advisory for the container images for this release:

    https://access.redhat.com/errata/RHSA-2023:7479

    Security Fix(es):

    • HTTP/2: Multiple HTTP/2 enabled web servers are vulnerable to a DDoS attack (Rapid Reset Attack) (CVE-2023-44487)

    For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.

    All OpenShift Container Platform 4.11 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.openshift.com/container-platform/4.11/updating/updating-cluster-cli.html

    Solution:

    https://docs.openshift.com/container-platform/4.11/release_notes/ocp-4-11-release-notes.html

    CVEs:

    CVE-2023-44487

    References:

    https://access.redhat.com/security/updates/classification/#important https://bugzilla.redhat.com/show_bug.cgi?id=2242803

    . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Gentoo Linux Security Advisory GLSA 202408-10


                                           https://security.gentoo.org/
    

    Severity: Normal Title: nghttp2: Multiple Vulnerabilities Date: August 07, 2024 Bugs: #915554, #928541 ID: 202408-10


    Synopsis

    Multiple vulnerabilities have been discovered in nghttp2, the worst of which could lead to a denial of service.

    Background

    Nghttp2 is an implementation of HTTP/2 and its header compression algorithm HPACK in C.

    Affected packages

    Package Vulnerable Unaffected


    net-libs/nghttp2 < 1.61.0 >= 1.61.0

    Description

    Multiple vulnerabilities have been discovered in nghttp2. Please review the CVE identifiers referenced below for details.

    Impact

    Please review the referenced CVE identifiers for details.

    Workaround

    There is no known workaround at this time.

    Resolution

    All nghttp2 users should upgrade to the latest version:

    # emerge --sync # emerge --ask --oneshot --verbose ">=net-libs/nghttp2-1.61.0"

    References

    [ 1 ] CVE-2023-44487 https://nvd.nist.gov/vuln/detail/CVE-2023-44487 [ 2 ] CVE-2024-28182 https://nvd.nist.gov/vuln/detail/CVE-2024-28182

    Availability

    This GLSA and any updates to it are available for viewing at the Gentoo Security Website:

    https://security.gentoo.org/glsa/202408-10

    Concerns?

    Security is a primary focus of Gentoo Linux and ensuring the confidentiality and security of our users' machines is of utmost importance to us. Any security concerns should be addressed to security@gentoo.org or alternatively, you may file a bug at https://bugs.gentoo.org.

    License

    Copyright 2024 Gentoo Foundation, Inc; referenced text belongs to its owner(s).

    The contents of this document are licensed under the Creative Commons - Attribution / Share Alike license.

    https://creativecommons.org/licenses/by-sa/2.5

    Show details on source website

    {
      "affected_products": {
        "_id": null,
        "data": [
          {
            "_id": null,
            "model": "node healthcheck operator",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip local traffic manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "secure dynamic attributes connector",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.2.0"
          },
          {
            "_id": null,
            "model": "varnish cache",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "varnish cache",
            "version": "2023-10-10"
          },
          {
            "_id": null,
            "model": "decision manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "big-ip local traffic manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "openshift",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "nginx plus",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "f5",
            "version": "r29"
          },
          {
            "_id": null,
            "model": "big-ip analytics",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "big-ip link controller",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "build of quarkus",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "netty",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "netty",
            "version": "4.1.100"
          },
          {
            "_id": null,
            "model": "big-ip analytics",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "big-ip webaccelerator",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "cost management",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "nx-os",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "10.2\\(7\\)"
          },
          {
            "_id": null,
            "model": "big-ip application security manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "enterprise linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "big-ip global traffic manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "tomcat",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "apache",
            "version": "8.5.0"
          },
          {
            "_id": null,
            "model": "visual studio 2022",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "17.0"
          },
          {
            "_id": null,
            "model": "big-ip analytics",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "big-ip websafe",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "big-ip application acceleration manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "kong gateway",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "konghq",
            "version": "3.4.2"
          },
          {
            "_id": null,
            "model": "traffic server",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "apache",
            "version": "9.0.0"
          },
          {
            "_id": null,
            "model": "prime network registrar",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2"
          },
          {
            "_id": null,
            "model": "big-ip access policy manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "big-ip link controller",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "big-ip access policy manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "big-ip webaccelerator",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "big-ip application security manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "openshift virtualization",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "_id": null,
            "model": "jboss enterprise application platform",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "7.0.0"
          },
          {
            "_id": null,
            "model": "big-ip domain name system",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "big-ip ddos hybrid defender",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "nginx ingress controller",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "3.0.0"
          },
          {
            "_id": null,
            "model": "integration camel k",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "integration service registry",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip advanced firewall manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "big-ip ssl orchestrator",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "big-ip global traffic manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "migration toolkit for applications",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "big-ip advanced firewall manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "solr",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "apache",
            "version": "9.4.0"
          },
          {
            "_id": null,
            "model": "big-ip application acceleration manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "big-ip policy enforcement manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "iot field network director",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "4.11.0"
          },
          {
            "_id": null,
            "model": "big-ip application security manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "openshift distributed tracing",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "visual studio 2022",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "17.6"
          },
          {
            "_id": null,
            "model": "cbl-mariner",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "2023-10-11"
          },
          {
            "_id": null,
            "model": "asp.net core",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "6.0.23"
          },
          {
            "_id": null,
            "model": "big-ip next",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "20.0.1"
          },
          {
            "_id": null,
            "model": "big-ip advanced firewall manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "big-ip access policy manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "openstack platform",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "16.2"
          },
          {
            "_id": null,
            "model": "unified contact center enterprise - live data server",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.6.2"
          },
          {
            "_id": null,
            "model": "nx-os",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "10.3\\(5\\)"
          },
          {
            "_id": null,
            "model": "big-ip domain name system",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "caddy",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "caddyserver",
            "version": "2.7.5"
          },
          {
            "_id": null,
            "model": "big-ip ddos hybrid defender",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "big-ip application acceleration manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "big-ip application visibility and reporting",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "expressway",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "x14.3.3"
          },
          {
            "_id": null,
            "model": "big-ip carrier-grade nat",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "nghttp2",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "nghttp2",
            "version": "1.57.0"
          },
          {
            "_id": null,
            "model": "big-ip advanced web application firewall",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "big-ip policy enforcement manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "openshift pipelines",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip carrier-grade nat",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "unified contact center domain manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "jetty",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "eclipse",
            "version": "12.0.0"
          },
          {
            "_id": null,
            "model": "openshift secondary scheduler operator",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "openstack platform",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "16.1"
          },
          {
            "_id": null,
            "model": "grpc",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "grpc",
            "version": "1.58.0"
          },
          {
            "_id": null,
            "model": "swiftnio http\\/2",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "apple",
            "version": "1.28.0"
          },
          {
            "_id": null,
            "model": "openshift dev spaces",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "windows 10 21h2",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "10.0.19044.3570"
          },
          {
            "_id": null,
            "model": "big-ip carrier-grade nat",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "opensearch data prepper",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "amazon",
            "version": "2.5.0"
          },
          {
            "_id": null,
            "model": "telepresence video communication server",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "x14.3.3"
          },
          {
            "_id": null,
            "model": "big-ip application visibility and reporting",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "advanced cluster security",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "business process automation",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.2.003.009"
          },
          {
            "_id": null,
            "model": "big-ip advanced web application firewall",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "enterprise chat and email",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "linkerd",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "linkerd",
            "version": "2.12.5"
          },
          {
            "_id": null,
            "model": "service interconnect",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "machine deletion remediation operator",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "satellite",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "big-ip policy enforcement manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "visual studio 2022",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "17.7.5"
          },
          {
            "_id": null,
            "model": "windows 11 21h2",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "10.0.22000.2538"
          },
          {
            "_id": null,
            "model": "traefik",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "traefik",
            "version": "3.0.0"
          },
          {
            "_id": null,
            "model": "single sign-on",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "ios xr",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "7.11.2"
          },
          {
            "_id": null,
            "model": "big-ip fraud protection service",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "jetty",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "eclipse",
            "version": "10.0.0"
          },
          {
            "_id": null,
            "model": "ultra cloud core - serving gateway function",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2024.02.0"
          },
          {
            "_id": null,
            "model": "secure malware analytics",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.19.2"
          },
          {
            "_id": null,
            "model": "self node remediation operator",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip global traffic manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "jboss enterprise application platform",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "6.0.0"
          },
          {
            "_id": null,
            "model": "big-ip global traffic manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "big-ip local traffic manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "fedora",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "fedoraproject",
            "version": "37"
          },
          {
            "_id": null,
            "model": "tomcat",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "apache",
            "version": "9.0.80"
          },
          {
            "_id": null,
            "model": "nx-os",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "10.4\\(1\\)"
          },
          {
            "_id": null,
            "model": "cryostat",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "oncommand insight",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip access policy manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "big-ip link controller",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "big-ip webaccelerator",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "nginx plus",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "r29"
          },
          {
            "_id": null,
            "model": "node.js",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "nodejs",
            "version": "20.8.1"
          },
          {
            "_id": null,
            "model": "fedora",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "fedoraproject",
            "version": "38"
          },
          {
            "_id": null,
            "model": "enterprise linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "visual studio 2022",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "17.6.8"
          },
          {
            "_id": null,
            "model": "tomcat",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "apache",
            "version": "11.0.0"
          },
          {
            "_id": null,
            "model": "grpc",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "grpc",
            "version": "1.59.2"
          },
          {
            "_id": null,
            "model": "big-ip analytics",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "openshift api for data protection",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip ssl orchestrator",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "big-ip local traffic manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "big-ip application security manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "big-ip global traffic manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "integration camel for spring boot",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "istio",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "istio",
            "version": "1.18.0"
          },
          {
            "_id": null,
            "model": "big-ip application security manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "support for spring boot",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "prime infrastructure",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.10.4"
          },
          {
            "_id": null,
            "model": "tomcat",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "apache",
            "version": "8.5.93"
          },
          {
            "_id": null,
            "model": "big-ip websafe",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "nginx plus",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "r25"
          },
          {
            "_id": null,
            "model": "web terminal",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "nx-os",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "10.4\\(2\\)"
          },
          {
            "_id": null,
            "model": "big-ip application acceleration manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "ceph storage",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "big-ip application security manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "proxygen",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "facebook",
            "version": "2023.10.16.00"
          },
          {
            "_id": null,
            "model": ".net",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "7.0.0"
          },
          {
            "_id": null,
            "model": "big-ip analytics",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "nx-os",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "10.3\\(1\\)"
          },
          {
            "_id": null,
            "model": "big-ip policy enforcement manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "firepower threat defense",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "7.4.2"
          },
          {
            "_id": null,
            "model": "traffic server",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "apache",
            "version": "9.2.3"
          },
          {
            "_id": null,
            "model": "istio",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "istio",
            "version": "1.19.0"
          },
          {
            "_id": null,
            "model": "http2",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "golang",
            "version": "0.17.0"
          },
          {
            "_id": null,
            "model": "windows 10 1607",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "10.0.14393.6351"
          },
          {
            "_id": null,
            "model": "big-ip advanced firewall manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "crosswork zero touch provisioning",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "6.0.0"
          },
          {
            "_id": null,
            "model": "big-ip carrier-grade nat",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "big-ip application acceleration manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "traffic server",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "apache",
            "version": "8.0.0"
          },
          {
            "_id": null,
            "model": "windows server 2016",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "node maintenance operator",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "networking",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "golang",
            "version": "0.17.0"
          },
          {
            "_id": null,
            "model": "linkerd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linkerd",
            "version": "2.14.0"
          },
          {
            "_id": null,
            "model": "big-ip advanced web application firewall",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "big-ip fraud protection service",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "grpc",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "grpc",
            "version": "1.57.0"
          },
          {
            "_id": null,
            "model": ".net",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "7.0.12"
          },
          {
            "_id": null,
            "model": "big-ip ssl orchestrator",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "big-ip carrier-grade nat",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "big-ip application visibility and reporting",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "big-ip advanced firewall manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "run once duration override operator",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip fraud protection service",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "big-ip next service proxy for kubernetes",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "1.8.2"
          },
          {
            "_id": null,
            "model": "grpc",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "grpc",
            "version": "1.56.3"
          },
          {
            "_id": null,
            "model": "windows 10 22h2",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "10.0.19045.3570"
          },
          {
            "_id": null,
            "model": "big-ip link controller",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "big-ip webaccelerator",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "tomcat",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "apache",
            "version": "10.1.13"
          },
          {
            "_id": null,
            "model": "visual studio 2022",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "17.7"
          },
          {
            "_id": null,
            "model": "big-ip fraud protection service",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "advanced cluster management for kubernetes",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "advanced cluster security",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "big-ip domain name system",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "big-ip ddos hybrid defender",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "openresty",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "openresty",
            "version": "1.21.4.3"
          },
          {
            "_id": null,
            "model": "big-ip carrier-grade nat",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "big-ip ssl orchestrator",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "asp.net core",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "6.0.0"
          },
          {
            "_id": null,
            "model": "windows 10 1809",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "10.0.17763.4974"
          },
          {
            "_id": null,
            "model": "prime cable provisioning",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "7.2.1"
          },
          {
            "_id": null,
            "model": "linkerd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linkerd",
            "version": "2.14.1"
          },
          {
            "_id": null,
            "model": "service telemetry framework",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "windows server 2019",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "crosswork data gateway",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "5.0.0"
          },
          {
            "_id": null,
            "model": "jboss fuse",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "6.0.0"
          },
          {
            "_id": null,
            "model": "big-ip global traffic manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "contour",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "projectcontour",
            "version": "2023-10-11"
          },
          {
            "_id": null,
            "model": ".net",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "6.0.0"
          },
          {
            "_id": null,
            "model": "traffic server",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "apache",
            "version": "8.1.9"
          },
          {
            "_id": null,
            "model": "big-ip global traffic manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "nginx plus",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "r30"
          },
          {
            "_id": null,
            "model": "big-ip websafe",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "grpc",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "grpc",
            "version": "1.58.3"
          },
          {
            "_id": null,
            "model": "big-ip websafe",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "certification for red hat enterprise linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "9.0"
          },
          {
            "_id": null,
            "model": "istio",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "istio",
            "version": "1.17.6"
          },
          {
            "_id": null,
            "model": "big-ip ssl orchestrator",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "openshift service mesh",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "data center network manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "jboss core services",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip policy enforcement manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "openshift sandboxed containers",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "jenkins",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "jenkins",
            "version": "2.427"
          },
          {
            "_id": null,
            "model": "big-ip ssl orchestrator",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "jboss data grid",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "7.0.0"
          },
          {
            "_id": null,
            "model": "big-ip link controller",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "big-ip access policy manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "big-ip application acceleration manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "big-ip webaccelerator",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "big-ip application security manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "big-ip local traffic manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "big-ip advanced web application firewall",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "node.js",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "nodejs",
            "version": "20.0.0"
          },
          {
            "_id": null,
            "model": "azure kubernetes service",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "2023-10-08"
          },
          {
            "_id": null,
            "model": "jetty",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "eclipse",
            "version": "9.4.53"
          },
          {
            "_id": null,
            "model": "big-ip advanced web application firewall",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "process automation",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "big-ip link controller",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "big-ip webaccelerator",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "big-ip carrier-grade nat",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "big-ip application visibility and reporting",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "nginx",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "1.9.5"
          },
          {
            "_id": null,
            "model": "big-ip analytics",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "big-ip application security manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "big-ip domain name system",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "big-ip ddos hybrid defender",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "logging subsystem for red hat openshift",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "envoy",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "envoyproxy",
            "version": "1.24.10"
          },
          {
            "_id": null,
            "model": "big-ip access policy manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "big-ip policy enforcement manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "big-ip fraud protection service",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "envoy",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "envoyproxy",
            "version": "1.27.0"
          },
          {
            "_id": null,
            "model": "big-ip link controller",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "big-ip fraud protection service",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "big-ip domain name system",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "big-ip ddos hybrid defender",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "big-ip ssl orchestrator",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "big-ip webaccelerator",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "crosswork situation manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip fraud protection service",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "big-ip policy enforcement manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "big-ip global traffic manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "big-ip application visibility and reporting",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "big-ip access policy manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "big-ip advanced web application firewall",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "ultra cloud core - policy control function",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2024.01.0"
          },
          {
            "_id": null,
            "model": "big-ip advanced firewall manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "istio",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "istio",
            "version": "1.18.3"
          },
          {
            "_id": null,
            "model": "connected mobile experiences",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1"
          },
          {
            "_id": null,
            "model": "istio",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "istio",
            "version": "1.19.1"
          },
          {
            "_id": null,
            "model": "big-ip domain name system",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "big-ip ddos hybrid defender",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "big-ip websafe",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "asp.net core",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "7.0.0"
          },
          {
            "_id": null,
            "model": "jboss a-mq streams",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "node.js",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "nodejs",
            "version": "18.18.2"
          },
          {
            "_id": null,
            "model": "openshift container platform",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "enterprise linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "9.0"
          },
          {
            "_id": null,
            "model": "crosswork data gateway",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "5.0.2"
          },
          {
            "_id": null,
            "model": "jetty",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "eclipse",
            "version": "10.0.17"
          },
          {
            "_id": null,
            "model": "jboss fuse",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "7.0.0"
          },
          {
            "_id": null,
            "model": "tomcat",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "apache",
            "version": "10.1.0"
          },
          {
            "_id": null,
            "model": "big-ip advanced web application firewall",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "tomcat",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "apache",
            "version": "9.0.0"
          },
          {
            "_id": null,
            "model": "big-ip local traffic manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "jetty",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "eclipse",
            "version": "12.0.2"
          },
          {
            "_id": null,
            "model": "3scale api management platform",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "ansible automation platform",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "debian",
            "version": "11.0"
          },
          {
            "_id": null,
            "model": "go",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "golang",
            "version": "1.21.3"
          },
          {
            "_id": null,
            "model": "traefik",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "traefik",
            "version": "2.10.5"
          },
          {
            "_id": null,
            "model": "openshift gitops",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip application acceleration manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "big-ip application visibility and reporting",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "asp.net core",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "7.0.12"
          },
          {
            "_id": null,
            "model": "go",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "golang",
            "version": "1.21.0"
          },
          {
            "_id": null,
            "model": "jetty",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "eclipse",
            "version": "11.0.17"
          },
          {
            "_id": null,
            "model": "big-ip local traffic manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "nginx",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "1.25.2"
          },
          {
            "_id": null,
            "model": "windows server 2022",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip analytics",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": ".net",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "6.0.23"
          },
          {
            "_id": null,
            "model": "jboss a-mq",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "7"
          },
          {
            "_id": null,
            "model": "visual studio 2022",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "17.2.20"
          },
          {
            "_id": null,
            "model": "nginx ingress controller",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "2.0.0"
          },
          {
            "_id": null,
            "model": "ultra cloud core - session management function",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2024.02.0"
          },
          {
            "_id": null,
            "model": "big-ip local traffic manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "big-ip analytics",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "big-ip websafe",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "big-ip local traffic manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "big-ip link controller",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "ultra cloud core - policy control function",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2024.01.0"
          },
          {
            "_id": null,
            "model": "big-ip access policy manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "big-ip webaccelerator",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "big-ip access policy manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "openstack platform",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "17.1"
          },
          {
            "_id": null,
            "model": "network observability operator",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "visual studio 2022",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "17.4.12"
          },
          {
            "_id": null,
            "model": "node.js",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "nodejs",
            "version": "18.0.0"
          },
          {
            "_id": null,
            "model": "http",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ietf",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "unified contact center enterprise",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip application visibility and reporting",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "big-ip link controller",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "big-ip analytics",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "crosswork data gateway",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "4.1.3"
          },
          {
            "_id": null,
            "model": "big-ip advanced firewall manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "openshift developer tools and services",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "envoy",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "envoyproxy",
            "version": "1.26.4"
          },
          {
            "_id": null,
            "model": "big-ip webaccelerator",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "fence agents remediation operator",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "unified attendant console advanced",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "http2",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "kazu yamamoto",
            "version": "4.2.2"
          },
          {
            "_id": null,
            "model": "ios xe",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "17.15.1"
          },
          {
            "_id": null,
            "model": "big-ip application acceleration manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "big-ip next service proxy for kubernetes",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "1.5.0"
          },
          {
            "_id": null,
            "model": "big-ip application visibility and reporting",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "fog director",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.22"
          },
          {
            "_id": null,
            "model": "certification for red hat enterprise linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "quay",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "3.0.0"
          },
          {
            "_id": null,
            "model": "go",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "golang",
            "version": "1.20.10"
          },
          {
            "_id": null,
            "model": "migration toolkit for virtualization",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip ssl orchestrator",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "prime access registrar",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3.3"
          },
          {
            "_id": null,
            "model": "big-ip domain name system",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "big-ip advanced firewall manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "big-ip ddos hybrid defender",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "windows 11 22h2",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "10.0.22621.2428"
          },
          {
            "_id": null,
            "model": "big-ip domain name system",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "big-ip advanced web application firewall",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "big-ip application security manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.0"
          },
          {
            "_id": null,
            "model": "big-ip application acceleration manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "big-ip ddos hybrid defender",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "cert-manager operator for red hat openshift",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "migration toolkit for containers",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip carrier-grade nat",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "big-ip policy enforcement manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "big-ip websafe",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "openshift data science",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "h2o",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "dena",
            "version": "2023-10-10"
          },
          {
            "_id": null,
            "model": "big-ip fraud protection service",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "big-ip domain name system",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "big-ip ddos hybrid defender",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "nginx ingress controller",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "2.4.2"
          },
          {
            "_id": null,
            "model": "http server",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "akka",
            "version": "10.5.3"
          },
          {
            "_id": null,
            "model": "big-ip advanced firewall manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.5"
          },
          {
            "_id": null,
            "model": "big-ip ssl orchestrator",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.10"
          },
          {
            "_id": null,
            "model": "linkerd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linkerd",
            "version": "2.13.1"
          },
          {
            "_id": null,
            "model": "jenkins",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "jenkins",
            "version": "2.414.2"
          },
          {
            "_id": null,
            "model": "big-ip websafe",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "big-ip policy enforcement manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "linkerd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linkerd",
            "version": "2.13.0"
          },
          {
            "_id": null,
            "model": "big-ip carrier-grade nat",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.0"
          },
          {
            "_id": null,
            "model": "openshift container platform assisted installer",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "big-ip application visibility and reporting",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.1.5"
          },
          {
            "_id": null,
            "model": "astra control center",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "_id": null,
            "model": "secure web appliance",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.1.0"
          },
          {
            "_id": null,
            "model": "envoy",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "envoyproxy",
            "version": "1.25.9"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "debian",
            "version": "10.0"
          },
          {
            "_id": null,
            "model": "big-ip websafe",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "apisix",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "apache",
            "version": "3.6.1"
          },
          {
            "_id": null,
            "model": "openshift serverless",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": null
          },
          {
            "_id": null,
            "model": "visual studio 2022",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "17.4"
          },
          {
            "_id": null,
            "model": "nginx ingress controller",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "3.3.0"
          },
          {
            "_id": null,
            "model": "armeria",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "linecorp",
            "version": "1.26.0"
          },
          {
            "_id": null,
            "model": "unified contact center management portal",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "jetty",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "eclipse",
            "version": "11.0.0"
          },
          {
            "_id": null,
            "model": "big-ip fraud protection service",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "17.1.0"
          },
          {
            "_id": null,
            "model": "big-ip advanced web application firewall",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "14.1.0"
          },
          {
            "_id": null,
            "model": "build of optaplanner",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "redhat",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "big-ip global traffic manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "16.1.4"
          },
          {
            "_id": null,
            "model": "linkerd",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "linkerd",
            "version": "2.12.0"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "debian",
            "version": "12.0"
          }
        ],
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2023-44487"
          }
        ]
      },
      "credits": {
        "_id": null,
        "data": "Red Hat",
        "sources": [
          {
            "db": "PACKETSTORM",
            "id": "175270"
          },
          {
            "db": "PACKETSTORM",
            "id": "175126"
          },
          {
            "db": "PACKETSTORM",
            "id": "175179"
          },
          {
            "db": "PACKETSTORM",
            "id": "175159"
          },
          {
            "db": "PACKETSTORM",
            "id": "175970"
          }
        ],
        "trust": 0.5
      },
      "cve": "CVE-2023-44487",
      "cvss": {
        "_id": null,
        "data": [
          {
            "cvssV2": [],
            "cvssV3": [
              {
                "attackComplexity": "LOW",
                "attackVector": "NETWORK",
                "author": "nvd@nist.gov",
                "availabilityImpact": "HIGH",
                "baseScore": 7.5,
                "baseSeverity": "HIGH",
                "confidentialityImpact": "NONE",
                "exploitabilityScore": 3.9,
                "id": "CVE-2023-44487",
                "impactScore": 3.6,
                "integrityImpact": "NONE",
                "privilegesRequired": "NONE",
                "scope": "UNCHANGED",
                "trust": 2.0,
                "userInteraction": "NONE",
                "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
                "version": "3.1"
              }
            ],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2023-44487",
                "trust": 1.0,
                "value": "HIGH"
              },
              {
                "author": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
                "id": "CVE-2023-44487",
                "trust": 1.0,
                "value": "HIGH"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2023-44487"
          },
          {
            "db": "NVD",
            "id": "CVE-2023-44487"
          }
        ]
      },
      "description": {
        "_id": null,
        "data": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023. -----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA512\n\n- -------------------------------------------------------------------------\nDebian Security Advisory DSA-5540-1                   security@debian.org\nhttps://www.debian.org/security/                          Markus Koschany\nOctober 30, 2023                      https://www.debian.org/security/faq\n- -------------------------------------------------------------------------\n\nPackage        : jetty9\nCVE ID         : CVE-2023-36478 CVE-2023-44487\n\nTwo remotely exploitable security vulnerabilities were discovered in Jetty 9, a\nJava based web server and servlet engine. The HTTP/2 protocol implementation\ndid not sufficiently verify if HPACK header values exceed their size limit. This\nproblem is also known as Rapid Reset Attack. \n\nFor the oldstable distribution (bullseye), these problems have been fixed\nin version 9.4.50-4+deb11u1. \n\nFor the stable distribution (bookworm), these problems have been fixed in\nversion 9.4.50-4+deb12u2. \n\nWe recommend that you upgrade your jetty9 packages. \n\nFor the detailed security status of jetty9 please refer to\nits security tracker page at:\nhttps://security-tracker.debian.org/tracker/jetty9\n\nFurther information about Debian Security Advisories, how to apply\nthese updates to your system and frequently asked questions can be\nfound at: https://www.debian.org/security/\n\nMailing list: debian-security-announce@lists.debian.org\n-----BEGIN PGP SIGNATURE-----\n\niQKTBAEBCgB9FiEErPPQiO8y7e9qGoNf2a0UuVE7UeQFAmVABttfFIAAAAAALgAo\naXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEFD\nRjNEMDg4RUYzMkVERUY2QTFBODM1RkQ5QUQxNEI5NTEzQjUxRTQACgkQ2a0UuVE7\nUeTJ2g/9E8TKXU1Mko9WhumkvRQNsYxAM43L/gmYMRm4JEqhqpjHHZECJIOAVyxs\nuN0uE13T+JckplIAhfdsZgbmDDNjASyFWv9OfOdf2h4Y9ZhoXP22MXI2MjKb9MSH\nKfmPtX4S95UyF/Ty0kK17W63p4EvtNlcgRokx5yFpUF/rN72GXVx25W6WQ1pSHrJ\nESJMqOr8d3Wn5/4yaPEunQrvPa4WkQSTv8nHAIxIenP3wiNuK2tZWN6GCAdbirQp\nMWt282W/ueGcRDq8UJB2tWkxqx8CNnqeIeh0LpaSZRbaf62DChtyj+5OnYyhwBTk\n1mhwuveCFtNzRQyHRBrOrVWRAG43ktSyEYG90Il9iDchQROi0sJkQFVB0TXG6FnC\nhIFBcPw9VW5+7I+4gxexhpguq/SXZV9V9QH+jSeEBOgdKY/qX0farjElmhgFLRuS\n/weJAqnc9C6w4BB7gnE9ow4nbGqKqMEj1yoO8itMhCWBCaEIia0INpao7pfpf/9r\nKekLFoi6Gux0gqVMhhBw3latxW9zth93tNEeuuGb+kP/TDreBVkZnqrYVbtj49Wv\nIMX77Q8OB/TDQ8K5cEq05wcq59TIkAaVKGrP3sXsjbt4umbkjhbp8Oxv+chMOgPQ\nE8ThC0Q+lbZ4nth0vw2R93ObMfzlxZN2YJUqKf3aw/yAKd8YIys=CO/+\n-----END PGP SIGNATURE-----\n. \n\n\n\n\nDescription:\n\nRed Hat AMQ Streams, based on the Apache Kafka project, offers a distributed backbone that allows microservices and other applications to share data with extremely high throughput and extremely low latency. This could result\nin denial of service. \n\n\n\n\nDescription:\n\nnghttp2 contains the Hypertext Transfer Protocol version 2 (HTTP/2) client, server, and proxy programs as well as a library implementing the HTTP/2 protocol in C. \n\n\n\n\nDescription:\n\nNode.js is a software development platform for building fast and scalable network applications in the JavaScript programming language. \n\n\n\n\nDescription:\n\n.NET is a managed-software framework. It implements a subset of the .NET framework APIs and several new APIs, and it includes a CLR implementation. \n\nNew versions of .NET that address a security vulnerability are now available. The updated versions are .NET 6.0 to SDK 6.0.123 and Runtime 6.0.23. \n\nThe following advisory data is extracted from:\n\nhttps://access.redhat.com/security/data/csaf/v2/advisories/2023/rhsa-2023_7481.json\n\nRed Hat officially shut down their mailing list notifications October 10, 2023.  Due to this, Packet Storm has recreated the below data as a reference point to raise awareness.  It must be noted that due to an inability to easily track revision updates without crawling Red Hat\u0027s archive, these advisories are single notifications and we strongly suggest that you visit the Red Hat provided links to ensure you have the latest information available if the subject matter listed pertains to your environment. \n\n- Packet Storm Staff\n\n\n\n\n====================================================================\nRed Hat Security Advisory\n\nSynopsis:           Important: OpenShift Container Platform 4.11.54 packages and security update\nAdvisory ID:        RHSA-2023:7481-01\nProduct:            Red Hat OpenShift Enterprise\nAdvisory URL:       https://access.redhat.com/errata/RHSA-2023:7481\nIssue date:         2023-11-29\nRevision:           01\nCVE Names:          CVE-2023-44487\n====================================================================\n\nSummary: \n\nRed Hat OpenShift Container Platform release 4.11.54 is now available with updates to packages and images that fix several bugs and add enhancements. \n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.11. \n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section. \n\n\n\n\nDescription:\n\nRed Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments. \n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.11.54. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2023:7479\n\nSecurity Fix(es):\n\n* HTTP/2: Multiple HTTP/2 enabled web servers are vulnerable to a DDoS\nattack (Rapid Reset Attack) (CVE-2023-44487)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section. \n\nAll OpenShift Container Platform 4.11 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.openshift.com/container-platform/4.11/updating/updating-cluster-cli.html\n\n\nSolution:\n\nhttps://docs.openshift.com/container-platform/4.11/release_notes/ocp-4-11-release-notes.html\n\n\n\nCVEs:\n\nCVE-2023-44487\n\nReferences:\n\nhttps://access.redhat.com/security/updates/classification/#important\nhttps://bugzilla.redhat.com/show_bug.cgi?id=2242803\n\n. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nGentoo Linux Security Advisory                           GLSA 202408-10\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n                                           https://security.gentoo.org/\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\n Severity: Normal\n    Title: nghttp2: Multiple Vulnerabilities\n     Date: August 07, 2024\n     Bugs: #915554, #928541\n       ID: 202408-10\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\nSynopsis\n========\n\nMultiple vulnerabilities have been discovered in nghttp2, the worst of\nwhich could lead to a denial of service. \n\nBackground\n==========\n\nNghttp2 is an implementation of HTTP/2 and its header compression\nalgorithm HPACK in C. \n\nAffected packages\n=================\n\nPackage           Vulnerable    Unaffected\n----------------  ------------  ------------\nnet-libs/nghttp2  \u003c 1.61.0      \u003e= 1.61.0\n\nDescription\n===========\n\nMultiple vulnerabilities have been discovered in nghttp2. Please review\nthe CVE identifiers referenced below for details. \n\nImpact\n======\n\nPlease review the referenced CVE identifiers for details. \n\nWorkaround\n==========\n\nThere is no known workaround at this time. \n\nResolution\n==========\n\nAll nghttp2 users should upgrade to the latest version:\n\n  # emerge --sync\n  # emerge --ask --oneshot --verbose \"\u003e=net-libs/nghttp2-1.61.0\"\n\nReferences\n==========\n\n[ 1 ] CVE-2023-44487\n      https://nvd.nist.gov/vuln/detail/CVE-2023-44487\n[ 2 ] CVE-2024-28182\n      https://nvd.nist.gov/vuln/detail/CVE-2024-28182\n\nAvailability\n============\n\nThis GLSA and any updates to it are available for viewing at\nthe Gentoo Security Website:\n\n https://security.gentoo.org/glsa/202408-10\n\nConcerns?\n=========\n\nSecurity is a primary focus of Gentoo Linux and ensuring the\nconfidentiality and security of our users\u0027 machines is of utmost\nimportance to us. Any security concerns should be addressed to\nsecurity@gentoo.org or alternatively, you may file a bug at\nhttps://bugs.gentoo.org. \n\nLicense\n=======\n\nCopyright 2024 Gentoo Foundation, Inc; referenced text\nbelongs to its owner(s). \n\nThe contents of this document are licensed under the\nCreative Commons - Attribution / Share Alike license. \n\nhttps://creativecommons.org/licenses/by-sa/2.5\n",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2023-44487"
          },
          {
            "db": "PACKETSTORM",
            "id": "175650"
          },
          {
            "db": "PACKETSTORM",
            "id": "175437"
          },
          {
            "db": "PACKETSTORM",
            "id": "175270"
          },
          {
            "db": "PACKETSTORM",
            "id": "176035"
          },
          {
            "db": "PACKETSTORM",
            "id": "175126"
          },
          {
            "db": "PACKETSTORM",
            "id": "175179"
          },
          {
            "db": "PACKETSTORM",
            "id": "175159"
          },
          {
            "db": "PACKETSTORM",
            "id": "175970"
          },
          {
            "db": "PACKETSTORM",
            "id": "179956"
          }
        ],
        "trust": 1.71
      },
      "external_ids": {
        "_id": null,
        "data": [
          {
            "db": "NVD",
            "id": "CVE-2023-44487",
            "trust": 1.9
          },
          {
            "db": "OPENWALL",
            "id": "OSS-SECURITY/2023/10/19/6",
            "trust": 1.0
          },
          {
            "db": "OPENWALL",
            "id": "OSS-SECURITY/2023/10/10/6",
            "trust": 1.0
          },
          {
            "db": "OPENWALL",
            "id": "OSS-SECURITY/2023/10/20/8",
            "trust": 1.0
          },
          {
            "db": "OPENWALL",
            "id": "OSS-SECURITY/2023/10/18/4",
            "trust": 1.0
          },
          {
            "db": "OPENWALL",
            "id": "OSS-SECURITY/2023/10/10/7",
            "trust": 1.0
          },
          {
            "db": "OPENWALL",
            "id": "OSS-SECURITY/2023/10/18/8",
            "trust": 1.0
          },
          {
            "db": "OPENWALL",
            "id": "OSS-SECURITY/2023/10/13/4",
            "trust": 1.0
          },
          {
            "db": "OPENWALL",
            "id": "OSS-SECURITY/2023/10/13/9",
            "trust": 1.0
          },
          {
            "db": "OPENWALL",
            "id": "OSS-SECURITY/2025/08/13/6",
            "trust": 1.0
          },
          {
            "db": "PACKETSTORM",
            "id": "175650",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "175437",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "175270",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "176035",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "175126",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "175179",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "175159",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "175970",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "179956",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "PACKETSTORM",
            "id": "175650"
          },
          {
            "db": "PACKETSTORM",
            "id": "175437"
          },
          {
            "db": "PACKETSTORM",
            "id": "175270"
          },
          {
            "db": "PACKETSTORM",
            "id": "176035"
          },
          {
            "db": "PACKETSTORM",
            "id": "175126"
          },
          {
            "db": "PACKETSTORM",
            "id": "175179"
          },
          {
            "db": "PACKETSTORM",
            "id": "175159"
          },
          {
            "db": "PACKETSTORM",
            "id": "175970"
          },
          {
            "db": "PACKETSTORM",
            "id": "179956"
          },
          {
            "db": "NVD",
            "id": "CVE-2023-44487"
          }
        ]
      },
      "id": "VAR-202310-0175",
      "iot": {
        "_id": null,
        "data": true,
        "sources": [
          {
            "db": "VARIoT devices database",
            "id": null
          }
        ],
        "trust": 0.38473925200000003
      },
      "last_update_date": "2026-04-10T22:02:50.262000Z",
      "problemtype_data": {
        "_id": null,
        "data": [
          {
            "problemtype": "CWE-400",
            "trust": 1.0
          },
          {
            "problemtype": "NVD-CWE-noinfo",
            "trust": 1.0
          }
        ],
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2023-44487"
          }
        ]
      },
      "references": {
        "_id": null,
        "data": [
          {
            "trust": 2.0,
            "url": "http://www.openwall.com/lists/oss-security/2023/10/10/6"
          },
          {
            "trust": 1.1,
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2242803"
          },
          {
            "trust": 1.0,
            "url": "http://www.openwall.com/lists/oss-security/2023/10/18/8"
          },
          {
            "trust": 1.0,
            "url": "https://bugzilla.suse.com/show_bug.cgi?id=1216123"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/wlprq5twuqqxywbjm7ecydail2yvkiuh/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/nodejs/node/pull/50121"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/kubernetes/kubernetes/pull/121120"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/dotnet/announcements/issues/277"
          },
          {
            "trust": 1.0,
            "url": "https://istio.io/latest/news/security/istio-security-2023-004/"
          },
          {
            "trust": 1.0,
            "url": "https://cgit.freebsd.org/ports/commit/?id=c64c329c2c1752f46b73e3e6ce9f4329be6629f9"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/haproxy/haproxy/issues/2312"
          },
          {
            "trust": 1.0,
            "url": "https://martinthomson.github.io/h2-stream-limits/draft-thomson-httpbis-h2-stream-limits.html"
          },
          {
            "trust": 1.0,
            "url": "https://discuss.hashicorp.com/t/hcsec-2023-32-vault-consul-and-boundary-affected-by-http-2-rapid-reset-denial-of-service-vulnerability-cve-2023-44487/59715"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/envoyproxy/envoy/pull/30055"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/lkyhszqfdnr7rsa7lhvlliaqmvycugbg/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.apache.org/thread/5py8h42mxfsn8l1wy6o41xwhsjlsd87q"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/oqtane/oqtane.framework/discussions/3367"
          },
          {
            "trust": 1.0,
            "url": "https://blog.vespa.ai/cve-2023-44487/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/kazu-yamamoto/http2/issues/93"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/zkqsikiat5tj3wslu3rdbq35yx4gy4v3/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/netty/netty/commit/58f75f665aa81a8cbcf6ffa74820042a285c5e61"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/advisories/ghsa-qppj-fm5r-hxr3"
          },
          {
            "trust": 1.0,
            "url": "https://bugzilla.proxmox.com/show_bug.cgi?id=4988"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/vsrdiv77hnkusm7sjc5bke5jshlhu2nk/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/h2o/h2o/security/advisories/ghsa-2m7v-gc89-fjqf"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/grpc/grpc-go/pull/6703"
          },
          {
            "trust": 1.0,
            "url": "https://www.debian.org/security/2023/dsa-5558"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/h2o/h2o/pull/3291"
          },
          {
            "trust": 1.0,
            "url": "https://seanmonstar.com/post/730794151136935936/hyper-http2-rapid-reset-unaffected"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/apache/httpd/blob/afcdbeebbff4b0c50ea26cdd16e178c0d1f24152/modules/http2/h2_mplx.c#l1101-l1113"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/fna62q767cfafhbcdkynpbmzwb7twyvu/"
          },
          {
            "trust": 1.0,
            "url": "https://www.cisa.gov/news-events/alerts/2023/10/10/http2-rapid-reset-vulnerability-cve-2023-44487"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/zb43remkrqr62njei7i5nq4fsxnlbkrt/"
          },
          {
            "trust": 1.0,
            "url": "https://www.darkreading.com/cloud/internet-wide-zero-day-bug-fuels-largest-ever-ddos-event"
          },
          {
            "trust": 1.0,
            "url": "https://www.theregister.com/2023/10/10/http2_rapid_reset_zeroday/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/bcdannyboy/cve-2023-44487"
          },
          {
            "trust": 1.0,
            "url": "https://www.nginx.com/blog/http-2-rapid-reset-attack-impacting-f5-nginx-products/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/ht7t2r4mqklif4odv4bdlparwfpcj5cz/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/ninenines/cowboy/issues/1615"
          },
          {
            "trust": 1.0,
            "url": "http://www.openwall.com/lists/oss-security/2023/10/10/7"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/facebook/proxygen/pull/466"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/jizsefc3ykcgaba2bzw6zjrmdzjmb7pj/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/apache/tomcat/tree/main/java/org/apache/coyote/http2"
          },
          {
            "trust": 1.0,
            "url": "https://netty.io/news/2023/10/10/4-1-100-final.html"
          },
          {
            "trust": 1.0,
            "url": "https://news.ycombinator.com/item?id=37830987"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3n4nj7fr4x4fpzugntqapstvb2hb2y4a/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/we2i52rhnnu42px6nz2rbuhsffj2lvzx/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/tempesta-tech/tempesta/issues/1986"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/dotnet/core/blob/e4613450ea0da7fd2fc6b61dfb2c1c1dec1ce9ec/release-notes/6.0/6.0.23/6.0.23.md?plain=1#l73"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ht7t2r4mqklif4odv4bdlparwfpcj5cz/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/akka/akka-http/issues/4323"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/lkyhszqfdnr7rsa7lhvlliaqmvycugbg/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/nghttp2/nghttp2/releases/tag/v1.57.0"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/zb43remkrqr62njei7i5nq4fsxnlbkrt/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/vhuhtsxlxgxs7jykbxta3vinuphtngvu/"
          },
          {
            "trust": 1.0,
            "url": "https://news.ycombinator.com/item?id=37830998"
          },
          {
            "trust": 1.0,
            "url": "https://security.netapp.com/advisory/ntap-20231016-0001/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/jmexy22bfg5q64hqcm5ck2q7kdkvv4ty/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/bfqd3kuemfbhpapbglwqc34l4owl5haz/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/we2i52rhnnu42px6nz2rbuhsffj2lvzx/"
          },
          {
            "trust": 1.0,
            "url": "https://www.debian.org/security/2023/dsa-5540"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/advisories/ghsa-vx74-f528-fxqg"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/x6qxn4orivf6xbw4wwfe7vnpvc74s45y/"
          },
          {
            "trust": 1.0,
            "url": "http://www.openwall.com/lists/oss-security/2025/08/13/6"
          },
          {
            "trust": 1.0,
            "url": "https://lists.debian.org/debian-lts-announce/2023/11/msg00001.html"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/icing/mod_h2/blob/0a864782af0a942aa2ad4ed960a6b32cd35bcf0a/mod_http2/readme.md?plain=1#l239-l244"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/e72t67updrxhidlo3oror25yamn4ggw5/"
          },
          {
            "trust": 1.0,
            "url": "https://security.netapp.com/advisory/ntap-20240621-0007/"
          },
          {
            "trust": 1.0,
            "url": "https://news.ycombinator.com/item?id=37831062"
          },
          {
            "trust": 1.0,
            "url": "https://ubuntu.com/security/cve-2023-44487"
          },
          {
            "trust": 1.0,
            "url": "https://security.netapp.com/advisory/ntap-20240426-0007/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/apache/httpd-site/pull/10"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/golang/go/issues/63417"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/lnmzjcdhgljjlxo4oxwjmtvqrnwoc7ul/"
          },
          {
            "trust": 1.0,
            "url": "https://blog.cloudflare.com/zero-day-rapid-reset-http2-record-breaking-ddos-attack/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/clb4tw7kalb3eeqwnwcn7ouiwwvwwcg2/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/grpc/grpc/releases/tag/v1.59.2"
          },
          {
            "trust": 1.0,
            "url": "https://lists.debian.org/debian-lts-announce/2023/11/msg00012.html"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/jizsefc3ykcgaba2bzw6zjrmdzjmb7pj/"
          },
          {
            "trust": 1.0,
            "url": "https://msrc.microsoft.com/update-guide/vulnerability/cve-2023-44487"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/advisories/ghsa-xpw8-rcwv-8f8p"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/kazu-yamamoto/http2/commit/f61d41a502bd0f60eb24e1ce14edc7b6df6722a1"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/vsrdiv77hnkusm7sjc5bke5jshlhu2nk/"
          },
          {
            "trust": 1.0,
            "url": "https://security.paloaltonetworks.com/cve-2023-44487"
          },
          {
            "trust": 1.0,
            "url": "https://forums.swift.org/t/swift-nio-http2-security-update-cve-2023-44487-http-2-dos/67764"
          },
          {
            "trust": 1.0,
            "url": "http://www.openwall.com/lists/oss-security/2023/10/20/8"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/e72t67updrxhidlo3oror25yamn4ggw5/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/ksegd2iwknuo3dwy4kqguqm5bisrwhqe/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/apache/trafficserver/pull/10564"
          },
          {
            "trust": 1.0,
            "url": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=cve-2023-44487"
          },
          {
            "trust": 1.0,
            "url": "https://cloud.google.com/blog/products/identity-security/how-it-works-the-novel-http2-rapid-reset-ddos-attack"
          },
          {
            "trust": 1.0,
            "url": "http://www.openwall.com/lists/oss-security/2023/10/13/4"
          },
          {
            "trust": 1.0,
            "url": "http://www.openwall.com/lists/oss-security/2023/10/19/6"
          },
          {
            "trust": 1.0,
            "url": "https://www.haproxy.com/blog/haproxy-is-not-affected-by-the-http-2-rapid-reset-attack-cve-2023-44487"
          },
          {
            "trust": 1.0,
            "url": "https://news.ycombinator.com/item?id=37837043"
          },
          {
            "trust": 1.0,
            "url": "https://cloud.google.com/blog/products/identity-security/google-cloud-mitigated-largest-ddos-attack-peaking-above-398-million-rps/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/2mbeppc36ubvozznaxfhklfgslcmn5li/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/projectcontour/contour/pull/5826"
          },
          {
            "trust": 1.0,
            "url": "https://lists.w3.org/archives/public/ietf-http-wg/2023octdec/0025.html"
          },
          {
            "trust": 1.0,
            "url": "https://gist.github.com/adulau/7c2bfb8e9cdbe4b35a5e131c66a0c088"
          },
          {
            "trust": 1.0,
            "url": "https://www.phoronix.com/news/http2-rapid-reset-attack"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/kong/kong/discussions/11741"
          },
          {
            "trust": 1.0,
            "url": "https://www.debian.org/security/2023/dsa-5549"
          },
          {
            "trust": 1.0,
            "url": "https://www.netlify.com/blog/netlify-successfully-mitigates-cve-2023-44487/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/bfqd3kuemfbhpapbglwqc34l4owl5haz/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/x6qxn4orivf6xbw4wwfe7vnpvc74s45y/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/zlu6u2r2ic2k64ndpnmv55auao65maf4/"
          },
          {
            "trust": 1.0,
            "url": "https://groups.google.com/g/golang-announce/c/innxdtcjzvo"
          },
          {
            "trust": 1.0,
            "url": "https://blog.qualys.com/vulnerabilities-threat-research/2023/10/10/cve-2023-44487-http-2-rapid-reset-attack"
          },
          {
            "trust": 1.0,
            "url": "https://security.gentoo.org/glsa/202311-09"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/micrictor/http2-rst-stream"
          },
          {
            "trust": 1.0,
            "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00024.html"
          },
          {
            "trust": 1.0,
            "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00020.html"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/vhuhtsxlxgxs7jykbxta3vinuphtngvu/"
          },
          {
            "trust": 1.0,
            "url": "https://mailman.nginx.org/pipermail/nginx-devel/2023-october/s36q5hbxr7caimpllprsssyr4pcmwilk.html"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/etcd-io/etcd/issues/16740"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/arkrwn/poc/tree/main/cve-2023-44487"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/zkqsikiat5tj3wslu3rdbq35yx4gy4v3/"
          },
          {
            "trust": 1.0,
            "url": "https://arstechnica.com/security/2023/10/how-ddosers-used-the-http-2-protocol-to-deliver-attacks-of-unprecedented-size/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/xfoibb4yfichdm7ibop7pwxw3fx4hll2/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/jmexy22bfg5q64hqcm5ck2q7kdkvv4ty/"
          },
          {
            "trust": 1.0,
            "url": "https://www.bleepingcomputer.com/news/security/new-http-2-rapid-reset-zero-day-attack-breaks-ddos-records/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/microsoft/cbl-mariner/pull/6381"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/lnmzjcdhgljjlxo4oxwjmtvqrnwoc7ul/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/linkerd/website/pull/1695/commits/4b9c6836471bc8270ab48aae6fd2181bc73fd632"
          },
          {
            "trust": 1.0,
            "url": "https://blog.litespeedtech.com/2023/10/11/rapid-reset-http-2-vulnerablilty/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/fna62q767cfafhbcdkynpbmzwb7twyvu/"
          },
          {
            "trust": 1.0,
            "url": "https://my.f5.com/manage/s/article/k000137106"
          },
          {
            "trust": 1.0,
            "url": "https://security.netapp.com/advisory/ntap-20240621-0006/"
          },
          {
            "trust": 1.0,
            "url": "https://openssf.org/blog/2023/10/10/http-2-rapid-reset-vulnerability-highlights-need-for-rapid-response/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/eclipse/jetty.project/issues/10679"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/3n4nj7fr4x4fpzugntqapstvb2hb2y4a/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/junkurihara/rust-rpxy/issues/97"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ksegd2iwknuo3dwy4kqguqm5bisrwhqe/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/apache/apisix/issues/10320"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/caddyserver/caddy/releases/tag/v2.7.5"
          },
          {
            "trust": 1.0,
            "url": "https://www.debian.org/security/2023/dsa-5521"
          },
          {
            "trust": 1.0,
            "url": "https://blog.cloudflare.com/technical-breakdown-http2-rapid-reset-ddos-attack/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/line/armeria/pull/5232"
          },
          {
            "trust": 1.0,
            "url": "http://www.openwall.com/lists/oss-security/2023/10/13/9"
          },
          {
            "trust": 1.0,
            "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00045.html"
          },
          {
            "trust": 1.0,
            "url": "http://www.openwall.com/lists/oss-security/2023/10/18/4"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/openresty/openresty/issues/930"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2mbeppc36ubvozznaxfhklfgslcmn5li/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/clb4tw7kalb3eeqwnwcn7ouiwwvwwcg2/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/caddyserver/caddy/issues/5877"
          },
          {
            "trust": 1.0,
            "url": "https://sec.cloudapps.cisco.com/security/center/content/ciscosecurityadvisory/cisco-sa-http2-reset-d8kf32vz"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/alibaba/tengine/issues/1872"
          },
          {
            "trust": 1.0,
            "url": "https://edg.io/lp/blog/resets-leaks-ddos-and-the-tale-of-a-hidden-cve"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/xfoibb4yfichdm7ibop7pwxw3fx4hll2/"
          },
          {
            "trust": 1.0,
            "url": "https://linkerd.io/2023/10/12/linkerd-cve-2023-44487/"
          },
          {
            "trust": 1.0,
            "url": "https://www.debian.org/security/2023/dsa-5522"
          },
          {
            "trust": 1.0,
            "url": "https://access.redhat.com/security/cve/cve-2023-44487"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/wlprq5twuqqxywbjm7ecydail2yvkiuh/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/zlu6u2r2ic2k64ndpnmv55auao65maf4/"
          },
          {
            "trust": 1.0,
            "url": "https://community.traefik.io/t/is-traefik-vulnerable-to-cve-2023-44487/20125"
          },
          {
            "trust": 1.0,
            "url": "https://www.vicarius.io/vsociety/posts/rapid-reset-cve-2023-44487-dos-in-http2-understanding-the-root-cause"
          },
          {
            "trust": 1.0,
            "url": "https://aws.amazon.com/security/security-bulletins/aws-2023-011/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/varnishcache/varnish-cache/issues/3996"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/azure/aks/issues/3947"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/nghttp2/nghttp2/pull/1961"
          },
          {
            "trust": 1.0,
            "url": "https://tomcat.apache.org/security-10.html#fixed_in_apache_tomcat_10.1.14"
          },
          {
            "trust": 1.0,
            "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00023.html"
          },
          {
            "trust": 1.0,
            "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00047.html"
          },
          {
            "trust": 1.0,
            "url": "https://msrc.microsoft.com/blog/2023/10/microsoft-response-to-distributed-denial-of-service-ddos-attacks-against-http/2/"
          },
          {
            "trust": 1.0,
            "url": "https://github.com/opensearch-project/data-prepper/issues/3474"
          },
          {
            "trust": 1.0,
            "url": "https://www.debian.org/security/2023/dsa-5570"
          },
          {
            "trust": 0.9,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2023-44487"
          },
          {
            "trust": 0.5,
            "url": "https://access.redhat.com/security/updates/classification/#important"
          },
          {
            "trust": 0.4,
            "url": "https://access.redhat.com/security/vulnerabilities/rhsb-2023-003"
          },
          {
            "trust": 0.4,
            "url": "https://access.redhat.com/articles/11258"
          },
          {
            "trust": 0.3,
            "url": "https://www.debian.org/security/"
          },
          {
            "trust": 0.3,
            "url": "https://www.debian.org/security/faq"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2023-33934"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2022-47185"
          },
          {
            "trust": 0.1,
            "url": "https://security-tracker.debian.org/tracker/trafficserver"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2023-41752"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2023-39456"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2023-36478"
          },
          {
            "trust": 0.1,
            "url": "https://security-tracker.debian.org/tracker/jetty9"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/errata/rhsa-2023:5973"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/data/csaf/v2/advisories/2023/rhsa-2023_5973.json"
          },
          {
            "trust": 0.1,
            "url": "https://security-tracker.debian.org/tracker/nghttp2"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/errata/rhsa-2023:5766"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/data/csaf/v2/advisories/2023/rhsa-2023_5766.json"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/errata/rhsa-2023:5840"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/data/csaf/v2/advisories/2023/rhsa-2023_5840.json"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/errata/rhsa-2023:5707"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/data/csaf/v2/advisories/2023/rhsa-2023_5707.json"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/data/csaf/v2/advisories/2023/rhsa-2023_7481.json"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/errata/rhsa-2023:7479"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/errata/rhsa-2023:7481"
          },
          {
            "trust": 0.1,
            "url": "https://docs.openshift.com/container-platform/4.11/release_notes/ocp-4-11-release-notes.html"
          },
          {
            "trust": 0.1,
            "url": "https://docs.openshift.com/container-platform/4.11/updating/updating-cluster-cli.html"
          },
          {
            "trust": 0.1,
            "url": "https://security.gentoo.org/"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2024-28182"
          },
          {
            "trust": 0.1,
            "url": "https://security.gentoo.org/glsa/202408-10"
          },
          {
            "trust": 0.1,
            "url": "https://bugs.gentoo.org."
          },
          {
            "trust": 0.1,
            "url": "https://creativecommons.org/licenses/by-sa/2.5"
          }
        ],
        "sources": [
          {
            "db": "PACKETSTORM",
            "id": "175650"
          },
          {
            "db": "PACKETSTORM",
            "id": "175437"
          },
          {
            "db": "PACKETSTORM",
            "id": "175270"
          },
          {
            "db": "PACKETSTORM",
            "id": "176035"
          },
          {
            "db": "PACKETSTORM",
            "id": "175126"
          },
          {
            "db": "PACKETSTORM",
            "id": "175179"
          },
          {
            "db": "PACKETSTORM",
            "id": "175159"
          },
          {
            "db": "PACKETSTORM",
            "id": "175970"
          },
          {
            "db": "PACKETSTORM",
            "id": "179956"
          },
          {
            "db": "NVD",
            "id": "CVE-2023-44487"
          }
        ]
      },
      "sources": {
        "_id": null,
        "data": [
          {
            "db": "PACKETSTORM",
            "id": "175650",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "175437",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "175270",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "176035",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "175126",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "175179",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "175159",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "175970",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "179956",
            "ident": null
          },
          {
            "db": "NVD",
            "id": "CVE-2023-44487",
            "ident": null
          }
        ]
      },
      "sources_release_date": {
        "_id": null,
        "data": [
          {
            "date": "2023-11-13T22:11:28",
            "db": "PACKETSTORM",
            "id": "175650",
            "ident": null
          },
          {
            "date": "2023-10-31T13:13:14",
            "db": "PACKETSTORM",
            "id": "175437",
            "ident": null
          },
          {
            "date": "2023-10-23T14:26:00",
            "db": "PACKETSTORM",
            "id": "175270",
            "ident": null
          },
          {
            "date": "2023-12-04T13:45:34",
            "db": "PACKETSTORM",
            "id": "176035",
            "ident": null
          },
          {
            "date": "2023-10-17T15:39:55",
            "db": "PACKETSTORM",
            "id": "175126",
            "ident": null
          },
          {
            "date": "2023-10-18T16:28:09",
            "db": "PACKETSTORM",
            "id": "175179",
            "ident": null
          },
          {
            "date": "2023-10-18T16:22:55",
            "db": "PACKETSTORM",
            "id": "175159",
            "ident": null
          },
          {
            "date": "2023-11-29T12:44:32",
            "db": "PACKETSTORM",
            "id": "175970",
            "ident": null
          },
          {
            "date": "2024-08-07T14:45:35",
            "db": "PACKETSTORM",
            "id": "179956",
            "ident": null
          },
          {
            "date": "2023-10-10T14:15:10.883000",
            "db": "NVD",
            "id": "CVE-2023-44487",
            "ident": null
          }
        ]
      },
      "sources_update_date": {
        "_id": null,
        "data": [
          {
            "date": "2025-11-07T19:00:41.810000",
            "db": "NVD",
            "id": "CVE-2023-44487",
            "ident": null
          }
        ]
      },
      "title": {
        "_id": null,
        "data": "Debian Security Advisory 5549-1",
        "sources": [
          {
            "db": "PACKETSTORM",
            "id": "175650"
          }
        ],
        "trust": 0.1
      },
      "type": {
        "_id": null,
        "data": "info disclosure",
        "sources": [
          {
            "db": "PACKETSTORM",
            "id": "175650"
          }
        ],
        "trust": 0.1
      }
    }

    VAR-200408-0145

    Vulnerability from variot - Updated: 2026-03-09 22:48

    TCP, when using a large Window Size, makes it easier for remote attackers to guess sequence numbers and cause a denial of service (connection loss) to persistent TCP connections by repeatedly injecting a TCP RST packet, especially in protocols that use long-lived connections, such as BGP. A vulnerability exists in the reliance of the Border Gateway Protocol (BGP) on the Transmission Control Protocol (TCP) to maintain persistent sessions. Sustained exploitation of this vulnerability could lead to a denial-of-service condition affecting a large segment of the Internet community. Normal operations would most likely resume shortly after the attack stopped. TCP Has a sequence number TCP There is a problem that it is justified if it is within the window. Therefore, there is a vulnerability that makes it easy to guess the external sequence number when establishing a long-term connection that increases the window size. Note that products affected by this vulnerability TCP Covers many products with implementation. For more information, NISCC-236929 (JVN) , NISCC Advisory 236929 (CPNI Advisory 00391) Please check also.A third party TCP By predicting the sequence number of a particular TCP Service operation interruption such as forcibly terminating a connection (DoS) There is a possibility of being attacked. A vulnerability in TCP implementations may permit unauthorized remote users to reset TCP sessions. This issue affects products released by multiple vendors. Exploiting this issue may permit remote attackers to more easily approximate TCP sequence numbers. This will permit a remote attacker to inject a SYN or RST packet into the session, causing it to be reset and effectively allowing denial-of-service attacks. An attacker would exploit this issue by sending a packet to a receiving implementation with an approximated sequence number and a forged source IP and TCP port. Few factors may present viable target implementations, such as imlementations that: - depend on long-lived TCP connections - have known or easily guessed IP address endpoints - have known or easily guessed TCP source ports. As a result, this issue is likely to affect a number of routing platforms. Note also that while a number of vendors have confirmed this issue in various products, investigations are ongoing and it is likely that many other vendors and products will turn out to be vulnerable as the issue is investigated further. Other consequences may also result from this issue, such as injecting specific data in TCP sessions, but this has not been confirmed. **Update: Microsoft platforms are also reported prone to this vulnerability. Vendor reports indicate that an attacker will require knowledge of the IP address and port numbers of the source and destination of an existent legitimate TCP connection in order to exploit this vulnerability on Microsoft platforms. The following products and versions are affected: Oracle Solaris 10, 11; Openpgp 2.6.2; Mcafee Network Data Loss Prevention 8.6 and earlier, 9.2.0, 9.2.1, 9.2.2; Netbsd 1.5, Version 1.5.1, Version 1.5.2, Version 1.5.3, Version 1.6, Version 1.6.1, Version 1.6.2, Version 2.0; Xinuos Openserver Version 5.0.6, Version 5.0.7; Juniper Networks Junos OS; Xinuos Unixware Version 7.1.1, Version 7.1.3.


    Want a new IT Security job?

    Vacant positions at Secunia: http://secunia.com/secunia_vacancies/


    TITLE: Avaya Intuity Audix TCP Connection Reset Vulnerability

    SECUNIA ADVISORY ID: SA15263

    VERIFY ADVISORY: http://secunia.com/advisories/15263/

    CRITICAL: Less critical

    IMPACT: DoS

    WHERE:

    From remote

    OPERATING SYSTEM: Avaya Intuity Audix R5 http://secunia.com/product/4586/

    DESCRIPTION: Avaya has acknowledged a vulnerability in Intuity Audix, which can be exploited by malicious people to reset established TCP connections on a vulnerable system.

    For more information: SA11440

    SOLUTION: A patch will reportedly be included in the next major release.

    ORIGINAL ADVISORY: Avaya: http://support.avaya.com/elmodocs2/security/ASA-2005-097_SCASA-2005-14.pdf

    OTHER REFERENCES: SA11440: http://secunia.com/advisories/11440/


    About: This Advisory was delivered by Secunia as a free service to help everybody keeping their systems up to date against the latest vulnerabilities.

    Subscribe: http://secunia.com/secunia_security_advisories/

    Definitions: (Criticality, Where etc.) http://secunia.com/about_secunia_advisories/

    Please Note: Secunia recommends that you verify all advisories you receive by clicking the link. Secunia NEVER sends attached files with advisories. Secunia does not advise people to install third party patches, only use those supplied by the vendor. Routing operations would recover quickly after such attacks ended.

    I. Description

    In 2001, the CERT Coordination Center released CA-2001-09, describing statistical weaknesses in various TCP/IP Initial Sequence generators. In that document (http://www.cert.org/advisories/CA-2001-09.html), it was noted by Tim Newsham:

     [I]f a sequence number within the receive window is known, an
     attacker can inject data into the session stream or terminate the
     connection. If the ISN value is known and the number of bytes sent
     already sent is known, an attacker can send a simple packet to
     inject data or kill the session.
    

    Paul Watson has performed the statistical analysis of this attack when the ISN is not known and has pointed out that such an attack could be viable when specifically taking into account the TCP Window size. He has also created a proof-of-concept tool demonstrating the practicality of the attack. The National Infrastructure Security Co-Ordination Centre (NISCC) has published an advisory summarizing Paul Watson's analysis in "NISCC Vulnerability Advisory 236929," available at http://www.uniras.gov.uk/vuls/2004/236929/index.htm.

    Since TCP is an insecure protocol, it is possible to inject transport-layer packets into sessions between hosts given the right preconditions. For detailed information about BGP and some tips for securing it, please see Cisco System's documentation (http://www.cisco.com/univercd/cc/td/doc/cisintwk/ito_doc/bgp.htm or Team Cymru (http://www.cymru.com/). This may result in a brief loss of service until the fresh routing tables are created. When this is taken into account, instead of attempting to send a spoofed packet with all potential sequence numbers, the attacker would only need to calculate an valid sequence number that falls within the next expected ISN plus or minus half the window size. According to Paul Watson's report, with a typical xDSL data connection (80 Kbps, upstream) capable of sending of 250 packets per second (pps) to a session with a TCP Window size of 65,535 bytes, it would be possible to inject a TCP packet approximately every 5 minutes. It would take approximately 15 seconds with a T-1 (1.544 Mbps) connection. These numbers are significant when large numbers of compromised machines (often called "botnets" or "zombies") can be used to generate large amounts of packets that can be directed at a particular host.

    To protect against such injections, RFC 2385 provides a method of using MD5 signatures on the TCP Headers. If this form of verification is supported and enabled between two peers, then an attacker would have to obtain the key used to transmit the packet in order to successfully inject a packet into the TCP session. Another alternative would be to tunnel BGP over IPSec. Again, this would provide a form of authentication between the BGP peers and the data that they transmit. The lack of authentication when using TCP for BGP makes this type of attack more viable.

    US-CERT is tracking this issue as VU#415294. This reference number corresponds to CVE candidate CAN-2004-0230. NISCC is tracking this issue as Advisory 236929.

    II. Impacts could range from data corruption or session hijacking to a denial-of-service condition.

    III. Solution

    Apply a patch from your vendor

    Please see you vendor's statement regarding the availability of patches, updates and mitigation strategies. The lack of cryptographically-strong security options for the TCP header itself is a deficiency that technologies like IPSec try to address. It must be noted that in the final analysis that if an attacker has the ability to see unencrypted TCP traffic generated from a site, that site is vulnerable to various TCP attacks - not just those mentioned here. A stronger measure that would aid in protecting against such TCP attacks is end-to-end cryptographic solutions like those outlined in various IPSec documents.

    The key idea with an end-to-end cryptographic solution is that there is some secure verification that a given packet belongs in a particular stream. However, the communications layer at which this cryptography is implemented will determine its effectiveness in repelling ISN based attacks. Solutions that operate above the Transport Layer (OSI Layer 4), such as SSL/TLS and SSH1/SSH2, only prevent arbitrary packets from being inserted into a session. They are unable to prevent a connection reset (denial of service) since the connection handling will be done by a lower level protocol (i.e., TCP). On the other hand, Network Layer (OSI Layer 3) cryptographic solutions such as IPSec prevent both arbitrary packets entering a transport-layer stream and connection resets because connection management is directly integrated into the secure Network Layer security model.

    The solutions presented above have the desirable attribute of not requiring any changes to the TCP protocol or implementations to be made. RFC2385 ("Protection of BGP Sessions via the TCP MD5 Signature Option") and other technologies provide options for adding cryptographic protection within the TCP header at the cost of some potential denial of service, interoperability, and performance issues.

    Ingress filtering

    Ingress filtering manages the flow of traffic as it enters a network under your administrative control. You can configure your BGP routers to only accept packets on a specific network connection. Servers are typically the only machines that need to accept inbound connections from the public Internet. In the network usage policy of many sites, there are few reasons for external hosts to initiate inbound connections to machines that provide no public services. Thus, ingress filtering should be performed at the border to prohibit externally initiated inbound connections to non-authorized services. In this fashion, the effectiveness of many intruder scanning techniques can be dramatically reduced.

    Network Isolation

    Complex networks can benefit by separating data channels and control channels, such as BGP, into different logical or physical networks. Technologies such as VLANs, VPNs, leased links, NAT may all be able to contribute to separating the tranmission of control information from the transmission of the data stream.

    Egress filtering

    Egress filtering manages the flow of traffic as it leaves a network under your administrative control. There is typically limited need for machines providing public services to initiate outbound connections to the Internet.

    In the case of BGP, only your BGP routers should be establishing connections to your peers. Other BGP traffic generated on your network could be a sign of an attempted attack.

    Appendix A. As vendors report new information to US-CERT, we will update the vulnerability note. If a particular vendor is not listed in either the NISCC advisory, or the vulnerability, we recommend that you contact them for their comments. ___________

    US-CERT thanks Paul Watson, Cisco Systems and NISCC for notifying us about this problem and for helping us to construct this advisory. ___________

    Feedback can be directed to the US-CERT Technical Staff. ___________

    Copyright 2004 Carnegie Mellon University. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1

    Cisco Security Advisory:\xa0TCP Vulnerabilities in Multiple IOS-Based Cisco Products

    Revision 1.0

    For Public Release 2004 April 20 21:00 UTC (GMT)


    Summary

    A vulnerability in the Transmission Control Protocol (TCP) specification (RFC793) has been discovered by an external researcher. The successful exploitation enables an adversary to reset any established TCP connection in a much shorter time than was previously discussed publicly. Depending on the application, the connection may get automatically re-established. In other cases, a user will have to repeat the action (for example, open a new Telnet or SSH session). Depending upon the attacked protocol, a successful attack may have additional consequences beyond terminated connection which must be considered. This attack vector is only applicable to the sessions which are terminating on a device (such as a router, switch, or computer) and not to the sessions that are only passing through the device (for example, transit traffic that is being routed by a router). In addition, this attack vector does not directly compromise data integrity or confidentiality.

    This advisory is available at http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-ios.shtml, and it describes this vulnerability as it applies to Cisco products that run Cisco IOS\xae software.

    A companion advisory that describes this vulnerability for products that do not run Cisco IOS software is available at http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-nonios.shtml. The severity of the exposure depends upon the protocols and applications that utilize TCP.

    This attack vector is only applicable to the sessions which are terminating on a device (such as a router, switch, or computer), and not to the sessions that are only passing through the device (for example, transit traffic that is being routed by a router).

    Details

    TCP is the transport layer protocol designed to provide connection-oriented reliable delivery of a data stream. To accomplish this, TCP uses a mixture of flags to indicate state and sequence numbers to identify the order in which the packets are to be reassembled. The acknowledgement number is not used in a packet with the reset (RST) flag set because a reset does not expect a packet in return. The full specification of the TCP protocol can be found at http://www.ietf.org/rfc/rfc0793.txt.

    According to the RFC793 specification, it is possible to reset an established TCP connection by sending a packet with the RST or synchronize (SYN) flag set. However, the sequence number does not have to be an exact match; it is sufficient to fall within the advertised window. This significantly decreases the effort required by an adversary: the larger the window, the easier it is to reset the connection. The destination TCP port is usually known for all standard services (for example, 23 for Telnet, 80 for HTTP). Cisco IOS software uses predictable ephemeral ports for known services with a predictable increment (the next port which will be used for a subsequent connection). These values, while constant for a particular Cisco IOS software version and protocol, can vary from one release to another.

    Here is an example of a normal termination of a TCP session:

                    Host(1)                       Host(2)
                      |                             |
                      |                             |
                      |  ACK ack=1001, window=5000  |
                      |<----------------------------|
                      |                             |
    
    
    
                  Host(1) is
    
             closing the session
    
    
    
                      |        RST seq=1001         |
                      |---------------------------->|
                      |                             |
    
    
    
                                                Host(2) is
    
                                            closing the session
    

    In addition, the following scenario is also permitted:

                    Host(1)                       Host(2)
                      |                             |
                      |                             |
                      |  ACK ack=1001, window=5000  |
                      |<----------------------------|
                      |                             |
    
    
    
                  Host(1) is
    
             closing the session
    
    
    
                      |        RST seq=4321         |
                      |---------------------------->|
                      |                             |
    
    
    
                                                Host(2) is
    
                                            closing the session
    

    Note how, in the second example, the RST packet was able to terminate the session although the sequence number was not the next expected one (which is 1001).

    As a general rule, all protocols where a TCP connection stays established for longer than one minute should be considered exposed.

    The exposure on this vulnerability can be described as follows:

    • Cisco IOS - All devices running Cisco IOS software are vulnerable. Sessions passing through the device are vulnerable only if the originating or receiving device is vulnerable, but they cannot be attacked on the router itself. This vulnerability does not compromise data integrity or confidentiality. It only affects availability.

      This vulnerability is documented in the Cisco Bug Toolkit as Bug IDs CSCed27956 ( registered customers only) and CSCed38527 ( registered customers only) .

    • Cisco IOS Firewall (IOS FW) - The Cisco IOS FW monitors packets passing throughout the router and maintains the session state internally. This way, it is possible to "open" required ports and allow traffic to pass and then close them after the session has finished. Since Cisco IOS FW intercepts and examines all packets passing through the device, all TCP sessions passing through the Cisco IOS FW are vulnerable to this attack. This is valid even if the originating and receiving devices themselves are not vulnerable.

      This vulnerability is documented in the Cisco Bug Toolkit as Bug ID CSCed93836 ( registered customers only) .

    • Network Address Translation (NAT) - This vulnerability does not have any effect on NAT. The NAT functionality simply rewrites ports and IP addresses. This feature does not interprete TCP flags and therefore is not vulnerable to this attack. However, the attacking packet will be passed through the router and the receiving device can be affected.

    Impact

    The impact will be different for each specific protocol. While in the majority of cases a TCP connection will be automatically re-established, in some specific protocols a second order of consequences may have a larger impact than tearing down the connection itself. Both external and internal (eBGP and iBGP) sessions are equally vulnerable. If an adversary tears down a BGP session between two routers, then all routes which were advertised between these two peers will be withdrawn. This would occur immediately for the router which has been attacked and after the next update/keepalive packet is sent by the other router. The BGP peering session itself will be re-established within a minute after the attack. Depending upon the exact routing configuration, withdrawal of the routes may have any of the following consequences:

    • No adverse effects at all if an appropriate static route(s) has(have) been defined on both sides of the affected session.

    • The traffic will be rerouted along other paths. This may cause some congestion along these paths.

    • A portion of the network will be completely isolated and unreachable.

    If a BGP peering session is broken a few times within a short time interval, then BGP route dampening may be invoked. Dampening means that affected routes will be withdrawn from the Internet routing table for some period of time. By default that time is 45 minutes. During that time, all of the traffic whose route was advertised over the attacked BGP session will either be rerouted or a portion of the network will be unreachable. Route dampening is not enabled by default.

    Cisco IOS Firewall Feature Set


    It is possible to terminate an established TCP-based connection even if both endpoints are not vulnerable to this attack.

    Software Versions and Fixes

    Each row of the table describes a release train and the platforms or products for which it is intended. If a given release train is vulnerable, then the earliest possible releases that contain the fix and the anticipated date of availability for each are listed in the Rebuild, Interim, and Maintenance columns. In some cases, no rebuild of a particular release is planned; this is marked with the label "Not scheduled." A device running any release in the given train that is earlier than the release in a specific column (less than the earliest fixed release) is known to be vulnerable, and it should be upgraded at least to the indicated release or a later version (greater than the earliest fixed release label).

    When selecting a release, keep in mind the following definitions:

    • Maintenance Most heavily tested and highly recommended release of any label in a given row of the table.

    • Rebuild Constructed from the previous maintenance or major release in the same train, it contains the fix for a specific vulnerability. Although it receives less testing, it contains only the minimal changes necessary to effect the repair. Cisco has made available several rebuilds of mainline trains to address this vulnerability, but strongly recommends running only the latest maintenance release on mainline trains.

    • Interim Built at regular intervals between maintenance releases and receives less testing. Interims should be selected only if there is no other suitable release that addresses the vulnerability, and interim images should be upgraded to the next available maintenance release as soon as possible. Interim releases are not available through manufacturing, and usually they are not available for customer download from CCO without prior arrangement with the Cisco Technical Assistance Center (TAC).

    In all cases, customers should exercise caution to be certain the devices to be upgraded contain sufficient memory and that current hardware and software configurations will continue to be supported properly by the new release. If the information is not clear, contact the Cisco TAC for assistance, as shown in the section following this table.

    Fixed Cisco IOS Software Images for Cisco IOS Firewall

    +------------+---------------------------------+ | Major | Availability of Repaired | | Release | Releases* | +------------+---------+---------+-------------+ | Affected | Rebuild | Interim | Maintenance | | 12.1-Based | | ** | | | Release | | | | +------------+---------+---------+-------------+ | 12.1 | 12.1 | | | | | (22c) | | | +------------+---------+---------+-------------+ | 12.1E | 12.1 | | | | | (19)E7 | | | | +---------+---------+-------------+ | | | | | +------------+---------+---------+-------------+ | Affected | Rebuild | Interim | Maintenance | | 12.2-Based | | ** | | | Release | | | | +------------+---------+---------+-------------+ | 12.2 | 12.2 | | | | | (21b) | | | | +---------+---------+-------------+ | | 12.2 | | | | | (23a) | | | +------------+---------+---------+-------------+ | 12.2T | 12.2 | | | | | (11)T11 | | | | +---------+---------+-------------+ | | 12.2 | | | | | (13)T12 | | | | +---------+---------+-------------+ | | 12.2 | | | | | (15)T12 | | | +------------+---------+---------+-------------+ | Affected | Rebuild | Interim | Maintenance | | 12.3-Based | | ** | | | Release | | | | +------------+---------+---------+-------------+ | 12.3 | 12.3 | | | | | (5c) | | | | +---------+---------+-------------+ | | 12.3 | | | | | (6a) | | | +------------+---------+---------+-------------+ | 12.3T | 12.3(4) | | | | | T4 | | | +------------+---------+---------+-------------+

    Fixed Cisco IOS Software Releases and Migration Path

    +----------+-------------------------------------+ | Major | Availability of Repaired Releases* | | Release | | +----------+-------------+---------+-------------+ | Affected | Rebuild | Interim | Maintenance | | 11.1 | | ** | | | -Based | | | | | Release | | | | +----------+-------------+---------+-------------+ | 11.1 | 11.1 Vulnerable. Migrate to 11.2 | +----------+-------------------------------------+ | 11.1AA | 11.1AA Vulnerable. Migrate to 11.2P | +----------+-------------------------------------+ | 11.1CC | 11.1CC Vulnerable. Migrate to 12.0 | +----------+-------------+---------+-------------+ | Affected | Rebuild | Interim | Maintenance | | 11.2 | | ** | | | -Based | | | | | Release | | | | +----------+-------------+---------+-------------+ | 11.2 | 11.2(26f) | | | | | Available | | | | | on | | | | | 2004-Apr-21 | | | +----------+-------------+---------+-------------+ | 11.2P | 11.2(26)P6 | | | | | Available | | | | | on | | | | | 2004-Apr-21 | | | +----------+-------------+---------+-------------+ | 11.2SA | 11.2(8)SA6 Vulnerable. Migrate to | | | 12.0 | +----------+-------------+---------+-------------+ | Affected | Rebuild | Interim | Maintenance | | 11.3 | | ** | | | -Based | | | | | Release | | | | +----------+-------------+---------+-------------+ | 11.3 | 11.3 Vulnerable. Migrate to 12.0 | | +-------------+---------+-------------+ | | 11.3(11b)T4 | | | | | Available | | | | | on | | | | | 2004-Apr-21 | | | | +-------------+---------+-------------+ | | 11.3(11e) | | | | | Available | | | | | on | | | | | 2004-Apr-21 | | | +----------+-------------+---------+-------------+ | Affected | Rebuild | Interim | Maintenance | | 12.0 | | ** | | | -Based | | | | | Release | | | | +----------+-------------+---------+-------------+ | 12.0 | 12.0(28) | | | +----------+-------------+---------+-------------+ | 12.0DA | 12.0DA Vulnerable. Migrate to | | | 12.2DA | +----------+-------------------------------------+ | 12.0DB | 12.0DB Vulnerable. Migrate to | | | 12.1DB | +----------+-------------------------------------+ | 12.0DC | 12.0DC Vulnerable. Migrate to | | | 12.1DC | +----------+-------------+---------+-------------+ | 12.0S | 12.0(27)S | | | | +-------------+---------+-------------+ | | 12.0(26)S2 | | | | +-------------+---------+-------------+ | | 12.0(16)S11 | | | | +-------------+---------+-------------+ | | 12.0(24)S5 | | | | +-------------+---------+-------------+ | | 12.0(25)S3 | | | | +-------------+---------+-------------+ | | 12.0(23)S6 | | | +----------+-------------+---------+-------------+ | 12.0SL | 12.0SL Vulnerable. Migrate to 12.0 | | | (23)S3 | +----------+-------------------------------------+ | 12.0ST | 12.0ST Vulnerable. Migrate to 12.0 | | | (26)S2 | +----------+-------------------------------------+ | 12.0SX | 12.0(25)SX4 Not built - contact TAC | +----------+-------------------------------------+ | 12.0SZ | 12.0SZ Vulnerable. Migrate to 12.0 | | | (26)S2 | +----------+-------------------------------------+ | 12.0T | 12.0T Vulnerable. Migrate to 12.1 | +----------+-------------+---------+-------------+ | 12.0W5 | 12.0(28)W5 | | | | | (30) | | | +----------+-------------+---------+-------------+ | 12.0WC | 12.0(5)WC9a | | | | | Available | | | | | on | | | | | 2004-Apr-21 | | | +----------+-------------+---------+-------------+ | 12.0WT | 12.0(13)WT Vulnerable. End of | | | Engineering | +----------+-------------------------------------+ | 12.0WX | 12.0(4)WX Vulnerable. Migrate to | | | 12.0W5 | +----------+-------------------------------------+ | 12.0XA | 12.0(1)XA Vulnerable. Migrate to | | | 12.1 Latest | +----------+-------------------------------------+ | 12.0XB | 12.0(1)XB Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.0XC | 12.0(2)XC Vulnerable. Migrate to | | | 12.1 Latest | +----------+-------------------------------------+ | 12.0XD | 12.0(2)XD Vulnerable. Migrate to | | | 12.1 Latest | +----------+-------------------------------------+ | 12.0XE | 12.0(7)XE Vulnerable. Migrate to | | | 12.1E Latest | +----------+-------------------------------------+ | 12.0XG | 12.0(3)XG Vulnerable. Migrate to | | | 12.1 Latest | +----------+-------------------------------------+ | 12.0XH | 12.0(4)XH Vulnerable. Migrate to | | | 12.1 | +----------+-------------------------------------+ | 12.0XI | 12.0(4)XI Vulnerable. Migrate to | | | 12.1 | +----------+-------------------------------------+ | 12.0XJ | 12.0(4)XJ Vulnerable. Migrate to | | | 12.1 Latest | +----------+-------------------------------------+ | 12.0XK | 12.0(7)XK Vulnerable. Migrate to | | | 12.1T Latest | +----------+-------------------------------------+ | 12.0XL | 12.0(4)XL Vulnerable. Migrate to | | | 12.2 Latest | +----------+-------------------------------------+ | 12.0XM | 12.0(4)XM Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.0XN | 12.0(5)XN Vulnerable. Migrate to | | | 12.1 Latest | +----------+-------------------------------------+ | 12.0XP | 12.0(5.1)XP Vulnerable. Migrate to | | | 12.1 Latest | +----------+-------------------------------------+ | 12.0XQ | 12.0(5)XQ Vulnerable. Migrate to | | | 12.1 Latest | +----------+-------------------------------------+ | 12.0XR | 12.0(7)XR Vulnerable. Migrate to | | | 12.2 Latest | +----------+-------------------------------------+ | 12.0XS | 12.0(5)XS Vulnerable. Migrate to | | | 12.1E Latest | +----------+-------------------------------------+ | 12.0XU | 12.0(5)XU Vulnerable. Migrate to | | | 12.0(5)WC | +----------+-------------------------------------+ | 12.0XV | 12.0(7)XV Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------+---------+-------------+ | Affected | Rebuild | Interim | Maintenance | | 12.1 | | ** | | | -Based | | | | | Release | | | | +----------+-------------+---------+-------------+ | 12.1 | 12.1(20a) | | | | +-------------+---------+-------------+ | | 12.1(4c) | | | | +-------------+---------+-------------+ | | 12.1(22a) | | | +----------+-------------+---------+-------------+ | 12.1AA | 12.1(10)AA Vulnerable. Migrate to | | | 12.2 Latest | +----------+-------------+---------+-------------+ | 12.1AX | 12.1(14)AX | | | +----------+-------------+---------+-------------+ | 12.1AY | 12.1(13)AY Vulnerable. Migrate to | | | 12.1(14)EA1 | +----------+-------------------------------------+ | 12.1DA | 12.2DA Vulnerable. Migrate to | | | 12.2DA | +----------+-------------------------------------+ | 12.1DB | 12.1(5)DB Vulnerable. Migrate to | | | 12.2B | +----------+-------------+---------+-------------+ | 12.1E | 12.1(19)E7 | | | | +-------------+---------+-------------+ | | 12.1(22)E1 | | | | +-------------+---------+-------------+ | | 12.1(11b) | | | | | E14 | | | | +-------------+---------+-------------+ | | 12.1(20)E2 Not built - contact TAC | | +-------------+---------+-------------+ | | 12.1(19)E6 | | | | +-------------+---------+-------------+ | | 12.1(13)E13 | | | | +-------------+---------+-------------+ | | 12.1(8b)E18 | | | | +-------------+---------+-------------+ | | 12.1(14)E10 | | | | +-------------+---------+-------------+ | | 12.1(13)E14 | | | +----------+-------------+---------+-------------+ | 12.1EA | 12.1(20)EA1 | | | +----------+-------------+---------+-------------+ | 12.1EB | 12.1(20)EB | | | +----------+-------------+---------+-------------+ | 12.1EC | 12.1(20)EC | | | +----------+-------------+---------+-------------+ | 12.1EO | 12.1(20)EO | | | | +-------------+---------+-------------+ | | 12.1(19)EO2 | | | | | Available | | | | | on | | | | | 2004-Apr-25 | | | +----------+-------------+---------+-------------+ | 12.1EU | 12.1(20)EU | | | +----------+-------------+---------+-------------+ | 12.1EV | 12.1(12c)EV Vulnerable. Migrate to | | | 12.2(RLS4)S | +----------+-------------+---------+-------------+ | 12.1EW | 12.1(20)EW2 | | | | | Available | | | | | on | | | | | 2004-Apr-21 | | | +----------+-------------+---------+-------------+ | 12.1EX | 12.1EX Vulnerable. Migrate to 12.1 | | | (14)E | +----------+-------------------------------------+ | 12.1EY | 12.1(10)EY Vulnerable. Migrate to | | | 12.1(14)E | +----------+-------------+---------+-------------+ | 12.1T | 12.1(5)T17 | | | +----------+-------------+---------+-------------+ | 12.1XA | 12.1(1)XA Vulnerable. Migrate to | | | 12.1(5)T18 | +----------+-------------------------------------+ | 12.1XB | 12.1(1)XB Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.1XC | 12.1(1)XC Vulnerable. Migrate to | | | 12.2 | +----------+-------------------------------------+ | 12.1XD | 12.1(1)XD Vulnerable. Migrate to | | | 12.2 | +----------+-------------------------------------+ | 12.1XE | 12.1(1)XE Vulnerable. Migrate to | | | 12.1E Latest | +----------+-------------------------------------+ | 12.1XF | 12.1(2)XF Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.1XG | 12.1(3)XG Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.1XH | 12.1(2a)XH Vulnerable. Migrate to | | | 12.2 | +----------+-------------------------------------+ | 12.1XI | 12.1(3a)XI Vulnerable. Migrate to | | | 12.2 Latest | +----------+-------------------------------------+ | 12.1XJ | 12.1(3)XJ Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.1XL | 12.1(3)XL Vulnerable. Migrate to | | | 12.2T Latest | +----------+-------------------------------------+ | 12.1XM | 12.1(5)XM Vulnerable. Migrate to | | | 12.2T Latest | +----------+-------------------------------------+ | 12.1XP | 12.1(3)XP Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.1XQ | 12.1(3)XQ Vulnerable. Migrate to | | | 12.2T Latest | +----------+-------------------------------------+ | 12.1XR | 12.1(5)XR Vulnerable. Migrate to | | | 12.2T Latest | +----------+-------------------------------------+ | 12.1XT | 12.1(3)XT Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.1XU | 12.1(5)XU Vulnerable. Migrate to | | | 12.2T Latest | +----------+-------------------------------------+ | 12.1XV | 12.1(5)XV Vulnerable. Migrate to | | | 12.2XB | +----------+-------------------------------------+ | 12.1YA | 12.1(5)YA Vulnerable. Migrate to | | | 12.2(8)T | +----------+-------------------------------------+ | 12.1YB | 12.1(5)YB Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.1YC | 12.1(5)YC Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.1YD | 12.1(5)YD Vulnerable. Migrate to | | | 12.2(8)T | +----------+-------------------------------------+ | 12.1YE | 12.1(5)YE5 Vulnerable. Migrate to | | | 12.2(2)YC | +----------+-------------------------------------+ | 12.1YF | 12.1(5)YF2 Vulnerable. Migrate to | | | 12.2(2)YC | +----------+-------------------------------------+ | 12.1YH | 12.1(5)YH2 Vulnerable. Migrate to | | | 12.2(13)T | +----------+-------------------------------------+ | 12.1YI | 12.1(5)YI2 Vulnerable. Migrate to | | | 12.2(2)YC | +----------+-------------------------------------+ | 12.1YJ | 12.1(11)YJ Vulnerable. Migrate to | | | 12.1EA Latest | +----------+-------------+---------+-------------+ | Affected | Rebuild | Interim | Maintenance | | 12.2 | | ** | | | -Based | | | | | Release | | | | +----------+-------------+---------+-------------+ | 12.2 | 12.2(19b) | | | | +-------------+---------+-------------+ | | 12.2(16f) | | | | +-------------+---------+-------------+ | | 12.2(21a) | | | | +-------------+---------+-------------+ | | 12.2(23) | | | | +-------------+---------+-------------+ | | 12.2(12i) | | | | +-------------+---------+-------------+ | | 12.2(10g) | | | | +-------------+---------+-------------+ | | 12.2(13e) | | | | +-------------+---------+-------------+ | | 12.2(17d) | | | | +-------------+---------+-------------+ | | 12.2(21b) | | | | +-------------+---------+-------------+ | | 12.2(23a) | | | +----------+-------------+---------+-------------+ | 12.2B | 12.2(2)B - 12.2(4)B7 Vulnerable. | | | Migrate to 12.2(13)T12 | | +-------------------------------------+ | | 12.2(4)B8 AND FWD Vulnerable. | | | Migrate to 12.3(5a)B1 | +----------+-------------+---------+-------------+ | 12.2BC | 12.2(15) | | | | | BC1C | | | +----------+-------------+---------+-------------+ | 12.2BW | 12.2(4)BW Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------+---------+-------------+ | 12.2BX | 12.2(16)BX2 | | | +----------+-------------+---------+-------------+ | 12.2BY | 12.2(4)BY Vulnerable. Migrate to | | | 12.2(15)B | | +-------------------------------------+ | | 12.2(8)BY Vulnerable. Migrate to | | | 12.2(8)ZB | | +-------------------------------------+ | | 12.2(2)BY Vulnerable. Migrate to | | | 12.2(8)BZ | +----------+-------------------------------------+ | 12.2BZ | 12.2(15)BZ Vulnerable. Migrate to | | | 12.2(16)BX | +----------+-------------------------------------+ | 12.2CX | 12.2(11)CX Vulnerable. Migrate to | | | 12.2(15)BC | +----------+-------------------------------------+ | 12.2CY | 12.2(11)CY Vulnerable. Migrate to | | | 12.2(13)BC1C | +----------+-------------------------------------+ | 12.2DD | 12.2DD Vulnerable. Migrate to 12.2 | | | (4)B1 | +----------+-------------------------------------+ | 12.2DX | 12.2(1)DX Vulnerable. Migrate to | | | 12.2DD | | +-------------------------------------+ | | 12.2(2)DX Vulnerable. Migrate to | | | 12.2B Latest | +----------+-------------+---------+-------------+ | 12.2EW | 12.2(18)EW | | | +----------+-------------+---------+-------------+ | 12.2JA | 12.2(13)JA4 | | | | +-------------+---------+-------------+ | | 12.2(13)JA2 | | | | +-------------+---------+-------------+ | | 12.2(11)JA3 | | | +----------+-------------+---------+-------------+ | 12.2MC | 12.2(15) | | | | | MC1B | | | +----------+-------------+---------+-------------+ | 12.2S | 12.2(22)S | | | | +-------------+---------+-------------+ | | 12.2(14)S7 | | | | +-------------+---------+-------------+ | | 12.2(20)S1 | | | | +-------------+---------+-------------+ | | 12.2(20)S3 | | | | | Available | | | | | on | | | | | 2004-Apr-21 | | | | +-------------+---------+-------------+ | | 12.2(18)S3 | | | +----------+-------------+---------+-------------+ | 12.2SE | 12.2(18)SE | | | +----------+-------------+---------+-------------+ | 12.2SW | 12.2(21)SW | | | +----------+-------------+---------+-------------+ | 12.2SX | 12.2(17a) | | | | | SX2 | | | +----------+-------------+---------+-------------+ | 12.2SXA | 12.2(17b) | | | | | SXA1 | | | +----------+-------------+---------+-------------+ | 12.2SXB | 12.2(17d)SXB1 Not built - contact | | | TAC | +----------+-------------+---------+-------------+ | 12.2SY | 12.2(14)SY3 | | | +----------+-------------+---------+-------------+ | 12.2SZ | 12.2(14)SZ6 | | | +----------+-------------+---------+-------------+ | 12.2T | 12.2(15)T11 | | | | +-------------+---------+-------------+ | | 12.2(13)T12 | | | | +-------------+---------+-------------+ | | 12.2(11)T11 Not built - contact TAC | | +-------------+---------+-------------+ | | 12.2(13)T11 | | | +----------+-------------+---------+-------------+ | 12.2XA | 12.2(2)XA Vulnerable. Migrate to | | | 12.2(11)T | +----------+-------------------------------------+ | 12.2XB | 12.2(2)XB Vulnerable. Migrate to | | | 12.2(15)T | +----------+-------------------------------------+ | 12.2XC | 12.2(2)XC Vulnerable. Migrate to | | | 12.2(8)ZB | +----------+-------------------------------------+ | 12.2XD | 12.2(1)XD Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2XE | 12.2(1)XE Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2XF | 12.2(1)XF1 Vulnerable. Migrate to | | | 12.2(4)BC1C | +----------+-------------------------------------+ | 12.2XG | 12.2(2)XG Vulnerable. Migrate to | | | 12.2(8)T | +----------+-------------------------------------+ | 12.2XH | 12.2(2)XH Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2XI | 12.2(2)XI2 Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2XJ | 12.2(2)XJ Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2XK | 12.2(2)XK Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2XL | 12.2(4)XL Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2XM | 12.2(4)XM Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2XN | 12.2(2)XN Vulnerable. Migrate to | | | 12.2(11)T | +----------+-------------------------------------+ | 12.2XQ | 12.2(2)XQ Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2XS | 12.2(1)XS Vulnerable. Migrate to | | | 12.2(11)T | +----------+-------------------------------------+ | 12.2XT | 12.2(2)XT Vulnerable. Migrate to | | | 12.2(11)T | +----------+-------------------------------------+ | 12.2XU | 12.2(2)XU Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2XW | 12.2(4)XW Vulnerable. Migrate to | | | 12.2(13)T12 | +----------+-------------------------------------+ | 12.2YA | 12.2(4)YA Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2YB | 12.2(4)YB Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2YC | 12.2(2)YC Vulnerable. Migrate to | | | 12.2(11)T11 | +----------+-------------------------------------+ | 12.2YD | 12.2(8)YD Vulnerable. Migrate to | | | 12.2(8)YY | +----------+-------------------------------------+ | 12.2YE | 12.2(9)YE Vulnerable. Migrate to | | | 12.2S | +----------+-------------------------------------+ | 12.2YF | 12.2(4)YF Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2YG | 12.2(4)YG Vulnerable. Migrate to | | | 12.2(13)T12 | +----------+-------------------------------------+ | 12.2YH | 12.2(4)YH Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2YJ | 12.2(8)YJ Vulnerable. Migrate to | | | 12.2(15)T12 | +----------+-------------------------------------+ | 12.2YK | 12.2(2)YK Vulnerable. Migrate to | | | 12.2(13)ZC | +----------+-------------------------------------+ | 12.2YL | 12.2(8)YL Vulnerable. Migrate to | | | 12.3(2)T | +----------+-------------------------------------+ | 12.2YM | 12.2(8)YM Vulnerable. Migrate to | | | 12.3(2)T | +----------+-------------------------------------+ | 12.2YN | 12.2(8)YN Vulnerable. Migrate to | | | 12.3(2)T | +----------+-------------------------------------+ | 12.2YO | 12.2(9)YO Vulnerable. Migrate to | | | 12.2(14)SY | +----------+-------------------------------------+ | 12.2YP | 12.2(11)YP Vulnerable. Migrate to | | | 12.2T Latest | +----------+-------------------------------------+ | 12.2YQ | 12.2(11)YQ Vulnerable. Migrate to | | | 12.3(2)T | +----------+-------------------------------------+ | 12.2YR | 12.2(11)YR Vulnerable. Migrate to | | | 12.3(2)T | +----------+-------------------------------------+ | 12.2YS | 12.2(11)YS Vulnerable. Migrate to | | | 12.3T | +----------+-------------------------------------+ | 12.2YT | 12.2(11)YT Vulnerable. Migrate to | | | 12.2(15)T | +----------+-------------------------------------+ | 12.2YU | 12.2(11)YU Vulnerable. Migrate to | | | 12.3(2)T | +----------+-------------------------------------+ | 12.2YV | 12.2(11)YV Vulnerable. Migrate to | | | 12.3(4)T | +----------+-------------------------------------+ | 12.2YW | 12.2(8)YW Vulnerable. Migrate to | | | 12.3(2)T | +----------+-------------------------------------+ | 12.2YX | 12.2(11)YX Vulnerable. Migrate to | | | 12.2(RLS3)S | +----------+-------------------------------------+ | 12.2YY | 12.2(8)YY Vulnerable. Migrate to | | | 12.3(1)T | +----------+-------------------------------------+ | 12.2YZ | 12.2(11)YZ Vulnerable. Migrate to | | | 12.2(14)SZ | +----------+-------------+---------+-------------+ | 12.2ZA | 12.2(14)ZA6 | | | +----------+-------------+---------+-------------+ | 12.2ZB | 12.2(8)ZB Vulnerable. Migrate to | | | 12.3T | +----------+-------------------------------------+ | 12.2ZC | 12.2(13)ZC Vulnerable. Migrate to | | | 12.3T | +----------+-------------+---------+-------------+ | 12.2ZD | 12.2(13)ZD1 | | | +----------+-------------+---------+-------------+ | 12.2ZE | 12.2(13)ZE Vulnerable. Migrate to | | | 12.3 | +----------+-------------------------------------+ | 12.2ZF | 12.2(13)ZF Vulnerable. Migrate to | | | 12.3(4)T | +----------+-------------------------------------+ | 12.2ZG | 12.2(13)ZG Vulnerable. Migrate to | | | 12.3(4)T | +----------+-------------------------------------+ | 12.2ZH | 12.2(13)ZH Vulnerable. Migrate to | | | 12.3(4)T | +----------+-------------------------------------+ | 12.2ZI | 12.2(11)ZI Vulnerable. Migrate to | | | 12.2(18)S | +----------+-------------+---------+-------------+ | 12.2ZJ | 12.2(15)ZJ5 | | | | +-------------+---------+-------------+ | | 12.2(15)ZJ4 | | | +----------+-------------+---------+-------------+ | 12.2ZK | 12.2(15)ZK Vulnerable. Migrate to | | | 12.3T | +----------+-------------------------------------+ | 12.2ZL | 12.2(15)ZL Vulnerable. Migrate to | | | 12.3(7)T | +----------+-------------------------------------+ | 12.2ZN | 12.2(15)ZN Vulnerable. Migrate to | | | 12.3(2)T | +----------+-------------+---------+-------------+ | 12.2ZP | 12.2(13)ZP3 | | | +----------+-------------+---------+-------------+ | Affected | Rebuild | Interim | Maintenance | | 12.3 | | ** | | | -Based | | | | | Release | | | | +----------+-------------+---------+-------------+ | 12.3 | 12.3(3e) | | | | +-------------+---------+-------------+ | | 12.3(6) | | | | +-------------+---------+-------------+ | | 12.3(5b) | | | +----------+-------------+---------+-------------+ | 12.3B | 12.3(5a)B | | | | +-------------+---------+-------------+ | | 12.3(3)B1 | | | +----------+-------------+---------+-------------+ | 12.3BW | 12.3(1a)BW Vulnerable. Migrate to | | | 12.3B | +----------+-------------+---------+-------------+ | 12.3T | 12.3(2)T4 | | | | +-------------+---------+-------------+ | | 12.3(7)T1 Not built - contact TAC | | +-------------+---------+-------------+ | | 12.3(4)T3 | | | +----------+-------------+---------+-------------+ | 12.3XA | 12.3(2)XA Vulnerable. Contact TAC. | +----------+-------------+---------+-------------+ | 12.3XB | 12.3(2)XB2 | | | +----------+-------------+---------+-------------+ | 12.3XC | 12.3(2)XC2 | | | +----------+-------------+---------+-------------+ | 12.3XD | 12.3(4)XD1 | | | +----------+-------------+---------+-------------+ | 12.3XE | 12.3(2)XE Vulnerable. Migrate to | | | 12.3T | +----------+-------------------------------------+ | 12.3XF | 12.3(2)XF Vulnerable. Contact TAC | | | if needed. | +----------+-------------+---------+-------------+ | 12.3XG | 12.3(4)XG | | | +----------+-------------+---------+-------------+ | 12.3XH | 12.3(4)XH | | | +----------+-------------+---------+-------------+ | 12.3XI | 12.3(7)XI Vulnerable. Migrate to | | | 12.3T | +----------+-------------------------------------+ | 12.3XJ | 12.3(7)XJ Vulnerable. Contact TAC | | | if needed | +----------+-------------+---------+-------------+ | 12.3XK | 12.3(4)XK | | | +----------+-------------+---------+-------------+ | 12.3XL | 12.3(7)XL Vulnerable. Contact Tac | | | if needed | +----------+-------------------------------------+ | 12.3XM | 12.3(9)XM Vulnerable. Contact TAC | | | if needed. | +----------+-------------------------------------+ | 12.3XN | 12.3(4)XN Vulnerable. Contact TAC | | | if needed. | +----------+-------------------------------------+ | 12.3XQ | 12.3(4)XQ Vulnerable. Contact TAC | | | if needed. | +----------+-------------------------------------+ | * All dates are estimated and subject to | | change. | | | | ** Interim releases are subjected to less | | rigorous testing than regular maintenance | | releases, and may have serious bugs. | +------------------------------------------------+

    Obtaining Fixed Software

    Customers with Service Contracts

    Customers with contracts should obtain upgraded software through their regular update channels. For most customers, this means that upgrades should be obtained through the Software Center on Cisco's worldwide website at http://www.cisco.com.

    Customers using Third-party Support Organizations

    Customers whose Cisco products are provided or maintained through prior or existing agreement with third-party support organizations such as Cisco Partners, authorized resellers, or service providers should contact that support organization for assistance with the upgrade, which should be free of charge.

    Customers without Service Contracts

    Customers who purchase direct from Cisco but who do not hold a Cisco service contract and customers who purchase through third-party vendors but are unsuccessful at obtaining fixed software through their point of sale should get their upgrades by contacting the Cisco Technical Assistance Center (TAC). TAC contacts are as follows.

    • +1 800 553 2447 (toll free from within North America)

    • +1 408 526 7209 (toll call from anywhere in the world)

    • e-mail: tac@cisco.com

    See http://www.cisco.com/warp/public/687/Directory/DirTAC.shtml for additional TAC contact information, including special localized telephone numbers and instructions and e-mail addresses for use in various languages.

    Please have your product serial number available and give the URL of this notice as evidence of your entitlement to a free upgrade. Free upgrades for non-contract customers must be requested through the TAC.

    Please do not contact either "psirt@cisco.com" or "security-alert@cisco.com" for software upgrades.

    Workarounds

    The effectiveness of any workaround is dependent on specific customer situations such as product mix, network topology, traffic behavior, and organizational mission. Due to the variety of affected products and releases, customers should consult with their service provider or support organization to ensure any applied workaround is the most appropriate for use in the intended network before it is deployed.

    There are no workarounds available to mitigate the effects of this vulnerability on Cisco IOS Firewall.

    For BGP, we will present the workaround and only a few mitigation techniques. For additional information regarding BGP security risk assessment, mitigation techniques, and deployment best practices, please consult ftp://ftp-eng.cisco.com/cons/isp/security/ BGP-Risk-Assesment-v.pdf.

    • BGP MD5 secret

      The workaround for BGP is to configure MD5 secret for each session between peers. This can be configured as shown in the following example: router(config)#router bgp router(config-router)#neighbor password

      It is necessary to configure the same shared MD5 secret on both peers and at the same time. Failure to do so will break the existing BGP session and the new session will not get established until the exact same secret is configured on both devices. For a detailed discussion on how to configure BGP, refer to the following document http://www.cisco.com/en/US/products/sw/iosswrel/ps1828/ products_configuration_guide_chapter09186a00800ca571.html . Once the secret is configured, it is prudent to change it periodically. The exact period must fit within your company security policy but it should not be longer than a few months. When changing the secret, again it must be done at the same time on both devices. Failure to do so will break your existing BGP session. The exception is if your Cisco IOS software release contains the integrated CSCdx23494 ( registered customers only) fix. With this fix, the BGP session will not be terminated when the MD5 secret is changed only on one side. The BGP updates, however, will not be processed until either the same secret is configured on both devices or the secret is removed from both devices.

    It is possible to mitigate the exposure for BGP on this vulnerability by applying one or more of the following measures which will lessen the potential for the necessary spoofing required to implement a successful attack:

    • Blocking access to the core infrastructure

      Although it is often difficult to block traffic transiting your network, it is possible to identify traffic which should never be allowed to target your infrastructure devices and block that traffic at the border of your network. Infrastructure access control lists (ACLs) are considered a network security best practice and should be considered as a long-term addition to good network security as well as a workaround for this specific vulnerability. The white paper entitled "Protecting Your Core: Infrastructure Protection Access Control Lists", available at http://www.cisco.com/warp/public/707/ iacl.html, presents guidelines and recommended deployment techniques for infrastructure protection ACLs. Exceptions would include any devices which have a legitimate reason to access your infrastructure (for example, BGP peers, NTP sources, DNS serves, and so on). All other traffic must be able to traverse your network without terminating on any of your devices.

    • Configure anti-spoofing measures on the network edge In order for an adversary to use the attack vector described in this advisory, it must send packets with the source IP address equal to one of the BGP peers. You can block spoofed packets either using the Unicast Reverse Path Forwarding (uRPF) feature or by using access control lists (ACLs). By enabling uRPF, all spoofed packets will be dropped at the first device. To enable uRPF, use the following commands: router(config)#ip cef

      router(config)#ip verify unicast reverse-path
      

      Please consult http://www.cisco.com/en/US/products/sw/iosswrel/ps1835 /products_configuration_guide_chapter09186a00800ca7d4.html and ftp:// ftp-eng.cisco.com/cons/isp/security/URPF-ISP.pdf for further details on how uRPF works and how to configure it in various scenarios. This is especially important if you are using asymmetric routing. ACLs should also be deployed as close to the edge as possible. Unlike uRPF, you must specify the exact IP range that is permitted. Specifying which addresses should be blocked is not the optimal solution because it tends to be harder to maintain.

      Caution: In order for anti-spoofing measures to be effective, they must be deployed at least one hop away from the devices which are being protected. Ideally, they will be deployed at the network edge facing your customers.

    • Packet rate limiting RST packets are rate-limited in Cisco IOS software by default. This feature is introduced in Cisco IOS Software Release 10.2. In the case of a storm of RST packets, they are effectively limited to one packet per second. In order to be successful, an attacker must terminate connection with the first few packets. Otherwise, the attack is deemed to be impracticably long. On the other hand, SYN packets are not rate-limited in any way. Rate limiting can be accomplished either by using Committed Access Rate (CAR) or by Control Plane Policing (CPP). While CPP is the recommended approach, it is available only for Cisco IOS Software Releases 12.2(18)S and 12.3(4)T. It is currently supported only on the following routers: 1751, 2600/2600-XM, 3700, 7200, and 7500 Series.

      CAR can be configured as follows:

      router(config)#access-list 103 deny tcp any host 10.1.1.1 established
      
      router(config)#access-list 103 permit tcp any host 10.0.0.1
      
      router(config)#interface <interface> <interface #>
      
      router(config-if)#rate-limit input access-group 103 8000 8000 8000 
          conform-action transmit exceed-action drop
      

      For details on how to configure and deploy CPP, please consult the following document http://www.cisco.com/en/US/products/sw/iosswrel/ ps1838/products_white_paper09186a0080211f39.shtml

    Exploitation and Public Announcements

    The Cisco PSIRT is not aware of any public announcements or malicious use of the vulnerability described in this advisory.

    The exploitation of the vulnerability with packets having RST flag set (reset packets) was discovered by Paul (Tony) Watson of OSVDB.org. The extension of the attack vector to packets with SYN flag was discovered by the vendors cooperating on the resolution of this issue.

    Status of This Notice: INTERIM

    This is a INTERIM advisory. Although Cisco cannot guarantee the accuracy of all statements in this advisory, all of the facts have been checked to the best of our ability. Cisco does not anticipate issuing updated versions of this advisory unless there is some material change in the facts. Should there be a significant change in the facts, Cisco may update this advisory.

    A stand-alone copy or Paraphrase of the text of this Security Advisory that omits the distribution URL in the following section is an uncontrolled copy, and may lack important information or contain factual errors.

    Distribution

    This advisory will be posted on Cisco's worldwide website at http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-ios.shtml.

    In addition to worldwide web posting, a text version of this notice is clear-signed with the Cisco PSIRT PGP key and is posted to the following e-mail and Usenet news recipients.

    • cust-security-announce@cisco.com

    • first-teams@first.org (includes CERT/CC)

    • bugtraq@securityfocus.com

    • vulnwatch@wulnwatch.org

    • cisco@spot.colorado.edu

    • cisco-nsp@puck.nether.net

    • full-disclosure@lists.netsys.com

    • comp.dcom.sys.cisco@newsgate.cisco.com

    Future updates of this advisory, if any, will be placed on Cisco's worldwide website, but may or may not be actively announced on mailing lists or newsgroups. Users concerned about this problem are encouraged to check the above URL for any updates.

    Revision History

    +----------+-------------+----------------+ | Revision | 2004-Apr-20 | Initial public | | 1.0 | | release. | +----------+-------------+----------------+

    Cisco Security Procedures

    Complete information on reporting security vulnerabilities in Cisco products, obtaining assistance with security incidents, and registering to receive security information from Cisco, is available on Cisco's worldwide website at http://www.cisco.com/warp/public/707/ sec_incident_response.shtml. This includes instructions for press inquiries regarding Cisco Security Notices. All Cisco Security Advisories are available at http://www.cisco.com/go/psirt.


    All contents are Copyright \xa9 1992-2004 Cisco Systems, Inc. All rights reserved. Important Notices and Privacy Statement. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (Cygwin)

    iD8DBQFAhZTpezGozzK2tZARAkKXAJ9BWwuytT7zwoOL+RkZJPebYN3W3ACfV/+K 0Fd3MvvRlKSETCrlMGL/dZg= =eDSn -----END PGP SIGNATURE----- .

    The nonexhaustive list of vulnerable non-IOS based Cisco products is as follows:

    • Access Registrar

    • BPX, IGX, MGX WAN switches, and the Service Expansion Shelf

    • BR340, WGB340, AP340, AP350, BR350 Cisco/Aironet wireless products

    • Cache Engine 505 and 570

    • CallManager

    • Catalyst 1200, 1900, 28xx, 29xx, 3000, 3900, 4000, 5000, 6000

    • Cisco 8110 Broadband Network Termination Unit

    • Cisco Element Management Framework

    • Cisco Info Center

    • Cisco Intelligent Contact Management

    • Cisco MDS 9000

    • Cisco ONS 15190/15194 IP Transport Concentrator

    • Cisco ONS 15327 Metro Edge Optical Transport Platform

    • Cisco ONS 15454 Optical Transport Platform

    • Cisco ONS 15531/15532 T31 OMDS Metro WDM System

    • Cisco ONS 15800/15801/15808 Dense Wave Division Multiplexing Platform

    • Cisco ONS 15830 T30 Optical Amplification System

    • Cisco ONS 15831/15832 T31 DWDM System

    • Cisco ONS 15863 T31 Submarine WDM System

    • Content Router 4430 and Content Delivery Manager 4630 and 4650

    • Cisco Secure Intrusion Detection System (NetRanger) appliance and IDS Module

    • Cisco Secure PIX firewall

    • Cisco ws-x6608 and ws-x6624 IP Telephony Modules

    • CiscoWorks Windows

    • Content Engine 507, 560, 590, and 7320

    • CSS11000 (Arrowpoint) Content Services Switch

    • Hosting Solution Engine

    • User Registration Tool VLAN Policy Server

    • Cisco FastHub 300 and 400

    • CR-4430-B

    • Device Fault Manager

    • Internet CDN Content Engine 590 and 7320, Content Distribution Manager 4670, and Content Router 4450

    • IP Phone (all models including ATA and VG248)

    • IP/TV

    • LightStream 1010

    • LightStream 100 ATM Switches

    • LocalDirector

    • ME1100 series

    • MicroHub 1500,MicroSwitch 1538/1548

    • Voice Manager

    • RTM

    • SN5400 series storage routers

    • Switch Probe

    • Unity Server

    • VG248 Analog Phone Gateway

    • Traffic Director

    • WAN Manager

    Products Confirmed Not Vulnerable

    The following products are not vulnerable:

    • Cisco VPN 3000 Series Concentrators

    • Cisco Firewall Services Module for Cisco Catalyst 6500 Series and Cisco 7600 Series (FWSM)

    Details

    TCP is the transport layer protocol designed to provide connection-oriented reliable delivery of a data stream. The Cisco PSIRT has analyzed multiple TCP-based protocols, as they are used within our offering, and we believe that this vulnerability does not have a significant impact on them. We will present our analysis for a few protocols which have the potential for higher impact due to the long lived connections.

    Voice signaling H.225, H.245 (part of H.323 suite)


    H.225 and H.245 protocols are used in voice signaling. Their purpose is to negotiate parameters for content transfer (voice or video). The established sessions persist for the duration of a call. Any call in progress is terminated when the signaling session is broken. A new signaling session will be established immediately for the new call, but terminated calls cannot be re-established.

    Each call from an IP telephone or softphone will result in the creation of a single signaling session. It is possible that a single signaling session is responsible for multiple calls, but that setup is used deeper within the Service Provider's network. Determining all necessary parameters for mounting an attack is deemed a non-trivial task if the network is designed according to the current best practices.

    Network Storage (iSCSI, FCIP)


    Network Storage products use two TCP-based protocols: SCSI over IP (iSCSI) and Fiber Channel over IP (FCIP).

    • SCSI over IP (iSCSI)

      iSCSI is used in a client/server environment. The client is your computer and it is only the client that initiates a connection. This connection is not shared with any other users. Terminating the session will not have any adverse consequences if people are using current drivers from Microsoft for Windows and from Cisco for Linux. These drivers will re-establish the session and continue transfer from the point where it was disconnected. Drivers from other vendors may behave differently.

      The user may notice that access to a virtual device is slightly slower than usual.

    • Fiber Channel over IP (FCIP)

      FCIP is a peer-to-peer protocol. It is used for mirroring data between switches. Each peer can initiate the session. Switches can, and should be in practice, configured in a mesh. Bringing one link down will cause traffic to be re-routed over other link(s). If an adversary can manage to terminate the session multiple times in a row, the user's application may terminate with a "Device unreachable" or similar error message. This does not have any influence on the switch itself and the user can retry the operation.

      The user may notice that access to a virtual device is slightly slower than usual. An occasional error message is possible. SSL/TLS connections can be used to encapsulate various kinds of traffic and these sessions can be long lived. An encrypted session can be attacked either on the originating or terminating host or on the firewalls in front of them (if they exist). | | | | Customers | | | | are | | | | encouraged | | | | to migrate | | | | to IOS.

    NISCC Vulnerability Advisory 236929

    National Infrastructure Security Co-Ordination Centre
    NISCC Vulnerability Advisory 236929

    Vulnerability Issues in TCP


    Version Information

    Advisory Reference 236929
    Release Date 20 April 2004
    Last Revision 22 April 2004
    Version Number 1.4
     

    What is Affected?

    The vulnerability described in this advisory affects implementations of the Transmission Control Protocol (TCP) that comply with the Internet Engineering Task Force\x92s (IETF\x92s) Requests For Comments (RFCs) for TCP, including RFC 793, the original specification, and RFC 1323, TCP Extensions for High Performance.

    TCP is a core network protocol used in the majority of networked computer systems today. Many vendors include support for this protocol in their products and may be impacted to varying degrees.


    Severity

    The impact of this vulnerability varies by vendor and application, but in some deployment scenarios it is rated critical. Alternatively contact your vendor for product specific information.

    If exploited, the vulnerability could allow an attacker to create a Denial of Service condition against existing TCP connections, resulting in premature session termination. The resulting session termination will affect the application layer, the nature and severity of the effects being dependent on the application layer protocol. The primary dependency is on the duration of the TCP connection, with a further dependency on knowledge of the network (IP) addresses of the end points of the TCP connection.

    The Border Gateway Protocol (BGP) is judged to be potentially most affected by this vulnerability.

    BGP relies on a persistent TCP session between BGP peers. Resetting the connection can result in medium term unavailability due to the need to rebuild routing tables and route flapping.  Route flapping may result in route dampening (suppression) if the route flaps occur frequently within a short time interval.  The overall impact on BGP is likely to be moderate based on the likelihood of successful attack. If the TCP MD5 Signature Option and anti-spoofing measures are used then the impact will be low as these measures will successfully mitigate the vulnerability.

    There is a potential impact on other application protocols such as DNS (Domain Name System) and SSL (Secure Sockets Layer) in the case of zone transfers and ecommerce transactions respectively, but the duration of the sessions is relatively short and the sessions can be restarted without medium term unavailability problems. In the case of SSL it may be difficult to guess the source IP address.

    Data injection may be possible. However, this has not been demonstrated and appears to be problematic. The reason for this is that the receiving TCP implementation checks the sequence number of the RST or SYN packet, which is a 32 bit number, giving a probability of 1/232 of guessing the sequence number correctly (assuming a random distribution).

    The discoverer of the practicability of the RST attack was Paul A. Watson, who describes his research in his paper \x93Slipping In The Window: TCP Reset Attacks\x94, presented at the CanSecWest 2004 conference. In a RST/ACK packet an acknowledgement number is included in the packet, although it is not checked by the receiving TCP implementation.)

    RFC 793, p36, states the following:

    "In all states except SYN-SENT, all reset (RST) segments are validated by checking their SEQ-fields [sequence numbers]. In the SYN-SENT state (a RST received in response to an initial SYN), the RST is acceptable if the ACK field acknowledges the SYN."

    Resets must be processed immediately. RFC 793, p25, says "[\x85] [E]ven when the receive window is zero, a TCP must process the RST and URG fields of all incoming segments."

    It is also possible to perform the same attack with SYN (synchronise) packets. RFC 793, p31 states:

    \x93The principle reason for the three-way handshake is to prevent old duplicate connection initiations from causing confusion. To deal with this, a special control message, reset, has been devised. [\x85] If the TCP is in one of the synchronized states (ESTABLISHED, FIN-WAIT-1, FIN-WAIT-2, CLOSE-WAIT, CLOSING, LAST-ACK, TIME-WAIT), it aborts the connection and informs its user.\x94

    TCP window sizes are negotiated in the initial 3-way handshake used to set up a TCP connection, with higher values serving to improve throughput in some circumstances. Vendor-chosen defaults also influence the selection. An attacker seeking to disrupt an existing TCP connection must supply the 4-tuple correctly. As the source port varies, additional work is generally called for on the part of the attacker. However, research (referenced below) has shown that the process of source port selection on many platforms includes predictable elements, so that the attack remains practicable. By weighting 'likely' source port values carefully, an attacker can disrupt TCP implementations that employ a range of window sizes.

    Application layer protocols that are critically affected are those that:

    \x95 Depend on long lived TCP connections
    \x95 Have known or easy-to-guess IP address end points
    \x95 Have easy to an easy-to-guess source TCP port

    As noted above BGP does use long lived TCP connections, and the IP addresses and source port (and destination port) are sometimes available through the use of BGP looking glasses (multi-source, multi-destination trace route tools) or DNS resource records. Using \x93trace route\x94 commands can provide information on peering point IP addresses. Thus BGP is likely to be critically affected by the TCP vulnerability.

    These denial of service attacks can be carried out by single machine, or by multiple co-operating systems (to form a distributed denial of service attack).

    It is also possible to inject packets, which will be processed if they are in the window. The difficulty with data injection attacks is that the receiving TCP implementation will reassemble the packets received according to sequence number, dropping any duplicate packets.


    Vendor specific information will be released as it becomes available and if vendor permission has been received. Subscribers are advised to check the following URL regularly for updates:

    http://www.uniras.gov.uk/vuls/2004/236929/index.htm

    [Please note that updates to this advisory will not be notified by email.]

    This vulnerability has been assigned the CVE name CAN-2004-0230.

    The Open Source Vulnerability Database ID number for this vulnerability is 4030.


    Mitigation

    The following mitigation steps are still being evaluated and may be incomplete. Customers should work with vendors for the workaround most appropriate for the product in question.

    In the absence of vendor patching of the TCP implementation, the following are general mitigating steps:

    \x95 Implement IP Security (IPSEC) which will encrypt traffic at the network layer, so TCP information will not be visible
    \x95 Reduce the TCP window size (although this could increase traffic loss and subsequent retransmission)
    \x95 Do not publish TCP source port information

    It should be noted that IPSEC provides confidentiality and authentication services at the network layer, and can provide a measure of trust in the authenticity of the end points as well as encryption of traffic between the end points.  However, in the context of the current attack IPSEC will reject RST and SYN packets that are not part of a secure IP packet stream.

    To change the TCP window size, in some Unix variants you can set a value of the default TCP windows size by using the \x93sysctl\x94 program (\x93ndd -set\x94 in the case of Sun Solaris). In the case of Microsoft Windows NT/2000/XP/2003, the default window size can be changed by modifying the value of the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters key. As noted above, great care should be exercised when altering the default TCP window size as network performance could be adversely affected.

    In the case of BGP, the following may counter the problem:

    \x95 Implement ingress and egress filtering to check that the traffic entering or leaving the network has a source IP address that is expected on the router/firewall interface that receives the traffic
    \x95 Implement the TCP MD5 Signature Option to checksum the TCP packet carrying the BGP application data (see RFC 2385), being careful to set and maintain strong (i.e. difficult to guess) passwords to which the MD5 checksum is applied.  Also see RFC 3562 which discusses the security requirements of this keying material.
    \x95 Limit the amount of information available through looking glasses and DNS resource records, being careful not to expose TCP port information unnecessarily

    The IETF ingress filtering standard is defined in RFC 2827. A discussion of egress filtering can be found at http://www.sans.org/y2k/egress.htm.

    The use of the TCP MD5 Signature Option will prevent the exploitation of this vulnerability. Router customers should implement this on all BGP peering points if it is supported by the router, upgrading the router firmware if necessary.


    Solution

    Please refer to the Vendor Information section of this advisory for implementation specific remediation.

    Some vendors will have reduced the likelihood of successful denial of service by amending the TCP implementation to issue a further acknowledgment packet challenge for RST and SYN packets that do not have exactly the expected sequence number.

    The Internet Engineering Task Force (IETF) has published an Internet Draft to co-incide with the release of this advisory.  The text of this draft is available from the IETF web site:
    http://www.ietf.org/internet-drafts/draft-ietf-tcpm-tcpsecure-00.txt

    NISCC has produced best practice guidelines for BGP available at
    http://www.niscc.gov.uk/BGP Filtering Guide.pdf

    Secure configuration templates for BGP implementations on Cisco IOS and Juniper JUNOS can be found at:

    \x95 Cisco http://www.cymru.com/Documents/secure-bgp-template.html
    \x95 Juniper http://www.qorbit.net/documents/junos-bgp-template.pdf

    Guidance on tuning of the IP stack for a number of different UNIX operating systems is available at http://www.cymru.com/Documents/ip-stack-tuning.html


    Vendor Information

    The following vendors have provided information about how their products are affected by these vulnerabilities.

    Please note that JPCERT/CC have released a Japanese language advisory for this vulnerability which contains additional information regarding Japanese vendors. This advisory is available at http://www.jpcert.or.jp/at/2004/at040003.txt.

    Certicom Internet Initiative Japan, Inc NEC
    Check Point InterNiche Nortel
    Cisco Juniper Networks Polycom
    Cray Inc Lucent Technologies Secure Computing Corporation
    Hitachi Mitel Networks Yamaha
    Innovaphone MRLG  


    Certicom
      Certicom has examined the National Infrastructure Security Coordination Centre (NISCC) advisory and determined it is not vulnerable.

    Certicom Developer Toolkits for SSL (SSL Plus, SSL Plus for Java, Security Builder SSL-C and Security Builder SSL-J) do not provide a TCP/IP transport mechanism, but rather utilize the supported operating system's TCP/IP stack. The vulnerability is against the TCP/IP stack itself, and not directly against the functionality offered by Certicom toolkits. Therefore, there is no patch or workaround that can be implemented within Certicom products. The patch or workaround must be provided by the operating system vendor.

    Customers are urged to contact their operating system vendors to determine if they have provided a workaround to this advisory. If you have any further questions please do not hesitate to contact support@certicom.com.
    Check Point
      The latest release for VPN-1/FireWall-1 (R55 HFA-03) contains a protection against this vulnerability.  The protection applies to both the firewall device and to hosts behind the firewall.

    Please refer to the Check Point web site for further information at:
    http://www.checkpoint.com/techsupport/alerts/tcp_dos.html.
    Cisco
      Cisco Systems is addressing the vulnerabilities identified by NISCC Vulnerability Advisory 236929 across its entire product line.  Cisco has released two related advisories:

    TCP Vulnerabilities in Multiple IOS-Based Cisco Products
    http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-ios.shtml

    TCP Vulnerabilities in Multiple Non-IOS Cisco Products
    http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-nonios.shtml
    Cray Inc
      Cray Inc. is vulnerable on their UNICOS, UNICOS/mk and UNICOS/mp systems.  Spr's have been opened to track this issue.  Please contact your local Cray Service Representative for more information.
    Hitachi
      Hitachi is investigating the potential impact to Hitachi's products.
    Innovaphone
      Not vulnerable.
    Internet Initiative Japan, Inc (IIJ)
      IIJ will release a new firmware to fix this vulnerability.  Details are available on their web site at http://www.seil.jp/en/ann/announce_en_20040421_01.txt.
    InterNiche
      === NicheStack v2.0 TCP/IP ===

    InterNiche Technologies has updated its NicheStack v2.0 TCP/IP product to handle the scenarios described in NISCC Vulnerability Notice #236929.  The patch is available to all InterNiche customers in accordance with the terms of their current support agreements.

    More information can be found on www.iNiche.com or through support@iNiche.com


    === NicheLite v2.0 TCP/IP ===

    InterNiche Technologies has updated its NicheLite v2.0 TCP/IP product to handle the scenarios described in NISCC Vulnerability Notice #236929.  The patch is available to all InterNiche customers in accordance with the terms of their current support agreements.

    More information can be found on www.iNiche.com or through support@iNiche.com
    Juniper Networks
      Juniper Networks products are susceptible to this vulnerability. Customers should contact Juniper Networks Technical Assistance Center for availability and download instructions.

    Additional information is posted on our web site at https://www.juniper.net/support.
    Lucent Technologies
      Lucent Technologies is aware of this vulnerability advisory and is investigating any potential impact to its product portfolio. As further information becomes available, Lucent will provide information directly to its customers, if appropriate.
    Mitel Networks
      Mitel is aware of the vulnerability and is working with the vendors of our underlying networking software to assess the impact and, if necessary, determine potential solutions. When more information becomes available, an advisory will be issued. Please contact 'security@mitel.com' if you have specific questions.
    MRLG
      A new version of the Multi-Router Looking Glass tool (4.3.0) has been released.  This includes a patch that prevents a remote user from utilising the "sh ip bgp neighbors" functionality.  This new version is available from ftp://ftp.enterzone.net/looking-glass/CURRENT/.
    NEC
      NEC is aware of this vulnerability and is trying to determine potential impacts on our products.
    Nortel Networks
      Nortel Networks has evaluated this issue and testing has confirmed that it is possible to successfully exploit this vulnerability. However, the preconditions for a successful exploitation require levels of access to the network that are unlikely to be achieved in a normal network operating environment; furthermore, such levels of access would enable other forms of attack with much greater impact than that achievable by exploiting this vulnerability.

    Nortel Networks is continuing to validate that this vulnerability has no serious consequences for Nortel equipment, and will update this statement periodically.
    Polycom
      Polycom has investigated the potential impact to our products for NISCC Advisory 236929.

    Specific product information will be provided at http://www.polycom.com/securitycenter.
    Secure Computing Corporation
      The Sidewinder and Sidewinder G2 firewalls offer protection against this attack at all releases. As application-layer firewalls, Sidewinder and Sidewinder G2 offer protection to systems behind the firewall as well as protecting management connections to the firewall.
    Yamaha
      Pending.


    Acknowledgements

    NISCC wishes to thank the following:

    \x95 Steve Bellovin, Rob Thomas and Paul Watson for their contributions to this advisory.
    \x95 Cisco Systems Inc. and Juniper Networks Inc. for their help with the content of this advisory and for their support during the disclosure process.
    \x95 JPCERT/CC for their assistance in co-ordinating this disclosure in Japan.


    References
      Internet Engineering Task Force
        RFC 793 Transmission Control Protocol
          http://www.ietf.org/rfc/rfc793.txt
        RFC 1323 TCP Extensions for High Performance
          http://www.ietf.org/rfc/rfc1323.txt
        RFC 1771 A Border Gateway Protocol 4 (BGP-4)
          http://www.ietf.org/rfc/rfc1771.txt
        RFC 2385 Protection of BGP Sessions via the TCP MD5 Signature Option
          http://www.ietf.org/rfc/rfc2385.txt
        RFC 2827 Network Ingress Filtering
          http://www.ietf.org/rfc/rfc2827.txt
        RFC 3562 Considerations for the TCP MD5 Signature Option
          http://www.ietf.org/rfc/rfc3562.txt
        RFC 3682 Generalized TTL Security Mechanism
          http://www.ietf.org/rfc/rfc3682.txt
        Internet Draft - Transmission Control Protocol security considerations
          http://www.ietf.org/internet-drafts/draft-ietf-tcpm-tcpsecure-00.txt
      NISCC
        Best Practice Guidelines - Border Gateway Protocol
          http://www.niscc.gov.uk/BGP Filtering Guide.pdf
      Configuration and Tuning Guides
        Secure BGP Template for Cisco IOS
          http://www.cymru.com/Documents/secure-bgp-template.html
        JUNOS Secure BGP Template
          http://www.qorbit.net/documents/junos-bgp-template.pdf
        UNIX IP Stack Tuning Guide
          http://www.cymru.com/Documents/ip-stack-tuning.html
      Other Documents
        SANS discussion on egress filtering
          http://www.sans.org/y2k/egress.htm
      Vulnerability Databases
        Common Vulnerabilities and Exposures (CVE)
          http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0230
        Open Source Vulnerability Database (OSVDB)
          http://www.osvdb.org/displayvuln.php?osvdb_id=4030



    Contact Information

    The NISCC Vulnerability Management Team can be contacted as follows:

    Email vulteam@niscc.gov.uk
    (Please quote the advisory reference in the subject line.)
    Telephone +44 (0)20 7821 1330 Extension 4511
    (Monday to Friday 08:30 - 17:00)
    Fax +44 (0)20 7821 1686
    Post Vulnerability Management Team
    NISCC
    PO Box 832
    London
    SW1P 1BG

    We encourage those who wish to communicate via email to make use of our PGP key. This is available from http://www.uniras.gov.uk/UNIRAS.asc.

    Please note that UK government protectively marked material should not be sent to the email address above.

    If you wish to be added to our email distribution list, please email your request to uniras@niscc.gov.uk.


    What is NISCC?

    For further information regarding the UK National Infrastructure Security Co-Ordination Centre, please visit the NISCC web site at:
    http://www.niscc.gov.uk/aboutniscc/index.htm

    Reference to any specific commercial product, process or service by trade name, trademark manufacturer or otherwise, does not constitute or imply its endorsement, recommendation, or favouring by NISCC. The views and opinions of authors expressed within this notice shall not be used for advertising or product endorsement purposes.

    Neither shall NISCC accept responsibility for any errors or omissions contained within this advisory. In particular, they shall not be liable for any loss or damage whatsoever, arising from or in connection with the usage of information contained within this notice.

    \xa9 2004 Crown Copyright

    Revision History

    April 20, 2004: Initial release (1.0)
    April 21, 2004: Corrected hyperlinks (1.1)
      Inserted impact statement for Cisco (1.1)
      Inserted impact statement for Mitel (1.1)
      Inserted MRLG patch reference (1.2)
    April 22, 2004: Revised impact statement for Certicom (1.3)
      Inserted impact statement for Nortel Networks (1.3)
      Inserted impact statement for Secure Computing Corporation (1.3)
      Inserted references section (1.4)
      Inserted impact statement for Lucent Technologies (1.4)

    <End of NISCC Vulnerability Advisory>

    . -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512

    ============================================================================= FreeBSD-SA-14:19.tcp Security Advisory The FreeBSD Project

    Topic: Denial of Service in TCP packet processing

    Category: core Module: inet Announced: 2014-09-16 Credits: Jonathan Looney (Juniper SIRT) Affects: All supported versions of FreeBSD. Corrected: 2014-09-16 09:48:35UTC (stable/10, 10.1-PRERELEASE) 2014-09-16 09:48:35 UTC (stable/10, 10.1-BETA1-p1) 2014-09-16 09:50:19 UTC (releng/10.0, 10.0-RELEASE-p9) 2014-09-16 09:49:11 UTC (stable/9, 9.3-STABLE) 2014-09-16 09:50:19 UTC (releng/9.3, 9.3-RELEASE-p2) 2014-09-16 09:50:19 UTC (releng/9.2, 9.2-RELEASE-p12) 2014-09-16 09:50:19 UTC (releng/9.1, 9.1-RELEASE-p19) 2014-09-16 09:49:11 UTC (stable/8, 8.4-STABLE) 2014-09-16 09:50:19 UTC (releng/8.4, 8.4-RELEASE-p16) CVE Name: CVE-2004-0230

    For general information regarding FreeBSD Security Advisories, including descriptions of the fields above, security branches, and the following sections, please visit . New TCP connections are initiated using special SYN flag in a datagram. Sequencing of data is controlled by 32-bit sequence numbers, that start with a random value and are increased using modulo 232 arithmetic. In case one of the two port numbers is unknown, a successful attack requires less than 217 packets spoofed, which can be generated within less than a second on a decent connection to the Internet. Workaround

    It is possible to defend against these attacks with stateful traffic inspection using a firewall. This can be done by enabling pf(4) on the system and creating states for every connection. Even a default ruleset to allow all traffic would be sufficient to mitigate this issue.

    V. Solution

    Perform one of the following:

    1) Upgrade your vulnerable system to a supported FreeBSD stable or release / security branch (releng) dated after the correction date.

    2) To update your vulnerable system via a source code patch:

    The following patches have been verified to apply to the applicable FreeBSD release branches.

    a) Download the relevant patch from the location below, and verify the detached PGP signature using your PGP utility.

    fetch http://security.FreeBSD.org/patches/SA-14:19/tcp.patch

    fetch http://security.FreeBSD.org/patches/SA-14:19/tcp.patch.asc

    gpg --verify tcp.patch.asc

    b) Apply the patch. Execute the following commands as root:

    cd /usr/src

    patch < /path/to/patch

    c) Recompile your kernel as described in and reboot the system.

    3) To update your vulnerable system via a binary patch:

    Systems running a RELEASE version of FreeBSD on the i386 or amd64 platforms can be updated via the freebsd-update(8) utility:

    freebsd-update fetch

    freebsd-update install

    VI. Correction details

    The following list contains the correction revision numbers for each affected branch.

    Branch/path Revision


    stable/8/ r271668 releng/8.4/ r271669 stable/9/ r271668 releng/9.1/ r271669 releng/9.2/ r271669 releng/9.3/ r271669 stable/10/ r271667 releng/10.0/ r271669


    To see which files were modified by a particular revision, run the following command, replacing NNNNNN with the revision number, on a machine with Subversion installed:

    svn diff -cNNNNNN --summarize svn://svn.freebsd.org/base

    Or visit the following URL, replacing NNNNNN with the revision number:

    VII

    Show details on source website

    {
      "affected_products": {
        "_id": null,
        "data": [
          {
            "_id": null,
            "model": "catalyst csx",
            "scope": "eq",
            "trust": 2.4,
            "vendor": "cisco",
            "version": "60005.3"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "oracle",
            "version": "11"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "oracle",
            "version": "10"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "netbsd",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "netbsd",
            "version": "1.6.2"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "netbsd",
            "version": "1.6.1"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "netbsd",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "netbsd",
            "version": "1.5.3"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "netbsd",
            "version": "1.5.2"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "netbsd",
            "version": "1.5.1"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "netbsd",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "unixware",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "xinuos",
            "version": "7.1.1"
          },
          {
            "_id": null,
            "model": "unixware",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "xinuos",
            "version": "7.1.3"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 1.5,
            "vendor": "cisco",
            "version": "30002.5.2"
          },
          {
            "_id": null,
            "model": "nexland isb soho firewall appliance",
            "scope": null,
            "trust": 1.1,
            "vendor": "symantec",
            "version": null
          },
          {
            "_id": null,
            "model": "aix",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "ibm",
            "version": "5.3"
          },
          {
            "_id": null,
            "model": "aix",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "ibm",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "aix",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "ibm",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "wan manager",
            "scope": null,
            "trust": 1.1,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "vg248 analog phone gateway",
            "scope": null,
            "trust": 1.1,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "traffic director",
            "scope": null,
            "trust": 1.1,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rtm",
            "scope": null,
            "trust": 1.1,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "6.3"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "6.2"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "lightstream",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "1010"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "12.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "12.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "12.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "12.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "11.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "11.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "11.1"
          },
          {
            "_id": null,
            "model": "element management framework",
            "scope": null,
            "trust": 1.1,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "content router",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "4450"
          },
          {
            "_id": null,
            "model": "content router",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "4430"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "560"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "507"
          },
          {
            "_id": null,
            "model": "channel port adapter",
            "scope": null,
            "trust": 1.1,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "channel interface processor",
            "scope": null,
            "trust": 1.1,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "call manager",
            "scope": null,
            "trust": 1.1,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "access registrar",
            "scope": null,
            "trust": 1.1,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "12.1x46"
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "12.2"
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "13.1"
          },
          {
            "_id": null,
            "model": "windows xp",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "13.2"
          },
          {
            "_id": null,
            "model": "openserver",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "xinuos",
            "version": "5.0.6"
          },
          {
            "_id": null,
            "model": "openpgp",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openpgp",
            "version": "2.6.2"
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "12.1x45"
          },
          {
            "_id": null,
            "model": "network data loss prevention",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "mcafee",
            "version": "9.2.0"
          },
          {
            "_id": null,
            "model": "windows 98se",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows 98",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "11.4r13"
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "12.1r"
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "12.3"
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "11.4x27"
          },
          {
            "_id": null,
            "model": "network data loss prevention",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "mcafee",
            "version": "8.6"
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "12.1x47"
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "11.4"
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "12.1x44"
          },
          {
            "_id": null,
            "model": "network data loss prevention",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "mcafee",
            "version": "9.2.1"
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "11.4"
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "12.1"
          },
          {
            "_id": null,
            "model": "network data loss prevention",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "mcafee",
            "version": "9.2.2"
          },
          {
            "_id": null,
            "model": "windows 2000",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server 2003",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "openserver",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "xinuos",
            "version": "5.0.7"
          },
          {
            "_id": null,
            "model": "junos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "juniper",
            "version": "13.3"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "cisco",
            "version": "60006.1"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "cisco",
            "version": "60005.5"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "cisco",
            "version": "50006.1"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "cisco",
            "version": "40006.1"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "cisco",
            "version": "40005.1"
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "redback",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "sun microsystems",
            "version": null
          },
          {
            "_id": null,
            "model": "ciscoworks voice manager",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "seil/turbo",
            "scope": "lt",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "ver.1.19 earlier firmware"
          },
          {
            "_id": null,
            "model": "firewall services module",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "cisco 7600 for series )"
          },
          {
            "_id": null,
            "model": "systems parallel channel port adapter",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "seil/neu",
            "scope": "lt",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "t1  ver.1.90 earlier  ver.1.x firmware"
          },
          {
            "_id": null,
            "model": "sanrise",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "9500v series"
          },
          {
            "_id": null,
            "model": "catalyst 2900 series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "2948g-ge-tx"
          },
          {
            "_id": null,
            "model": "gateway security 300 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "symantec",
            "version": null
          },
          {
            "_id": null,
            "model": "ws-x6624-fxs",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "mgx 8230 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ons 15500 series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "ons 15531/15532 t31"
          },
          {
            "_id": null,
            "model": "enterprise firewall",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "symantec",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "interstage application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "fujitsu",
            "version": "5.0/5.1/6.0"
          },
          {
            "_id": null,
            "model": "gateway security 400 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "symantec",
            "version": null
          },
          {
            "_id": null,
            "model": "content router",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "cr-4430-b"
          },
          {
            "_id": null,
            "model": "mgx 8250 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "gateway security 5300 series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "symantec",
            "version": "v1.0"
          },
          {
            "_id": null,
            "model": "fasthub 400 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ons 15800 series dwdm platforms",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "ons 15800/15801/15808"
          },
          {
            "_id": null,
            "model": "provider-1",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "check point",
            "version": "ng with application intelligence (r55)"
          },
          {
            "_id": null,
            "model": "hp ethertwist switch",
            "scope": null,
            "trust": 0.8,
            "vendor": "hewlett packard",
            "version": null
          },
          {
            "_id": null,
            "model": "8110 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ciscoworks for windows",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "microswitch",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "1538/1548"
          },
          {
            "_id": null,
            "model": "ws-x6608-e1",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ons 15830",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "t30 optical amplification system"
          },
          {
            "_id": null,
            "model": "windows xp",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "sp3"
          },
          {
            "_id": null,
            "model": "windows server 2003",
            "scope": null,
            "trust": 0.8,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "provider-1",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "check point",
            "version": "ng fp3"
          },
          {
            "_id": null,
            "model": "switchprobe",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ix3000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": "gateway security 5400 series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "symantec",
            "version": "v2.x"
          },
          {
            "_id": null,
            "model": "catalyst 2800 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "interstage security director",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "fujitsu",
            "version": "v5.0l10/v5.0l20/v6.0l10"
          },
          {
            "_id": null,
            "model": "bpx 8600 series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "broadb  network termination unit"
          },
          {
            "_id": null,
            "model": "vpn-1/firewall-1",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "check point",
            "version": "ng with application intelligence (r55)"
          },
          {
            "_id": null,
            "model": "rt series",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "hp procurve routing switch",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hewlett packard",
            "version": "9300m series"
          },
          {
            "_id": null,
            "model": "ip/tv",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "safegate",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "fujitsu",
            "version": "2.2.1"
          },
          {
            "_id": null,
            "model": "me1100 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ix5000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": "gs4000",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "ciscoworks host solution engine",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catalyst 3000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "vpn-1/firewall-1",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "check point",
            "version": "ng fp3"
          },
          {
            "_id": null,
            "model": "catalyst 3900 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ws-x6608-t1",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "gr4000",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "provider-1",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "check point",
            "version": "ng with application intelligence (r54)"
          },
          {
            "_id": null,
            "model": "ata 180 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "cx3200",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": "mgx 8950 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "secure ids",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "(netranger)    ids module"
          },
          {
            "_id": null,
            "model": "ons 15400 series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "ons 15454"
          },
          {
            "_id": null,
            "model": "ons 15300 series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "ons 15327"
          },
          {
            "_id": null,
            "model": "ciscoworks wireless lan solution engine",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "fasthub 300 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "11.0"
          },
          {
            "_id": null,
            "model": "secure user registration tool",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "seil/neu",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "2fe"
          },
          {
            "_id": null,
            "model": "content switching module",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "gr2000",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "qx series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": "seil/neu",
            "scope": "lt",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "2fe plus  ver.1.10 earlier firmware"
          },
          {
            "_id": null,
            "model": "localdirector",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "vpn-1/firewall-1",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "check point",
            "version": "ng with application intelligence (r54)"
          },
          {
            "_id": null,
            "model": "windows 9x",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "98"
          },
          {
            "_id": null,
            "model": "ons 15831",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "t31 dwdm system"
          },
          {
            "_id": null,
            "model": "microhub",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows 9x",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "me"
          },
          {
            "_id": null,
            "model": "sn 5400 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "router",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "allied telesis",
            "version": "( includes products other than routers tcp all products that implement )"
          },
          {
            "_id": null,
            "model": "seil/neu",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "128"
          },
          {
            "_id": null,
            "model": "windows 2000",
            "scope": null,
            "trust": 0.8,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "safegate",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "fujitsu",
            "version": "v2.0l20a"
          },
          {
            "_id": null,
            "model": "interstage security director",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "fujitsu",
            "version": "v3.0l20/v4.0l10/v4.0l20"
          },
          {
            "_id": null,
            "model": "catalyst 1900 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ciscoworks device fault manager",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "mgx 8220 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "igx 8400 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "590    7320"
          },
          {
            "_id": null,
            "model": "aironet 350 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "seil/neu",
            "scope": "lt",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "t1  ver.2.22 earlier  ver.2.x firmware"
          },
          {
            "_id": null,
            "model": "ons 15100 series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "ons 15190/15194"
          },
          {
            "_id": null,
            "model": "internet cdn solution",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "univerge ip8800/s,/r series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": "systems escon channel port adapter",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "firewall/vpn appliance",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "symantec",
            "version": "100/200/200r"
          },
          {
            "_id": null,
            "model": "hp advancestack switch",
            "scope": null,
            "trust": 0.8,
            "vendor": "hewlett packard",
            "version": null
          },
          {
            "_id": null,
            "model": "catalyst 4000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catalyst 2820 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "firewall services module",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "(catalyst 6500"
          },
          {
            "_id": null,
            "model": "aironet ap340 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "css 11000 series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "css 11150"
          },
          {
            "_id": null,
            "model": "ix5500 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": "gs3000",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "nexland pro series firewall appliance",
            "scope": null,
            "trust": 0.8,
            "vendor": "symantec",
            "version": null
          },
          {
            "_id": null,
            "model": "velociraptor",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "symantec",
            "version": "1.5 model 1100/1200/1300"
          },
          {
            "_id": null,
            "model": "interstage security director",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "fujitsu",
            "version": "4.0/4.1"
          },
          {
            "_id": null,
            "model": "application and content networking system",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "secure access control server software",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "for windows   unix"
          },
          {
            "_id": null,
            "model": "vg248",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "enterprise firewall",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "symantec",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "catalyst 1200 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "global site selector",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "mds 9000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ix2000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": "catalyst 5000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "info center",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "css 11000 series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "(arrowpoint)"
          },
          {
            "_id": null,
            "model": "enterprise firewall",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "symantec",
            "version": "7.0.4"
          },
          {
            "_id": null,
            "model": "content distribution manager",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catalyst 6000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "content delivery manager",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "4630    4650"
          },
          {
            "_id": null,
            "model": "css 11500 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "seil/neu",
            "scope": "lt",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "atm  ver.1.36 earlier firmware"
          },
          {
            "_id": null,
            "model": "css 11000 series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "css 11050"
          },
          {
            "_id": null,
            "model": "ix1000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": "cache engine",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "505    570"
          },
          {
            "_id": null,
            "model": "ons 15832",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "t31 dwdm system"
          },
          {
            "_id": null,
            "model": "windows 9x",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "98 scd"
          },
          {
            "_id": null,
            "model": "intelligent contact management",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "unity",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "server"
          },
          {
            "_id": null,
            "model": "vpn 3000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "css 11000 series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "css 11800"
          },
          {
            "_id": null,
            "model": "mgx 8850 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "hp procurve switch",
            "scope": null,
            "trust": 0.8,
            "vendor": "hewlett packard",
            "version": null
          },
          {
            "_id": null,
            "model": "interstage security director",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "fujitsu",
            "version": "v6.0l10"
          },
          {
            "_id": null,
            "model": "tru64 f pk8",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "hp",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "cisco",
            "version": "50005.1"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "cisco",
            "version": "50004.5"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "cisco",
            "version": "40005.5"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "cisco",
            "version": "40005.2"
          },
          {
            "_id": null,
            "model": "call manager",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "cisco",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.6,
            "vendor": "cisco",
            "version": "30003.1"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.6,
            "vendor": "cisco",
            "version": "30003.0.3"
          },
          {
            "_id": null,
            "model": "css11500 content services switch s",
            "scope": "ne",
            "trust": 0.6,
            "vendor": "cisco",
            "version": "7.30"
          },
          {
            "_id": null,
            "model": "css11500 content services switch s",
            "scope": "ne",
            "trust": 0.6,
            "vendor": "cisco",
            "version": "7.20"
          },
          {
            "_id": null,
            "model": "velociraptor",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "13001.5"
          },
          {
            "_id": null,
            "model": "velociraptor",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "12001.5"
          },
          {
            "_id": null,
            "model": "velociraptor",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "11001.5"
          },
          {
            "_id": null,
            "model": "nexland pro800turbo firewall appliance",
            "scope": null,
            "trust": 0.3,
            "vendor": "symantec",
            "version": null
          },
          {
            "_id": null,
            "model": "nexland pro800 firewall appliance",
            "scope": null,
            "trust": 0.3,
            "vendor": "symantec",
            "version": null
          },
          {
            "_id": null,
            "model": "nexland pro400 firewall appliance",
            "scope": null,
            "trust": 0.3,
            "vendor": "symantec",
            "version": null
          },
          {
            "_id": null,
            "model": "nexland pro100 firewall appliance",
            "scope": null,
            "trust": 0.3,
            "vendor": "symantec",
            "version": null
          },
          {
            "_id": null,
            "model": "gateway security",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "54002.0.1"
          },
          {
            "_id": null,
            "model": "gateway security",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "54002.0"
          },
          {
            "_id": null,
            "model": "gateway security",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "53101.0"
          },
          {
            "_id": null,
            "model": "gateway security",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "53001.0"
          },
          {
            "_id": null,
            "model": "gateway security 460r",
            "scope": null,
            "trust": 0.3,
            "vendor": "symantec",
            "version": null
          },
          {
            "_id": null,
            "model": "gateway security",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "460"
          },
          {
            "_id": null,
            "model": "gateway security",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "440"
          },
          {
            "_id": null,
            "model": "gateway security",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "4200"
          },
          {
            "_id": null,
            "model": "gateway security 360r build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "2.1415"
          },
          {
            "_id": null,
            "model": "gateway security 360r build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "2.1300"
          },
          {
            "_id": null,
            "model": "gateway security 360r",
            "scope": null,
            "trust": 0.3,
            "vendor": "symantec",
            "version": null
          },
          {
            "_id": null,
            "model": "gateway security",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "360"
          },
          {
            "_id": null,
            "model": "gateway security",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "320"
          },
          {
            "_id": null,
            "model": "firewall/vpn appliance 200r",
            "scope": null,
            "trust": 0.3,
            "vendor": "symantec",
            "version": null
          },
          {
            "_id": null,
            "model": "firewall/vpn appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "200"
          },
          {
            "_id": null,
            "model": "firewall/vpn appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "100"
          },
          {
            "_id": null,
            "model": "enterprise firewall solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "enterprise firewall nt/2000",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "enterprise firewall solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "7.0.4"
          },
          {
            "_id": null,
            "model": "enterprise firewall nt/2000",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "7.0.4"
          },
          {
            "_id": null,
            "model": "enterprise firewall solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "enterprise firewall nt/2000",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "symantec",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "irix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sgi",
            "version": "6.5.25"
          },
          {
            "_id": null,
            "model": "irix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sgi",
            "version": "6.5.24"
          },
          {
            "_id": null,
            "model": "irix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sgi",
            "version": "6.5.23"
          },
          {
            "_id": null,
            "model": "irix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sgi",
            "version": "6.5.22"
          },
          {
            "_id": null,
            "model": "turbo",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.18"
          },
          {
            "_id": null,
            "model": "neu t1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "2.21"
          },
          {
            "_id": null,
            "model": "neu t1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.89"
          },
          {
            "_id": null,
            "model": "neu atm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.35"
          },
          {
            "_id": null,
            "model": "neu 2fe plus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.9"
          },
          {
            "_id": null,
            "model": "neu 2fe",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "2.21"
          },
          {
            "_id": null,
            "model": "neu 2fe",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.89"
          },
          {
            "_id": null,
            "model": "neu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1282.21"
          },
          {
            "_id": null,
            "model": "neu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1281.89"
          },
          {
            "_id": null,
            "model": "unixware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sco",
            "version": "7.1.3"
          },
          {
            "_id": null,
            "model": "unixware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sco",
            "version": "7.1.1"
          },
          {
            "_id": null,
            "model": "open server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sco",
            "version": "5.0.7"
          },
          {
            "_id": null,
            "model": "open server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sco",
            "version": "5.0.6"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "screenos r4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.3"
          },
          {
            "_id": null,
            "model": "screenos r3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.3"
          },
          {
            "_id": null,
            "model": "screenos r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.3"
          },
          {
            "_id": null,
            "model": "screenos r1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.3"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.3"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.2"
          },
          {
            "_id": null,
            "model": "screenos r9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "screenos r8",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "screenos r7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "screenos r6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "screenos r5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "screenos r4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "screenos r3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "screenos r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "screenos r10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "screenos r1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "screenos r9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos r8",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos r7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos r6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos r5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos r4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos r3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos r12",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos r11",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos r10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos r1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos -dial",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "screenos r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1.1"
          },
          {
            "_id": null,
            "model": "screenos r9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "screenos r8",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "screenos r7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "screenos r6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "screenos r5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "screenos r4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "screenos r3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "screenos r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "screenos r12",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "screenos r11",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "screenos r10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "screenos r1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "screenos r8",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.3"
          },
          {
            "_id": null,
            "model": "screenos r7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.3"
          },
          {
            "_id": null,
            "model": "screenos r6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.3"
          },
          {
            "_id": null,
            "model": "screenos r5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.3"
          },
          {
            "_id": null,
            "model": "screenos r4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.3"
          },
          {
            "_id": null,
            "model": "screenos r3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.3"
          },
          {
            "_id": null,
            "model": "screenos r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.3"
          },
          {
            "_id": null,
            "model": "screenos r1.1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.3"
          },
          {
            "_id": null,
            "model": "screenos r1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.3"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.3"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.2"
          },
          {
            "_id": null,
            "model": "screenos r7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.1"
          },
          {
            "_id": null,
            "model": "screenos r6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.1"
          },
          {
            "_id": null,
            "model": "screenos r5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.1"
          },
          {
            "_id": null,
            "model": "screenos r4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.1"
          },
          {
            "_id": null,
            "model": "screenos r3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.1"
          },
          {
            "_id": null,
            "model": "screenos r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.1"
          },
          {
            "_id": null,
            "model": "screenos r1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.1"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0.1"
          },
          {
            "_id": null,
            "model": "screenos r4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "screenos r3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "screenos r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "screenos r1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "screenos r4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.10"
          },
          {
            "_id": null,
            "model": "screenos r3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.10"
          },
          {
            "_id": null,
            "model": "screenos r1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.8"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.8"
          },
          {
            "_id": null,
            "model": "screenos r3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.7.1"
          },
          {
            "_id": null,
            "model": "screenos r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.7.1"
          },
          {
            "_id": null,
            "model": "screenos r1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.7.1"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.7.1"
          },
          {
            "_id": null,
            "model": "screenos r9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "screenos r8",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "screenos r7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "screenos r6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "screenos r5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "screenos r4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "screenos r3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "screenos r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "screenos r12",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "screenos r11",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "screenos r10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "screenos r1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.6"
          },
          {
            "_id": null,
            "model": "screenos r6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.5"
          },
          {
            "_id": null,
            "model": "screenos r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.5"
          },
          {
            "_id": null,
            "model": "screenos r1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.5"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.5"
          },
          {
            "_id": null,
            "model": "screenos r7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "screenos r6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "screenos r8",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "2.0.1"
          },
          {
            "_id": null,
            "model": "screenos r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "1.73"
          },
          {
            "_id": null,
            "model": "screenos r1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "1.73"
          },
          {
            "_id": null,
            "model": "screenos r2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "1.66"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "1.66"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "1.64"
          },
          {
            "_id": null,
            "model": "screenos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netscreen",
            "version": "1.7"
          },
          {
            "_id": null,
            "model": "beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netbsd",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "windows xp tablet pc edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp tablet pc edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp tablet pc edition",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp professional edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "x64"
          },
          {
            "_id": null,
            "model": "windows xp professional sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp professional sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp professional",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp media center edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp media center edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp media center edition",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp home sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp home sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp home",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp embedded sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp embedded",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp 64-bit edition version",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows xp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "0"
          },
          {
            "_id": null,
            "model": "windows server web edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server web edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server standard edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "windows server standard edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server standard edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition itanium sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition itanium sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows server sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows professional sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows professional sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows professional sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows professional sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows professional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows datacenter server sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows datacenter server sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows datacenter server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows datacenter server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows datacenter server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows advanced server sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows advanced server sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows advanced server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows advanced server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows advanced server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "data loss prevention",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mcafee",
            "version": "9.2.2"
          },
          {
            "_id": null,
            "model": "data loss prevention",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mcafee",
            "version": "9.2.1"
          },
          {
            "_id": null,
            "model": "data loss prevention",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mcafee",
            "version": "9.2.0"
          },
          {
            "_id": null,
            "model": "data loss prevention",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mcafee",
            "version": "8.6"
          },
          {
            "_id": null,
            "model": "t-series router t640",
            "scope": null,
            "trust": 0.3,
            "vendor": "juniper",
            "version": null
          },
          {
            "_id": null,
            "model": "t-series router t320",
            "scope": null,
            "trust": 0.3,
            "vendor": "juniper",
            "version": null
          },
          {
            "_id": null,
            "model": "m-series router m5",
            "scope": null,
            "trust": 0.3,
            "vendor": "juniper",
            "version": null
          },
          {
            "_id": null,
            "model": "m-series router m40e",
            "scope": null,
            "trust": 0.3,
            "vendor": "juniper",
            "version": null
          },
          {
            "_id": null,
            "model": "m-series router m40",
            "scope": null,
            "trust": 0.3,
            "vendor": "juniper",
            "version": null
          },
          {
            "_id": null,
            "model": "m-series router m20",
            "scope": null,
            "trust": 0.3,
            "vendor": "juniper",
            "version": null
          },
          {
            "_id": null,
            "model": "m-series router m160",
            "scope": null,
            "trust": 0.3,
            "vendor": "juniper",
            "version": null
          },
          {
            "_id": null,
            "model": "m-series router m10",
            "scope": null,
            "trust": 0.3,
            "vendor": "juniper",
            "version": null
          },
          {
            "_id": null,
            "model": "e-series router",
            "scope": null,
            "trust": 0.3,
            "vendor": "juniper",
            "version": null
          },
          {
            "_id": null,
            "model": "nichestack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "interniche",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "nichelite",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "interniche",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "rfc tcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "793:"
          },
          {
            "_id": null,
            "model": "rfc tcp extensions for high performance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "1323:"
          },
          {
            "_id": null,
            "model": "aix l",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.3"
          },
          {
            "_id": null,
            "model": "aix l",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "aix l",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "tru64 b-2 pk4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "tru64 b pk4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "tru64 b pk3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "tru64 a pk6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "tru64 g pk4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "procurve switch 9315m",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 9308m",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 9304m",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 8000m",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 5372xl j4848a",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 5348xl j4849a",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 5308xl j4819a",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 5304xl j4850a",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 4108gl-bundle",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 4108gl j4865a",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 4108gl",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 4000m j4121a",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 4000m",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2525"
          },
          {
            "_id": null,
            "model": "procurve switch j4813a",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2524"
          },
          {
            "_id": null,
            "model": "procurve switch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2524"
          },
          {
            "_id": null,
            "model": "procurve switch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2512"
          },
          {
            "_id": null,
            "model": "procurve switch 2424m j4093a",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 2424m",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 2400m j4122a",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 2400m",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "procurve switch 1600m",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "ethertwist",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "advancestack switch 800t j3245a",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "advancestack 10base-t switching hub j3210a a.03.07",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "advancestack 10base-t switching hub j3205a a.03.07",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "advancestack 10base-t switching hub j3204a a.03.07",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "advancestack 10base-t switching hub j3203a a.03.07",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "advancestack 10base-t switching hub j3202a a.03.07",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "advancestack 10base-t switching hub j3201a a.03.07",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "advancestack 10base-t switching hub j3200a a.03.07",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "_id": null,
            "model": "9.3-release-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.3-rc3-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.3-rc2-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.3-rc2",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.3-rc1-p2",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.3-rc",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.3-prerelease",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.3-beta3-p2",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.3-beta1-p2",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.3-beta1-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.3-beta1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "9.3"
          },
          {
            "_id": null,
            "model": "9.2-stable",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-releng",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-release-p9",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-release-p8",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-release-p7",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-release-p5",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-release-p4",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-release-p3",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-release-p11",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-release-p10",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-rc3-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-rc2-p2",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-rc2",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-rc1-p2",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-rc1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "rc2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "9.2"
          },
          {
            "_id": null,
            "model": "rc1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "9.2"
          },
          {
            "_id": null,
            "model": "prerelease",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "9.2"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "9.2-"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "9.2"
          },
          {
            "_id": null,
            "model": "9.1-stable",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-releng",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-release-p7",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-release-p3",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-release-p18",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-release-p17",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-release-p16",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-release-p15",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-release-p14",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-release-p12",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-release-p11",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-release-p10",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-release-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-rc2",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-rc1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1--releng",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "release-p5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "9.1"
          },
          {
            "_id": null,
            "model": "release-p4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "9.1"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "9.1"
          },
          {
            "_id": null,
            "model": "9.0-stable",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.0-releng",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.0-release-p6",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.0-release",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.0-rc3",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.0-rc1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.0--releng",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "9.0"
          },
          {
            "_id": null,
            "model": "8.4-releng",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-release-p9",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-release-p8",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-release-p7",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-release-p4",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-release-p15",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-release-p14",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-release-p13",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-release-p12",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-release-p11",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-rc2-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-rc1-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-prerelease",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-beta1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "8.4"
          },
          {
            "_id": null,
            "model": "8.3-stable",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.3-releng",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.3-release-p8",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.3-release-p6",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.3-release-p16",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.3-release-p15",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.3-release-p14",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.3-release-p11",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "8.3"
          },
          {
            "_id": null,
            "model": "8.2-stable",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.2-release-p2",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.2-release-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.2-release",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "release -p3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "8.2-"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "8.2"
          },
          {
            "_id": null,
            "model": "8.1-stable",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.1-releng",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.1-release-p5",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.1-release-p4",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.1-release-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.1-release",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.1-prerelease",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "8.1"
          },
          {
            "_id": null,
            "model": "8.0-stable",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.0-release",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.0-rc1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "-release-p5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "8-stable",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8-releng",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.0-release-p8",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.0-release-p7",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.0-release-p6",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.0-release-p5",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.0-release-p4",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.0-release-p2",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.0-release-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.0-rc3-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.0-rc2-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.0-rc1-p1",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.0-beta",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "10.0"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "10"
          },
          {
            "_id": null,
            "model": "unicos/mp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "2.3"
          },
          {
            "_id": null,
            "model": "unicos/mp",
            "scope": null,
            "trust": 0.3,
            "vendor": "cray",
            "version": null
          },
          {
            "_id": null,
            "model": "unicos/mk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "2.0.5.54"
          },
          {
            "_id": null,
            "model": "unicos/mk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "1.5.1"
          },
          {
            "_id": null,
            "model": "unicos/mk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "unicos max",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "1.3.5"
          },
          {
            "_id": null,
            "model": "unicos max",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "1.3"
          },
          {
            "_id": null,
            "model": "unicos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "9.2.4"
          },
          {
            "_id": null,
            "model": "unicos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "9.2"
          },
          {
            "_id": null,
            "model": "unicos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "9.0.2.5"
          },
          {
            "_id": null,
            "model": "unicos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "9.0"
          },
          {
            "_id": null,
            "model": "unicos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "8.3"
          },
          {
            "_id": null,
            "model": "unicos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "unicos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "unicos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "unicos e",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "unicos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cray",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "ws-x6624",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ws-x6608",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "wireless lan solution engine",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "wireless lan solution appliance",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "wgb340",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5008"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5002"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5001"
          },
          {
            "_id": null,
            "model": "voice manager",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "user registration tool vlan policy server",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "unity server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "unity server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.3"
          },
          {
            "_id": null,
            "model": "unity server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.2"
          },
          {
            "_id": null,
            "model": "unity server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "unity server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "unity server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.46"
          },
          {
            "_id": null,
            "model": "unity server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.4"
          },
          {
            "_id": null,
            "model": "unity server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.3"
          },
          {
            "_id": null,
            "model": "unity server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.2"
          },
          {
            "_id": null,
            "model": "unity server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "unity server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "unity server",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "switchprobe",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "switchprobe",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.7"
          },
          {
            "_id": null,
            "model": "switchprobe",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.6"
          },
          {
            "_id": null,
            "model": "switchprobe",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.5"
          },
          {
            "_id": null,
            "model": "switchprobe",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.2"
          },
          {
            "_id": null,
            "model": "switchprobe",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "switchprobe",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "sn5400 series storage routers",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "sn storage router sn5428-3.3.2-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "_id": null,
            "model": "sn storage router sn5428-3.3.1-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "_id": null,
            "model": "sn storage router sn5428-3.2.2-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "_id": null,
            "model": "sn storage router sn5428-3.2.1-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "_id": null,
            "model": "sn storage router sn5428-2.5.1-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "_id": null,
            "model": "sn storage router sn5428-2-3.3.2-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "_id": null,
            "model": "sn storage router sn5428-2-3.3.1-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "_id": null,
            "model": "sn storage router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "54201.1.3"
          },
          {
            "_id": null,
            "model": "sn storage router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "54201.1(7)"
          },
          {
            "_id": null,
            "model": "sn storage router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "54201.1(5)"
          },
          {
            "_id": null,
            "model": "sn storage router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "54201.1(4)"
          },
          {
            "_id": null,
            "model": "sn storage router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "54201.1(3)"
          },
          {
            "_id": null,
            "model": "sn storage router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "54201.1(2)"
          },
          {
            "_id": null,
            "model": "secure pix firewall",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "secure intrusion detection system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "0"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.3.1"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.3(3.109)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.3(3.102)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.3(1)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.2.3"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.2.2.111"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.2.2"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.2.1"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.2(3.100)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.2(3)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.2(2)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.2(1)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.1.5"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.1.4"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.1.3"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.1(5)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.1(4)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.1(3)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.1(2)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.1(1)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.0.4"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.0.3"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.0(4.101)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.0(4)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.0(2)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.0(1)"
          },
          {
            "_id": null,
            "model": "parallel channel port adapter",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ons t31 submarine wdm system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "15863"
          },
          {
            "_id": null,
            "model": "ons t31 dwdm system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "15832"
          },
          {
            "_id": null,
            "model": "ons t31 dwdm system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "15831"
          },
          {
            "_id": null,
            "model": "ons t30 optical amplification system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "15830"
          },
          {
            "_id": null,
            "model": "ons dense wave division mux platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "15808"
          },
          {
            "_id": null,
            "model": "ons dense wave division mux platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "15801"
          },
          {
            "_id": null,
            "model": "ons dense wave division mux platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "15800"
          },
          {
            "_id": null,
            "model": "ons t31 omds metro wdm system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "15532"
          },
          {
            "_id": null,
            "model": "ons t31 omds metro wdm system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "15531"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154544.1(3)"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154544.1(2)"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154544.1(1)"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154544.1(0)"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154544.1"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154544.0(2)"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154544.0(1)"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154544.0"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154543.4"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154543.3"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154543.2.0"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154543.1.0"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154543.0"
          },
          {
            "_id": null,
            "model": "ons",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "153274.1(3)"
          },
          {
            "_id": null,
            "model": "ons",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "153274.1(2)"
          },
          {
            "_id": null,
            "model": "ons",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "153274.1(1)"
          },
          {
            "_id": null,
            "model": "ons",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "153274.1(0)"
          },
          {
            "_id": null,
            "model": "ons",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "153274.0(2)"
          },
          {
            "_id": null,
            "model": "ons",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "153274.0(1)"
          },
          {
            "_id": null,
            "model": "ons",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "153274.0"
          },
          {
            "_id": null,
            "model": "ons",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "153273.4"
          },
          {
            "_id": null,
            "model": "ons",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "153273.3"
          },
          {
            "_id": null,
            "model": "ons",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "153273.2"
          },
          {
            "_id": null,
            "model": "ons",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "153273.1"
          },
          {
            "_id": null,
            "model": "ons",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "153273.0"
          },
          {
            "_id": null,
            "model": "ons ip transport concentrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "15194"
          },
          {
            "_id": null,
            "model": "ons ip transport concentrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "15190"
          },
          {
            "_id": null,
            "model": "microswitch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1548"
          },
          {
            "_id": null,
            "model": "microswitch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1538"
          },
          {
            "_id": null,
            "model": "microhub",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1500"
          },
          {
            "_id": null,
            "model": "mgx-8850 r2",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "mgx-8850 r1",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "mgx-8260",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "mgx-8240",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "mgx-8220",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "mgx pxm1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8850-1.2.11"
          },
          {
            "_id": null,
            "model": "mgx pxm1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8850-1.2.10"
          },
          {
            "_id": null,
            "model": "mgx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8850"
          },
          {
            "_id": null,
            "model": "mgx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8830"
          },
          {
            "_id": null,
            "model": "mgx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "82501.2.11"
          },
          {
            "_id": null,
            "model": "mgx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "82501.2.10"
          },
          {
            "_id": null,
            "model": "mgx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "82301.2.11"
          },
          {
            "_id": null,
            "model": "mgx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "82301.2.10"
          },
          {
            "_id": null,
            "model": "mgx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "me1100",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "mds",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "90002.0(0.86)"
          },
          {
            "_id": null,
            "model": "mds",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "90001.3(3.33)"
          },
          {
            "_id": null,
            "model": "mds",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "9000"
          },
          {
            "_id": null,
            "model": "local director",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "lightstream atm switches",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "100"
          },
          {
            "_id": null,
            "model": "ip/tv server",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ip phone",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7960"
          },
          {
            "_id": null,
            "model": "ip phone",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7940"
          },
          {
            "_id": null,
            "model": "ip phone",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7905"
          },
          {
            "_id": null,
            "model": "ios 12.3xq",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xn",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xm",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xi",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xe",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3t",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3bw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3b",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zp",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zn",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zi",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ze",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2za",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yy",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yv",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yu",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yt",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ys",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yr",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yq",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yp",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yo",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yn",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ym",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ye",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ya",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xu",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xt",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xs",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xq",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xn",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xm",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xi",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xe",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2t",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sy",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sxb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sxa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2se",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2s",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2mc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ja",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ew",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2dx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2dd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2cx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2bz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2by",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2bx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2bw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2bc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2b",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1yj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1yi",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1yh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1yf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ye",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1yd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1yc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1yb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ya",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "12.1xv"
          },
          {
            "_id": null,
            "model": "ios 12.1xu",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xt",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xr",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xq",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xp",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xm",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xi",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xe",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1t",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ey",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ex",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ew",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ev",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1eu",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1eo",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ec",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1eb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ea",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1e",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1db",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1da",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ay",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ax",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1aa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1 e2",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "12.0xv"
          },
          {
            "_id": null,
            "model": "ios 12.0xu",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xs",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xr",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xq",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xp",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xn",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xm",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xi",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xe",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0wx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0wt",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0wc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0w5",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0t",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0sz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0sx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0st",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0sl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0s",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0dc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0db",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0da",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 11.2sa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 11.2p",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 11.1cc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 11.1aa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "internet cdn content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7320"
          },
          {
            "_id": null,
            "model": "internet cdn content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "590"
          },
          {
            "_id": null,
            "model": "intelligent contact manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "intelligent contact manager",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "infocenter",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "igx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8400"
          },
          {
            "_id": null,
            "model": "hosting solution engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1.3"
          },
          {
            "_id": null,
            "model": "hosting solution engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "gss global site selector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "44900"
          },
          {
            "_id": null,
            "model": "gss global site selector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4480"
          },
          {
            "_id": null,
            "model": "fasthub",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4001.0"
          },
          {
            "_id": null,
            "model": "fasthub",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "300"
          },
          {
            "_id": null,
            "model": "escon channel port adapter",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "device fault manager",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "css11800 content services switch",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "css11500 content services switch",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "css11150 content services switch",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "css11050 content services switch",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "css11000 content services switch",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "csm",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "cr-4430-b",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "content router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "44304.1"
          },
          {
            "_id": null,
            "model": "content router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "44304.0"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "73204.1"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "73204.0"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "73203.1"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "73202.2.0"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7320"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5904.1"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5904.0"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5903.1"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5902.2.0"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "590"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5604.1"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5604.0"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5603.1"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5602.2.0"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5074.1"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5074.0"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5073.1"
          },
          {
            "_id": null,
            "model": "content engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5072.2.0"
          },
          {
            "_id": null,
            "model": "content distribution manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4670"
          },
          {
            "_id": null,
            "model": "content distribution manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "46504.1"
          },
          {
            "_id": null,
            "model": "content distribution manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "46504.0"
          },
          {
            "_id": null,
            "model": "content distribution manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4650"
          },
          {
            "_id": null,
            "model": "content distribution manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "46304.1"
          },
          {
            "_id": null,
            "model": "content distribution manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "46304.0"
          },
          {
            "_id": null,
            "model": "content distribution manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4630"
          },
          {
            "_id": null,
            "model": "content delivery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4650"
          },
          {
            "_id": null,
            "model": "content delivery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4630"
          },
          {
            "_id": null,
            "model": "ciscoworks windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ciscosecure acs for windows and unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ciscosecure acs appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1111"
          },
          {
            "_id": null,
            "model": "catalyst series ssl services module",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6500"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60007.6(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60007.5(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60007.1(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60007.1"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60006.3(4)"
          },
          {
            "_id": null,
            "model": "catalyst pan",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60006.3"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60006.2(0.111)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60006.2(0.110)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60006.1(2.13)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60006.1(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60005.5(4)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60005.5(3)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60005.5(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60005.5(13)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60005.5(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60005.4.1"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60005.4(4)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60005.4(3)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60005.4(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60005.4(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60005.4"
          },
          {
            "_id": null,
            "model": "catalyst ws-x6380-nam",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60003.1"
          },
          {
            "_id": null,
            "model": "catalyst ws-svc-nam-2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60003.1"
          },
          {
            "_id": null,
            "model": "catalyst ws-svc-nam-1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60003.1"
          },
          {
            "_id": null,
            "model": "catalyst ws-svc-nam-2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60002.2"
          },
          {
            "_id": null,
            "model": "catalyst ws-svc-nam-1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60002.2"
          },
          {
            "_id": null,
            "model": "catalyst ws-x6380-nam",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "60002.1"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50006.3(4)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50006.1(3)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50006.1(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50006.1(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.5(7)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.5(6)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.5"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.5(4)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.5(3)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.5(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.5(13)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.5(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.4.1"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.4(4)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.4(3)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.4(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.4(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.2(4)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.2(3)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.2(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.2(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.2"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50005.1(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50004.5(9)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50004.5(8)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50004.5(7)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50004.5(6)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50004.5(5)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50004.5(4)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50004.5(3)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50004.5(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50004.5(12)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50004.5(11)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50004.5(10)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5000"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40007.6(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40007.5(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40007.1.2"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40007.1(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40007.1"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40006.3.5"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40006.3(4)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40006.1(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.5.5"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.5(4)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.5(3)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.5(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.5(13)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.5(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.4.1"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.4(3)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.4(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.4(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.4"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.2(7)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.2(6)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.2(5)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.2(4)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.2(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.2(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40005.1(1)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40004.5(9)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40004.5(8)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40004.5(7)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40004.5(6)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40004.5(5)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40004.5"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40004.5(4)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40004.5(3)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40004.5(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "40004.5(10)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4000"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3900"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3000"
          },
          {
            "_id": null,
            "model": "catalyst supervisor software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "29xx2.4.401"
          },
          {
            "_id": null,
            "model": "catalyst supervisor software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "29xx2.1.1102"
          },
          {
            "_id": null,
            "model": "catalyst supervisor software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "29xx2.1.6"
          },
          {
            "_id": null,
            "model": "catalyst supervisor software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "29xx2.1.502"
          },
          {
            "_id": null,
            "model": "catalyst supervisor software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "29xx2.1.501"
          },
          {
            "_id": null,
            "model": "catalyst supervisor software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "29xx2.1.5"
          },
          {
            "_id": null,
            "model": "catalyst supervisor software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "29xx1.0"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2950"
          },
          {
            "_id": null,
            "model": "catalyst 2948g-l3",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catalyst 2948g-ge-tx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catalyst 2948g",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2920"
          },
          {
            "_id": null,
            "model": "catalyst xl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2900"
          },
          {
            "_id": null,
            "model": "catalyst lre xl",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2900"
          },
          {
            "_id": null,
            "model": "catalyst xu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "290012.0"
          },
          {
            "_id": null,
            "model": "catalyst sa6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "290011.2"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "29006.1(3)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "29006.1(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "29005.5(7)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "29005.5(6)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "29004.5(12)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "29004.5(11)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2900"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2820"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2800"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1900"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1200"
          },
          {
            "_id": null,
            "model": "call manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "call manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.3(3)"
          },
          {
            "_id": null,
            "model": "call manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.3"
          },
          {
            "_id": null,
            "model": "call manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.2"
          },
          {
            "_id": null,
            "model": "call manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.1(2)"
          },
          {
            "_id": null,
            "model": "call manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "call manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "call manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "cache engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5704.1"
          },
          {
            "_id": null,
            "model": "cache engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5704.0"
          },
          {
            "_id": null,
            "model": "cache engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5703.0"
          },
          {
            "_id": null,
            "model": "cache engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5702.2.0"
          },
          {
            "_id": null,
            "model": "cache engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "570"
          },
          {
            "_id": null,
            "model": "cache engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5054.1"
          },
          {
            "_id": null,
            "model": "cache engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5054.0"
          },
          {
            "_id": null,
            "model": "cache engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5053.0"
          },
          {
            "_id": null,
            "model": "cache engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5052.2.0"
          },
          {
            "_id": null,
            "model": "cache engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "505"
          },
          {
            "_id": null,
            "model": "br350",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "br340",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bpx/igx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bpx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8600"
          },
          {
            "_id": null,
            "model": "bpx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "application \u0026 content networking software",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ap350",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ap340",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "wan switch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8950"
          },
          {
            "_id": null,
            "model": "broadband network termination unit",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8110"
          },
          {
            "_id": null,
            "model": "point software vpn-1 vsx ng with application intelligence",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "point software vpn-1 next generation fp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "point software vpn-1 next generation fp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "point software vpn-1 next generation fp0",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "point software vpn-1 sp6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software vpn-1 sp5a",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software vpn-1 sp5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software vpn-1 sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software vpn-1 sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software vpn-1 sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software vpn-1 sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software vpn-1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software vpn-1 fp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "point software secureplatform ng fp2 edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "2"
          },
          {
            "_id": null,
            "model": "point software secureplatform ng fp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "point software secureplatform ng fp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "point software secureplatform ng",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "point software firewall-1 vsx ng with application intelligence",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "point software firewall-1 next generation fp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "point software firewall-1 next generation fp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "point software firewall-1 next generation fp0",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "point software firewall-1 gx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "point software firewall-1 [ vpn des ]",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "+4.1"
          },
          {
            "_id": null,
            "model": "point software firewall-1 [ vpn des strong ] sp2 build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "++4.141716"
          },
          {
            "_id": null,
            "model": "point software firewall-1 [ vpn des strong ] build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "++4.141439"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp5a",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software firewall-1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp8",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "point software firewall-1 sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "point software firewall-1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "point software firewall-1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "coat systems security gateway os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "3.1.2"
          },
          {
            "_id": null,
            "model": "coat systems security gateway os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "coat systems security gateway os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "coat systems security gateway os sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "2.1.5001"
          },
          {
            "_id": null,
            "model": "coat systems security gateway os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "2.1.10"
          },
          {
            "_id": null,
            "model": "coat systems security gateway os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "2.1.9"
          },
          {
            "_id": null,
            "model": "coat systems security gateway os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "coat systems cacheos ca/sa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "4.1.12"
          },
          {
            "_id": null,
            "model": "coat systems cacheos ca/sa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "4.1.10"
          },
          {
            "_id": null,
            "model": "modular messaging",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "intuity audix r5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "0"
          },
          {
            "_id": null,
            "model": "cms r17 r3",
            "scope": null,
            "trust": 0.3,
            "vendor": "avaya",
            "version": null
          },
          {
            "_id": null,
            "model": "cms r17",
            "scope": null,
            "trust": 0.3,
            "vendor": "avaya",
            "version": null
          },
          {
            "_id": null,
            "model": "cms r16 r6",
            "scope": null,
            "trust": 0.3,
            "vendor": "avaya",
            "version": null
          },
          {
            "_id": null,
            "model": "cms r16 r5",
            "scope": null,
            "trust": 0.3,
            "vendor": "avaya",
            "version": null
          },
          {
            "_id": null,
            "model": "cms r16",
            "scope": null,
            "trust": 0.3,
            "vendor": "avaya",
            "version": null
          },
          {
            "_id": null,
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "5.0.4"
          },
          {
            "_id": null,
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.15.2"
          },
          {
            "_id": null,
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.15.1"
          },
          {
            "_id": null,
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.15"
          },
          {
            "_id": null,
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.14"
          },
          {
            "_id": null,
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.13"
          },
          {
            "_id": null,
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.12.1"
          },
          {
            "_id": null,
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.12"
          },
          {
            "_id": null,
            "model": "network data loss prevention",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "mcafee",
            "version": "9.3"
          },
          {
            "_id": null,
            "model": "9.3-stable",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.3-release-p2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.2-release-p12",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "9.1-release-p19",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-stable",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "8.4-release-p16",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.1-prerelease",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.1-beta1-p1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "10.0-release-p9",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3080"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3060"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3030"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3015"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30054.0.1"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30054.0"
          },
          {
            "_id": null,
            "model": "vpn concentrator f",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30053.6.7"
          },
          {
            "_id": null,
            "model": "vpn concentrator d",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30053.6.7"
          },
          {
            "_id": null,
            "model": "vpn concentrator c",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30053.6.7"
          },
          {
            "_id": null,
            "model": "vpn concentrator b",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30053.6.7"
          },
          {
            "_id": null,
            "model": "vpn concentrator a",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30053.6.7"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30053.6.7"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30053.6.5"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30053.6.3"
          },
          {
            "_id": null,
            "model": "vpn hardware client",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3002"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30004.0.1"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30004.0.x"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30004.0"
          },
          {
            "_id": null,
            "model": "vpn concentrator d",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.6.7"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.6.7"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.6.1"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.6"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.5.5"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.5.4"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.5.3"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.5.2"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.5.1"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.5"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.1.4"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.1.2"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.1.1"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.0.4"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30003.0"
          },
          {
            "_id": null,
            "model": "vpn concentrator",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "30002.0"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.3.3(133)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.2.3(110)"
          },
          {
            "_id": null,
            "model": "pix firewall",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6.1.5(104)"
          },
          {
            "_id": null,
            "model": "ons optical transport platform",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "154544.14"
          },
          {
            "_id": null,
            "model": "ons",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "153274.14"
          },
          {
            "_id": null,
            "model": "mds",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "90001.3"
          },
          {
            "_id": null,
            "model": "local director",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.2(6)"
          },
          {
            "_id": null,
            "model": "local director",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.2(5)"
          },
          {
            "_id": null,
            "model": "local director",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.2(4)"
          },
          {
            "_id": null,
            "model": "local director",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.2(3)"
          },
          {
            "_id": null,
            "model": "local director",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.2(2)"
          },
          {
            "_id": null,
            "model": "local director",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.2(1)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "12.3(6)"
          },
          {
            "_id": null,
            "model": "ios 12.2ja",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "12.2(23)"
          },
          {
            "_id": null,
            "model": "ios 12.2 s",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0 xn1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "12.0(28)"
          },
          {
            "_id": null,
            "model": "ios 12.0 s",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "fwsm for cisco catalyst series",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6500/76001.1(3.17)"
          },
          {
            "_id": null,
            "model": "fwsm for cisco catalyst series",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "6500/7600"
          },
          {
            "_id": null,
            "model": "css11500 content services switch s",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.10"
          },
          {
            "_id": null,
            "model": "catalyst series ssl services module",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "65002.1(2)"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "28209.00.07"
          },
          {
            "_id": null,
            "model": "catalyst",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "19009.00.07"
          },
          {
            "_id": null,
            "model": "cms r17 r4",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "avaya",
            "version": null
          },
          {
            "_id": null,
            "model": "cms r16.3 r7",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "avaya",
            "version": null
          },
          {
            "_id": null,
            "model": "alienvault",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "5.1"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#415294"
          },
          {
            "db": "BID",
            "id": "10183"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200408-159"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2004-000150"
          },
          {
            "db": "NVD",
            "id": "CVE-2004-0230"
          }
        ]
      },
      "configurations": {
        "_id": null,
        "data": [
          {
            "CVE_data_version": "4.0",
            "nodes": [
              {
                "cpe_match": [
                  {
                    "cpe22Uri": "cpe:/o:ibm:aix",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:netbsd:netbsd",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:allied_telesis_k.k.:router",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:oracle:solaris",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:channel_interface_processor",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:channel_port_adapter",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:8110_router",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:access_registrar",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:aironet",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:aironet_ap340",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:application_and_content_networking_system_software",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:ata-180",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:bpx_switch_8600",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:cache_engine",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:call_manager",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:catalyst_1200",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:catalyst_1900",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:catalyst_2800",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:catalyst_2820",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:catalyst_2900",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:catalyst_3000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:catalyst_3900",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:catalyst_4000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:catalyst_5000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:catalyst_6000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:content_delivery_manager",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:content_distribution_manager",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:content_engine",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:content_router",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:content_switching_module",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:css_11000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:css_11500",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:element_management_framework",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:fasthub_300",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:fasthub_400",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:firewall_services_module",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:gss_global_site_selector",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:igx_8400",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:info_center",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:intelligent_contact_manager",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:internet_cdn_solution",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:cisco:ios",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:ip_tv",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:lightstream",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:localdirector",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:mds_9000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:me_1100",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:mgx_8220",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:mgx_8230",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:mgx_8250",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:mgx_8850",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:mgx_8950",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:microhub",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:microswitch",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:ons_15100",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:ons_15300",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:ons_15400",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:ons_15500",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:ons_15800_dwdm",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:ons_15830",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:ons_15831",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:ons_15832",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:pix_firewall",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:rtm",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:secure_access_control_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:secure_ids",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:secure_user_registration_tool",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:sn_5400",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:switchprobe",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:escon_channel_port_adapter",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:parallel_channel_port_adapter",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:traffic_director",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:unity",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:vg248",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:vg248_analog_phone_gateway",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:vpn_3000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:wan_manager",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:ciscoworks_device_fault_manager",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:ciscoworks_windows",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:hosting_solution_engine",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:ciscoworks_voice_manager",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:cisco:wireless_lan_solution_engine",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:ws-x6608-e1",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:ws-x6608-t1",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:ws-x6624-fxs",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:symantec:nexland_isb_soho_firewall_appliance",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:symantec:nexland_pro_firewall_appliance",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:symantec:enterprise_firewall",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:symantec:firewall_vpn_appliance",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:symantec:gateway_security_300",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:symantec:gateway_security_400",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:symantec:gateway_security_5300",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:symantec:gateway_security_5400",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:symantec:symantec_velociraptor",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:juniper:screenos",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:checkpoint:provider-1",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:checkpoint:vpn-1_firewall-1",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hp:advancestack_switch",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hp:ethertwist_switch",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hp:procurve_switch",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hp:procurve_routing_switch",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:microsoft:windows_2000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:microsoft:windows-9x",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:microsoft:windows_server_2003",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:microsoft:windows_xp",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:cx3200",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix1000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix2000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix3000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix5000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix5500",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:qx",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:univerge_ip8800_s_r",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hitachi:gr2000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hitachi:gr4000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hitachi:gs3000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hitachi:gs4000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hitachi:sanrise",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:fujitsu:interstage_application_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:fujitsu:interstage_security_director",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:fujitsu:safegate",
                    "vulnerable": true
                  }
                ],
                "operator": "OR"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2004-000150"
          }
        ]
      },
      "credits": {
        "_id": null,
        "data": "Discovery is credited to Paul A. Watson.",
        "sources": [
          {
            "db": "BID",
            "id": "10183"
          }
        ],
        "trust": 0.3
      },
      "cve": "CVE-2004-0230",
      "cvss": {
        "_id": null,
        "data": [
          {
            "cvssV2": [
              {
                "accessComplexity": "LOW",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "nvd@nist.gov",
                "availabilityImpact": "PARTIAL",
                "baseScore": 5.0,
                "confidentialityImpact": "NONE",
                "exploitabilityScore": 10.0,
                "id": "CVE-2004-0230",
                "impactScore": 2.9,
                "integrityImpact": "NONE",
                "severity": "MEDIUM",
                "trust": 1.9,
                "vectorString": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
                "version": "2.0"
              },
              {
                "accessComplexity": "LOW",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "VULHUB",
                "availabilityImpact": "PARTIAL",
                "baseScore": 5.0,
                "confidentialityImpact": "NONE",
                "exploitabilityScore": 10.0,
                "id": "VHN-8660",
                "impactScore": 2.9,
                "integrityImpact": "NONE",
                "severity": "MEDIUM",
                "trust": 0.1,
                "vectorString": "AV:N/AC:L/AU:N/C:N/I:N/A:P",
                "version": "2.0"
              }
            ],
            "cvssV3": [],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2004-0230",
                "trust": 1.0,
                "value": "MEDIUM"
              },
              {
                "author": "CARNEGIE MELLON",
                "id": "VU#415294",
                "trust": 0.8,
                "value": "12.90"
              },
              {
                "author": "NVD",
                "id": "CVE-2004-0230",
                "trust": 0.8,
                "value": "Medium"
              },
              {
                "author": "CNNVD",
                "id": "CNNVD-200408-159",
                "trust": 0.6,
                "value": "MEDIUM"
              },
              {
                "author": "VULHUB",
                "id": "VHN-8660",
                "trust": 0.1,
                "value": "MEDIUM"
              },
              {
                "author": "VULMON",
                "id": "CVE-2004-0230",
                "trust": 0.1,
                "value": "MEDIUM"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#415294"
          },
          {
            "db": "VULHUB",
            "id": "VHN-8660"
          },
          {
            "db": "VULMON",
            "id": "CVE-2004-0230"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200408-159"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2004-000150"
          },
          {
            "db": "NVD",
            "id": "CVE-2004-0230"
          }
        ]
      },
      "description": {
        "_id": null,
        "data": "TCP, when using a large Window Size, makes it easier for remote attackers to guess sequence numbers and cause a denial of service (connection loss) to persistent TCP connections by repeatedly injecting a TCP RST packet, especially in protocols that use long-lived connections, such as BGP. A vulnerability exists in the reliance of the Border Gateway Protocol (BGP) on the Transmission Control Protocol (TCP) to maintain persistent sessions. Sustained exploitation of this vulnerability could lead to a denial-of-service condition affecting a large segment of the Internet community. Normal operations would most likely resume shortly after the attack stopped. TCP Has a sequence number TCP There is a problem that it is justified if it is within the window. Therefore, there is a vulnerability that makes it easy to guess the external sequence number when establishing a long-term connection that increases the window size. Note that products affected by this vulnerability TCP Covers many products with implementation. For more information, NISCC-236929 (JVN) , NISCC Advisory 236929 (CPNI Advisory 00391) Please check also.A third party TCP By predicting the sequence number of a particular TCP Service operation interruption such as forcibly terminating a connection (DoS) There is a possibility of being attacked. A vulnerability in TCP implementations may permit unauthorized remote users to reset TCP sessions. This issue affects products released by multiple vendors. Exploiting this issue may permit remote attackers to more easily approximate TCP sequence numbers. This will permit a remote attacker to inject a SYN or RST packet into the session, causing it to be reset and effectively allowing denial-of-service attacks. An attacker would exploit this issue by sending a packet to a receiving implementation with an approximated sequence number and a forged source IP and TCP port. \nFew factors may present viable target implementations, such as imlementations that:\n- depend on long-lived TCP connections\n- have known or easily guessed IP address endpoints\n- have known or easily guessed TCP source ports. As a result, this issue is likely to affect a number of routing platforms. \nNote also that while a number of vendors have confirmed this issue in various products, investigations are ongoing and it is likely that many other vendors and products will turn out to be vulnerable as the issue is investigated further. \nOther consequences may also result from this issue, such as injecting specific data in TCP sessions, but this has not been confirmed. \n**Update: Microsoft platforms are also reported prone to this vulnerability. Vendor reports indicate that an attacker will require knowledge of the IP address and port numbers of the source and destination of an existent legitimate TCP connection in order to exploit this vulnerability on Microsoft platforms. The following products and versions are affected: Oracle Solaris 10, 11; Openpgp 2.6.2; Mcafee Network Data Loss Prevention 8.6 and earlier, 9.2.0, 9.2.1, 9.2.2; Netbsd 1.5, Version 1.5.1, Version 1.5.2, Version 1.5.3, Version 1.6, Version 1.6.1, Version 1.6.2, Version 2.0; Xinuos Openserver Version 5.0.6, Version 5.0.7; Juniper Networks Junos OS; Xinuos Unixware Version 7.1.1, Version 7.1.3. \n\n----------------------------------------------------------------------\n\nWant a new IT Security job?\n\nVacant positions at Secunia:\nhttp://secunia.com/secunia_vacancies/\n\n----------------------------------------------------------------------\n\nTITLE:\nAvaya Intuity Audix TCP Connection Reset Vulnerability\n\nSECUNIA ADVISORY ID:\nSA15263\n\nVERIFY ADVISORY:\nhttp://secunia.com/advisories/15263/\n\nCRITICAL:\nLess critical\n\nIMPACT:\nDoS\n\nWHERE:\n\u003eFrom remote\n\nOPERATING SYSTEM:\nAvaya Intuity Audix R5\nhttp://secunia.com/product/4586/\n\nDESCRIPTION:\nAvaya has acknowledged a vulnerability in Intuity Audix, which can be\nexploited by malicious people to reset established TCP connections on\na vulnerable system. \n\nFor more information:\nSA11440\n\nSOLUTION:\nA patch will reportedly be included in the next major release. \n\nORIGINAL ADVISORY:\nAvaya:\nhttp://support.avaya.com/elmodocs2/security/ASA-2005-097_SCASA-2005-14.pdf\n\nOTHER REFERENCES:\nSA11440:\nhttp://secunia.com/advisories/11440/\n\n----------------------------------------------------------------------\n\nAbout:\nThis Advisory was delivered by Secunia as a free service to help\neverybody keeping their systems up to date against the latest\nvulnerabilities. \n\nSubscribe:\nhttp://secunia.com/secunia_security_advisories/\n\nDefinitions: (Criticality, Where etc.)\nhttp://secunia.com/about_secunia_advisories/\n\n\nPlease Note:\nSecunia recommends that you verify all advisories you receive by\nclicking the link. \nSecunia NEVER sends attached files with advisories. \nSecunia does not advise people to install third party patches, only\nuse those supplied by the vendor. Routing operations would recover quickly\n   after such attacks ended. \n\nI. Description\n\n   In 2001, the CERT Coordination Center released CA-2001-09, describing\n   statistical weaknesses in various TCP/IP Initial Sequence generators. \n   In that document (\u003chttp://www.cert.org/advisories/CA-2001-09.html\u003e),\n   it was noted by Tim Newsham:\n\n     [I]f a sequence number within the receive window is known, an\n     attacker can inject data into the session stream or terminate the\n     connection. If the ISN value is known and the number of bytes sent\n     already sent is known, an attacker can send a simple packet to\n     inject data or kill the session. \n\n   Paul Watson has performed the statistical analysis of this attack\n   when the ISN is not known and has pointed out that such an attack\n   could be viable when specifically taking into account the TCP\n   Window size. He has also created a proof-of-concept tool\n   demonstrating the practicality of the attack. The National\n   Infrastructure Security Co-Ordination Centre (NISCC) has published\n   an advisory summarizing Paul Watson\u0027s analysis in \"NISCC\n   Vulnerability Advisory 236929,\" available at\n   \u003chttp://www.uniras.gov.uk/vuls/2004/236929/index.htm\u003e. \n\n   Since TCP is an insecure protocol, it is possible to inject\n   transport-layer packets into sessions between hosts given the right\n   preconditions. For detailed information about BGP and\n   some tips for securing it, please see Cisco System\u0027s documentation\n   (\u003chttp://www.cisco.com/univercd/cc/td/doc/cisintwk/ito_doc/bgp.htm\u003e\n   or Team Cymru (\u003chttp://www.cymru.com/\u003e). This may result in a brief\n   loss of service until the fresh routing tables are created. When\n   this is taken into account, instead of attempting to send a spoofed\n   packet with all potential sequence numbers, the attacker would only\n   need to calculate an valid sequence number that falls within the next\n   expected ISN plus or minus half the window size. According to Paul Watson\u0027s report,\n   with a typical xDSL data connection (80 Kbps, upstream) capable of\n   sending of 250 packets per second (pps) to a session with a TCP Window\n   size of 65,535 bytes, it would be possible to inject a TCP packet\n   approximately every 5 minutes. It would take approximately 15 seconds\n   with a T-1 (1.544 Mbps) connection. These numbers are significant when\n   large numbers of compromised machines (often called \"botnets\" or\n   \"zombies\") can be used to generate large amounts of packets that can\n   be directed at a particular host. \n\n   To protect against such injections, RFC 2385 provides a method of\n   using MD5 signatures on the TCP Headers. If this form of verification\n   is supported and enabled between two peers, then an attacker would\n   have to obtain the key used to transmit the packet in order to\n   successfully inject a packet into the TCP session. Another alternative\n   would be to tunnel BGP over IPSec. Again, this would provide a form of\n   authentication between the BGP peers and the data that they transmit. \n   The lack of authentication when using TCP for BGP makes this type of\n   attack more viable. \n\n   US-CERT is tracking this issue as VU#415294. This reference number\n   corresponds to CVE candidate CAN-2004-0230. NISCC is tracking this\n   issue as Advisory 236929. \n\nII. Impacts could range from data corruption or session\n   hijacking to a denial-of-service condition. \n\nIII. Solution\n\nApply a patch from your vendor\n\n   Please see you vendor\u0027s statement regarding the availability of\n   patches, updates and mitigation strategies. The lack of cryptographically-strong\n   security options for the TCP header itself is a deficiency that\n   technologies like IPSec try to address. It must be noted that in the\n   final analysis that if an attacker has the ability to see unencrypted\n   TCP traffic generated from a site, that site is vulnerable to various\n   TCP attacks - not just those mentioned here. A stronger measure that\n   would aid in protecting against such TCP attacks is end-to-end\n   cryptographic solutions like those outlined in various IPSec\n   documents. \n\n   The key idea with an end-to-end cryptographic solution is that there\n   is some secure verification that a given packet belongs in a\n   particular stream. However, the communications layer at which this\n   cryptography is implemented will determine its effectiveness in\n   repelling ISN based attacks. Solutions that operate above the\n   Transport Layer (OSI Layer 4), such as SSL/TLS and SSH1/SSH2, only\n   prevent arbitrary packets from being inserted into a session. They are\n   unable to prevent a connection reset (denial of service) since the\n   connection handling will be done by a lower level protocol (i.e.,\n   TCP). On the other hand, Network Layer (OSI Layer 3) cryptographic\n   solutions such as IPSec prevent both arbitrary packets entering a\n   transport-layer stream and connection resets because connection\n   management is directly integrated into the secure Network Layer\n   security model. \n\n   The solutions presented above have the desirable attribute of not\n   requiring any changes to the TCP protocol or implementations to be\n   made. RFC2385 (\"Protection of BGP Sessions via the TCP MD5\n   Signature Option\") and other technologies provide options for adding\n   cryptographic protection within the TCP header at the cost of some\n   potential denial of service, interoperability, and performance issues. \n\nIngress filtering\n\n   Ingress filtering manages the flow of traffic as it enters a network\n   under your administrative control. You can configure your BGP routers\n   to only accept packets on a specific network connection. Servers are\n   typically the only machines that need to accept inbound connections\n   from the public Internet. In the network usage policy of many sites,\n   there are few reasons for external hosts to initiate inbound\n   connections to machines that provide no public services. Thus, ingress\n   filtering should be performed at the border to prohibit externally\n   initiated inbound connections to non-authorized services. In this\n   fashion, the effectiveness of many intruder scanning techniques can be\n   dramatically reduced. \n\nNetwork Isolation\n\n   Complex networks can benefit by separating data channels and control\n   channels, such as BGP, into different logical or physical networks. \n   Technologies such as VLANs, VPNs, leased links, NAT may all be able to\n   contribute to separating the tranmission of control information from\n   the transmission of the data stream. \n\nEgress filtering\n\n   Egress filtering manages the flow of traffic as it leaves a network\n   under your administrative control. There is typically limited need for\n   machines providing public services to initiate outbound connections to\n   the Internet. \n\n   In the case of BGP, only your BGP routers should be establishing\n   connections to your peers. Other BGP traffic generated on your network\n   could be a sign of an attempted attack. \n\nAppendix A. As\n   vendors report new information to US-CERT, we will update the\n   vulnerability note. If a particular vendor is not listed in either the\n   NISCC advisory, or the vulnerability, we recommend that you contact\n   them for their comments. \n     _________________________________________________________________\n\n   US-CERT thanks Paul Watson, Cisco Systems and NISCC for notifying us\n   about this problem and for helping us to construct this advisory. \n     _________________________________________________________________\n\n   Feedback can be directed to the US-CERT Technical Staff. \n     _________________________________________________________________\n\n   Copyright 2004 Carnegie Mellon University. -----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA1\n\nCisco Security Advisory:\\xa0TCP Vulnerabilities in Multiple IOS-Based Cisco\nProducts\n\nRevision 1.0\n\nFor Public Release 2004 April 20 21:00 UTC (GMT)\n\n- -------------------------------------------------------------------------\nSummary\n=======\nA vulnerability in the Transmission Control Protocol (TCP) specification\n(RFC793) has been discovered by an external researcher. The successful\nexploitation enables an adversary to reset any established TCP connection\nin a much shorter time than was previously discussed publicly. Depending\non the application, the connection may get automatically re-established. \nIn other cases, a user will have to repeat the action (for example, open\na new Telnet or SSH session). Depending upon the attacked protocol, a\nsuccessful attack may have additional consequences beyond terminated\nconnection which must be considered. This attack vector is only\napplicable to the sessions which are terminating on a device (such as a\nrouter, switch, or computer) and not to the sessions that are only\npassing through the device (for example, transit traffic that is being\nrouted by a router). In addition, this attack vector does not directly\ncompromise data integrity or confidentiality. \n\nThis advisory is available at \nhttp://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-ios.shtml, \nand it describes this vulnerability as it applies to Cisco products that \nrun Cisco IOS\\xae software. \n\nA companion advisory that describes this vulnerability for products that\ndo not run Cisco IOS software is available at \nhttp://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-nonios.shtml. The severity of the exposure\ndepends upon the protocols and applications that utilize TCP. \n\nThis attack vector is only applicable to the sessions which are\nterminating on a device (such as a router, switch, or computer), and not\nto the sessions that are only passing through the device (for example,\ntransit traffic that is being routed by a router). \n\nDetails\n=======\nTCP is the transport layer protocol designed to provide\nconnection-oriented reliable delivery of a data stream. To accomplish\nthis, TCP uses a mixture of flags to indicate state and sequence numbers\nto identify the order in which the packets are to be reassembled. The acknowledgement number is not used in a packet with the\nreset (RST) flag set because a reset does not expect a packet in return. \nThe full specification of the TCP protocol can be found at \nhttp://www.ietf.org/rfc/rfc0793.txt. \n\nAccording to the RFC793 specification, it is possible to reset an\nestablished TCP connection by sending a packet with the RST or\nsynchronize (SYN) flag set. However, the sequence number does not\nhave to be an exact match; it is sufficient to fall within the advertised\nwindow. This significantly decreases the effort required by an adversary:\nthe larger the window, the easier it is to reset the connection. The destination TCP port is usually\nknown for all standard services (for example, 23 for Telnet, 80 for\nHTTP). Cisco IOS software uses predictable ephemeral ports for known\nservices with a predictable increment (the next port which will be used\nfor a subsequent connection). These values, while constant for a\nparticular Cisco IOS software version and protocol, can vary from one\nrelease to another. \n\nHere is an example of a normal termination of a TCP session:\n   \n    \n                    Host(1)                       Host(2)\n                      |                             |\n                      |                             |\n                      |  ACK ack=1001, window=5000  |\n                      |\u003c----------------------------|\n                      |                             |\n    \n    \n    \n                  Host(1) is\n    \n             closing the session\n    \n    \n    \n                      |        RST seq=1001         |\n                      |----------------------------\u003e|\n                      |                             |\n    \n    \n    \n                                                Host(2) is\n    \n                                            closing the session\n    \n   \nIn addition, the following scenario is also permitted:\n   \n    \n                    Host(1)                       Host(2)\n                      |                             |\n                      |                             |\n                      |  ACK ack=1001, window=5000  |\n                      |\u003c----------------------------|\n                      |                             |\n    \n    \n    \n                  Host(1) is\n    \n             closing the session\n    \n    \n    \n                      |        RST seq=4321         |\n                      |----------------------------\u003e|\n                      |                             |\n    \n    \n    \n                                                Host(2) is\n    \n                                            closing the session\n    \n   \nNote how, in the second example, the RST packet was able to terminate the\nsession although the sequence number was not the next expected one (which\nis 1001). \n\nAs a general rule, all protocols where a TCP connection stays established\nfor longer than one minute should be considered exposed. \n\nThe exposure on this vulnerability can be described as follows:\n   \n   \n  * Cisco IOS - All devices running Cisco IOS software are vulnerable. Sessions passing through the device are vulnerable only if\n    the originating or receiving device is vulnerable, but they cannot be\n    attacked on the router itself. This vulnerability does not compromise\n    data integrity or confidentiality. It only affects availability. \n   \n    This vulnerability is documented in the Cisco Bug Toolkit as Bug IDs \n    CSCed27956 ( registered customers only) and CSCed38527 ( registered\n    customers only) . \n   \n   \n  * Cisco IOS Firewall (IOS FW) - The Cisco IOS FW monitors packets\n    passing throughout the router and maintains the session state\n    internally. This way, it is possible to \"open\" required ports and\n    allow traffic to pass and then close them after the session has\n    finished. Since Cisco IOS FW intercepts and examines all packets\n    passing through the device, all TCP sessions passing through the\n    Cisco IOS FW are vulnerable to this attack. This is valid even if the\n    originating and receiving devices themselves are not vulnerable. \n   \n    This vulnerability is documented in the Cisco Bug Toolkit as Bug ID \n    CSCed93836 ( registered customers only) . \n   \n   \n  * Network Address Translation (NAT) - This vulnerability does not have\n    any effect on NAT. The NAT functionality simply rewrites ports and IP\n    addresses. This feature does not interprete TCP flags and therefore\n    is not vulnerable to this attack. However, the attacking packet will\n    be passed through the router and the receiving device can be\n    affected. \n   \n\nImpact\n======\nThe impact will be different for each specific protocol. While in the\nmajority of cases a TCP connection will be automatically re-established,\nin some specific protocols a second order of consequences may have a\nlarger impact than tearing down the connection itself. Both external and internal (eBGP and iBGP) sessions\nare equally vulnerable. If an adversary tears down a BGP session between\ntwo routers, then all routes which were advertised between these two\npeers will be withdrawn. This would occur immediately for the router\nwhich has been attacked and after the next update/keepalive packet is\nsent by the other router. The BGP peering session itself will be\nre-established within a minute after the attack. Depending upon the exact\nrouting configuration, withdrawal of the routes may have any of the\nfollowing consequences:\n   \n   \n  * No adverse effects at all if an appropriate static route(s) has(have)\n    been defined on both sides of the affected session. \n   \n  * The traffic will be rerouted along other paths. This may cause some\n    congestion along these paths. \n   \n  * A portion of the network will be completely isolated and unreachable. \n   \n\nIf a BGP peering session is broken a few times within a short time\ninterval, then BGP route dampening may be invoked. Dampening means that\naffected routes will be withdrawn from the Internet routing table for\nsome period of time. By default that time is 45 minutes. During that\ntime, all of the traffic whose route was advertised over the attacked BGP\nsession will either be rerouted or a portion of the network will be\nunreachable. Route dampening is not enabled by default. \n\nCisco IOS Firewall Feature Set\n- ------------------------------\nIt is possible to terminate an established TCP-based connection even if\nboth endpoints are not vulnerable to this attack. \n\nSoftware Versions and Fixes\n===========================\nEach row of the table describes a release train and the platforms or\nproducts for which it is intended. If a given release train is\nvulnerable, then the earliest possible releases that contain the fix and\nthe anticipated date of availability for each are listed in the Rebuild,\nInterim, and Maintenance columns. In some cases, no rebuild of a\nparticular release is planned; this is marked with the label \"Not\nscheduled.\" A device running any release in the given train that is\nearlier than the release in a specific column (less than the earliest\nfixed release) is known to be vulnerable, and it should be upgraded at\nleast to the indicated release or a later version (greater than the\nearliest fixed release label). \n\nWhen selecting a release, keep in mind the following definitions:\n   \n   \n  * Maintenance\n    Most heavily tested and highly recommended release of any label in a\n    given row of the table. \n   \n   \n  * Rebuild\n    Constructed from the previous maintenance or major release in the\n    same train, it contains the fix for a specific vulnerability. \n    Although it receives less testing, it contains only the minimal\n    changes necessary to effect the repair. Cisco has made available\n    several rebuilds of mainline trains to address this vulnerability,\n    but strongly recommends running only the latest maintenance release\n    on mainline trains. \n   \n   \n  * Interim\n    Built at regular intervals between maintenance releases and receives\n    less testing. Interims should be selected only if there is no other\n    suitable release that addresses the vulnerability, and interim images\n    should be upgraded to the next available maintenance release as soon\n    as possible. Interim releases are not available through\n    manufacturing, and usually they are not available for customer\n    download from CCO without prior arrangement with the Cisco Technical\n    Assistance Center (TAC). \n   \n\nIn all cases, customers should exercise caution to be certain the devices\nto be upgraded contain sufficient memory and that current hardware and\nsoftware configurations will continue to be supported properly by the new\nrelease. If the information is not clear, contact the Cisco TAC for\nassistance, as shown in the section following this table. \n\nFixed Cisco IOS Software Images for Cisco IOS Firewall\n\n+------------+---------------------------------+\n|   Major    |    Availability of Repaired     |\n|  Release   |            Releases*            |\n+------------+---------+---------+-------------+\n| Affected   | Rebuild | Interim | Maintenance |\n| 12.1-Based |         | **      |             |\n| Release    |         |         |             |\n+------------+---------+---------+-------------+\n| 12.1       | 12.1    |         |             |\n|            | (22c)   |         |             |\n+------------+---------+---------+-------------+\n| 12.1E      | 12.1    |         |             |\n|            | (19)E7  |         |             |\n|            +---------+---------+-------------+\n|            |         |         |             |\n+------------+---------+---------+-------------+\n| Affected   | Rebuild | Interim | Maintenance |\n| 12.2-Based |         | **      |             |\n| Release    |         |         |             |\n+------------+---------+---------+-------------+\n| 12.2       | 12.2    |         |             |\n|            | (21b)   |         |             |\n|            +---------+---------+-------------+\n|            | 12.2    |         |             |\n|            | (23a)   |         |             |\n+------------+---------+---------+-------------+\n| 12.2T      | 12.2    |         |             |\n|            | (11)T11 |         |             |\n|            +---------+---------+-------------+\n|            | 12.2    |         |             |\n|            | (13)T12 |         |             |\n|            +---------+---------+-------------+\n|            | 12.2    |         |             |\n|            | (15)T12 |         |             |\n+------------+---------+---------+-------------+\n| Affected   | Rebuild | Interim | Maintenance |\n| 12.3-Based |         | **      |             |\n| Release    |         |         |             |\n+------------+---------+---------+-------------+\n| 12.3       | 12.3    |         |             |\n|            | (5c)    |         |             |\n|            +---------+---------+-------------+\n|            | 12.3    |         |             |\n|            | (6a)    |         |             |\n+------------+---------+---------+-------------+\n| 12.3T      | 12.3(4) |         |             |\n|            | T4      |         |             |\n+------------+---------+---------+-------------+\n\nFixed Cisco IOS Software Releases and Migration Path\n\n+----------+-------------------------------------+\n|  Major   | Availability of Repaired Releases*  |\n| Release  |                                     |\n+----------+-------------+---------+-------------+\n| Affected | Rebuild     | Interim | Maintenance |\n| 11.1     |             | **      |             |\n| -Based   |             |         |             |\n| Release  |             |         |             |\n+----------+-------------+---------+-------------+\n| 11.1     | 11.1 Vulnerable. Migrate to 11.2    |\n+----------+-------------------------------------+\n| 11.1AA   | 11.1AA Vulnerable. Migrate to 11.2P |\n+----------+-------------------------------------+\n| 11.1CC   | 11.1CC Vulnerable. Migrate to 12.0  |\n+----------+-------------+---------+-------------+\n| Affected | Rebuild     | Interim | Maintenance |\n| 11.2     |             | **      |             |\n| -Based   |             |         |             |\n| Release  |             |         |             |\n+----------+-------------+---------+-------------+\n| 11.2     | 11.2(26f)   |         |             |\n|          | Available   |         |             |\n|          | on          |         |             |\n|          | 2004-Apr-21 |         |             |\n+----------+-------------+---------+-------------+\n| 11.2P    | 11.2(26)P6  |         |             |\n|          | Available   |         |             |\n|          | on          |         |             |\n|          | 2004-Apr-21 |         |             |\n+----------+-------------+---------+-------------+\n| 11.2SA   | 11.2(8)SA6 Vulnerable. Migrate to   |\n|          | 12.0                                |\n+----------+-------------+---------+-------------+\n| Affected | Rebuild     | Interim | Maintenance |\n| 11.3     |             | **      |             |\n| -Based   |             |         |             |\n| Release  |             |         |             |\n+----------+-------------+---------+-------------+\n| 11.3     | 11.3 Vulnerable. Migrate to 12.0    |\n|          +-------------+---------+-------------+\n|          | 11.3(11b)T4 |         |             |\n|          | Available   |         |             |\n|          | on          |         |             |\n|          | 2004-Apr-21 |         |             |\n|          +-------------+---------+-------------+\n|          | 11.3(11e)   |         |             |\n|          | Available   |         |             |\n|          | on          |         |             |\n|          | 2004-Apr-21 |         |             |\n+----------+-------------+---------+-------------+\n| Affected | Rebuild     | Interim | Maintenance |\n| 12.0     |             | **      |             |\n| -Based   |             |         |             |\n| Release  |             |         |             |\n+----------+-------------+---------+-------------+\n| 12.0     | 12.0(28)    |         |             |\n+----------+-------------+---------+-------------+\n| 12.0DA   | 12.0DA Vulnerable. Migrate to       |\n|          | 12.2DA                              |\n+----------+-------------------------------------+\n| 12.0DB   | 12.0DB Vulnerable. Migrate to       |\n|          | 12.1DB                              |\n+----------+-------------------------------------+\n| 12.0DC   | 12.0DC Vulnerable. Migrate to       |\n|          | 12.1DC                              |\n+----------+-------------+---------+-------------+\n| 12.0S    | 12.0(27)S   |         |             |\n|          +-------------+---------+-------------+\n|          | 12.0(26)S2  |         |             |\n|          +-------------+---------+-------------+\n|          | 12.0(16)S11 |         |             |\n|          +-------------+---------+-------------+\n|          | 12.0(24)S5  |         |             |\n|          +-------------+---------+-------------+\n|          | 12.0(25)S3  |         |             |\n|          +-------------+---------+-------------+\n|          | 12.0(23)S6  |         |             |\n+----------+-------------+---------+-------------+\n| 12.0SL   | 12.0SL Vulnerable. Migrate to 12.0  |\n|          | (23)S3                              |\n+----------+-------------------------------------+\n| 12.0ST   | 12.0ST Vulnerable. Migrate to 12.0  |\n|          | (26)S2                              |\n+----------+-------------------------------------+\n| 12.0SX   | 12.0(25)SX4 Not built - contact TAC |\n+----------+-------------------------------------+\n| 12.0SZ   | 12.0SZ Vulnerable. Migrate to 12.0  |\n|          | (26)S2                              |\n+----------+-------------------------------------+\n| 12.0T    | 12.0T Vulnerable. Migrate to 12.1   |\n+----------+-------------+---------+-------------+\n| 12.0W5   | 12.0(28)W5  |         |             |\n|          | (30)        |         |             |\n+----------+-------------+---------+-------------+\n| 12.0WC   | 12.0(5)WC9a |         |             |\n|          | Available   |         |             |\n|          | on          |         |             |\n|          | 2004-Apr-21 |         |             |\n+----------+-------------+---------+-------------+\n| 12.0WT   | 12.0(13)WT Vulnerable. End of       |\n|          | Engineering                         |\n+----------+-------------------------------------+\n| 12.0WX   | 12.0(4)WX Vulnerable. Migrate to    |\n|          | 12.0W5                              |\n+----------+-------------------------------------+\n| 12.0XA   | 12.0(1)XA Vulnerable. Migrate to    |\n|          | 12.1 Latest                         |\n+----------+-------------------------------------+\n| 12.0XB   | 12.0(1)XB Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.0XC   | 12.0(2)XC Vulnerable. Migrate to    |\n|          | 12.1 Latest                         |\n+----------+-------------------------------------+\n| 12.0XD   | 12.0(2)XD Vulnerable. Migrate to    |\n|          | 12.1 Latest                         |\n+----------+-------------------------------------+\n| 12.0XE   | 12.0(7)XE Vulnerable. Migrate to    |\n|          | 12.1E Latest                        |\n+----------+-------------------------------------+\n| 12.0XG   | 12.0(3)XG Vulnerable. Migrate to    |\n|          | 12.1 Latest                         |\n+----------+-------------------------------------+\n| 12.0XH   | 12.0(4)XH Vulnerable. Migrate to    |\n|          | 12.1                                |\n+----------+-------------------------------------+\n| 12.0XI   | 12.0(4)XI Vulnerable. Migrate to    |\n|          | 12.1                                |\n+----------+-------------------------------------+\n| 12.0XJ   | 12.0(4)XJ Vulnerable. Migrate to    |\n|          | 12.1 Latest                         |\n+----------+-------------------------------------+\n| 12.0XK   | 12.0(7)XK Vulnerable. Migrate to    |\n|          | 12.1T Latest                        |\n+----------+-------------------------------------+\n| 12.0XL   | 12.0(4)XL Vulnerable. Migrate to    |\n|          | 12.2 Latest                         |\n+----------+-------------------------------------+\n| 12.0XM   | 12.0(4)XM Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.0XN   | 12.0(5)XN Vulnerable. Migrate to    |\n|          | 12.1 Latest                         |\n+----------+-------------------------------------+\n| 12.0XP   | 12.0(5.1)XP Vulnerable. Migrate to  |\n|          | 12.1 Latest                         |\n+----------+-------------------------------------+\n| 12.0XQ   | 12.0(5)XQ Vulnerable. Migrate to    |\n|          | 12.1 Latest                         |\n+----------+-------------------------------------+\n| 12.0XR   | 12.0(7)XR Vulnerable. Migrate to    |\n|          | 12.2 Latest                         |\n+----------+-------------------------------------+\n| 12.0XS   | 12.0(5)XS Vulnerable. Migrate to    |\n|          | 12.1E Latest                        |\n+----------+-------------------------------------+\n| 12.0XU   | 12.0(5)XU Vulnerable. Migrate to    |\n|          | 12.0(5)WC                           |\n+----------+-------------------------------------+\n| 12.0XV   | 12.0(7)XV Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------+---------+-------------+\n| Affected | Rebuild     | Interim | Maintenance |\n| 12.1     |             | **      |             |\n| -Based   |             |         |             |\n| Release  |             |         |             |\n+----------+-------------+---------+-------------+\n| 12.1     | 12.1(20a)   |         |             |\n|          +-------------+---------+-------------+\n|          | 12.1(4c)    |         |             |\n|          +-------------+---------+-------------+\n|          | 12.1(22a)   |         |             |\n+----------+-------------+---------+-------------+\n| 12.1AA   | 12.1(10)AA Vulnerable. Migrate to   |\n|          | 12.2 Latest                         |\n+----------+-------------+---------+-------------+\n| 12.1AX   | 12.1(14)AX  |         |             |\n+----------+-------------+---------+-------------+\n| 12.1AY   | 12.1(13)AY Vulnerable. Migrate to   |\n|          | 12.1(14)EA1                         |\n+----------+-------------------------------------+\n| 12.1DA   | 12.2DA Vulnerable. Migrate to       |\n|          | 12.2DA                              |\n+----------+-------------------------------------+\n| 12.1DB   | 12.1(5)DB Vulnerable. Migrate to    |\n|          | 12.2B                               |\n+----------+-------------+---------+-------------+\n| 12.1E    | 12.1(19)E7  |         |             |\n|          +-------------+---------+-------------+\n|          | 12.1(22)E1  |         |             |\n|          +-------------+---------+-------------+\n|          | 12.1(11b)   |         |             |\n|          | E14         |         |             |\n|          +-------------+---------+-------------+\n|          | 12.1(20)E2 Not built - contact TAC  |\n|          +-------------+---------+-------------+\n|          | 12.1(19)E6  |         |             |\n|          +-------------+---------+-------------+\n|          | 12.1(13)E13 |         |             |\n|          +-------------+---------+-------------+\n|          | 12.1(8b)E18 |         |             |\n|          +-------------+---------+-------------+\n|          | 12.1(14)E10 |         |             |\n|          +-------------+---------+-------------+\n|          | 12.1(13)E14 |         |             |\n+----------+-------------+---------+-------------+\n| 12.1EA   | 12.1(20)EA1 |         |             |\n+----------+-------------+---------+-------------+\n| 12.1EB   | 12.1(20)EB  |         |             |\n+----------+-------------+---------+-------------+\n| 12.1EC   | 12.1(20)EC  |         |             |\n+----------+-------------+---------+-------------+\n| 12.1EO   | 12.1(20)EO  |         |             |\n|          +-------------+---------+-------------+\n|          | 12.1(19)EO2 |         |             |\n|          | Available   |         |             |\n|          | on          |         |             |\n|          | 2004-Apr-25 |         |             |\n+----------+-------------+---------+-------------+\n| 12.1EU   | 12.1(20)EU  |         |             |\n+----------+-------------+---------+-------------+\n| 12.1EV   | 12.1(12c)EV Vulnerable. Migrate to  |\n|          | 12.2(RLS4)S                         |\n+----------+-------------+---------+-------------+\n| 12.1EW   | 12.1(20)EW2 |         |             |\n|          | Available   |         |             |\n|          | on          |         |             |\n|          | 2004-Apr-21 |         |             |\n+----------+-------------+---------+-------------+\n| 12.1EX   | 12.1EX Vulnerable. Migrate to 12.1  |\n|          | (14)E                               |\n+----------+-------------------------------------+\n| 12.1EY   | 12.1(10)EY Vulnerable. Migrate to   |\n|          | 12.1(14)E                           |\n+----------+-------------+---------+-------------+\n| 12.1T    | 12.1(5)T17  |         |             |\n+----------+-------------+---------+-------------+\n| 12.1XA   | 12.1(1)XA Vulnerable. Migrate to    |\n|          | 12.1(5)T18                          |\n+----------+-------------------------------------+\n| 12.1XB   | 12.1(1)XB Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.1XC   | 12.1(1)XC Vulnerable. Migrate to    |\n|          | 12.2                                |\n+----------+-------------------------------------+\n| 12.1XD   | 12.1(1)XD Vulnerable. Migrate to    |\n|          | 12.2                                |\n+----------+-------------------------------------+\n| 12.1XE   | 12.1(1)XE Vulnerable. Migrate to    |\n|          | 12.1E Latest                        |\n+----------+-------------------------------------+\n| 12.1XF   | 12.1(2)XF Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.1XG   | 12.1(3)XG Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.1XH   | 12.1(2a)XH Vulnerable. Migrate to   |\n|          | 12.2                                |\n+----------+-------------------------------------+\n| 12.1XI   | 12.1(3a)XI Vulnerable. Migrate to   |\n|          | 12.2 Latest                         |\n+----------+-------------------------------------+\n| 12.1XJ   | 12.1(3)XJ Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.1XL   | 12.1(3)XL Vulnerable. Migrate to    |\n|          | 12.2T Latest                        |\n+----------+-------------------------------------+\n| 12.1XM   | 12.1(5)XM Vulnerable. Migrate to    |\n|          | 12.2T Latest                        |\n+----------+-------------------------------------+\n| 12.1XP   | 12.1(3)XP Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.1XQ   | 12.1(3)XQ Vulnerable. Migrate to    |\n|          | 12.2T Latest                        |\n+----------+-------------------------------------+\n| 12.1XR   | 12.1(5)XR Vulnerable. Migrate to    |\n|          | 12.2T Latest                        |\n+----------+-------------------------------------+\n| 12.1XT   | 12.1(3)XT Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.1XU   | 12.1(5)XU Vulnerable. Migrate to    |\n|          | 12.2T Latest                        |\n+----------+-------------------------------------+\n| 12.1XV   | 12.1(5)XV Vulnerable. Migrate to    |\n|          | 12.2XB                              |\n+----------+-------------------------------------+\n| 12.1YA   | 12.1(5)YA Vulnerable. Migrate to    |\n|          | 12.2(8)T                            |\n+----------+-------------------------------------+\n| 12.1YB   | 12.1(5)YB Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.1YC   | 12.1(5)YC Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.1YD   | 12.1(5)YD Vulnerable. Migrate to    |\n|          | 12.2(8)T                            |\n+----------+-------------------------------------+\n| 12.1YE   | 12.1(5)YE5 Vulnerable. Migrate to   |\n|          | 12.2(2)YC                           |\n+----------+-------------------------------------+\n| 12.1YF   | 12.1(5)YF2 Vulnerable. Migrate to   |\n|          | 12.2(2)YC                           |\n+----------+-------------------------------------+\n| 12.1YH   | 12.1(5)YH2 Vulnerable. Migrate to   |\n|          | 12.2(13)T                           |\n+----------+-------------------------------------+\n| 12.1YI   | 12.1(5)YI2 Vulnerable. Migrate to   |\n|          | 12.2(2)YC                           |\n+----------+-------------------------------------+\n| 12.1YJ   | 12.1(11)YJ Vulnerable. Migrate to   |\n|          | 12.1EA Latest                       |\n+----------+-------------+---------+-------------+\n| Affected | Rebuild     | Interim | Maintenance |\n| 12.2     |             | **      |             |\n| -Based   |             |         |             |\n| Release  |             |         |             |\n+----------+-------------+---------+-------------+\n| 12.2     | 12.2(19b)   |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(16f)   |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(21a)   |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(23)    |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(12i)   |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(10g)   |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(13e)   |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(17d)   |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(21b)   |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(23a)   |         |             |\n+----------+-------------+---------+-------------+\n| 12.2B    | 12.2(2)B - 12.2(4)B7 Vulnerable.    |\n|          | Migrate to 12.2(13)T12              |\n|          +-------------------------------------+\n|          | 12.2(4)B8 AND FWD Vulnerable.       |\n|          | Migrate to 12.3(5a)B1               |\n+----------+-------------+---------+-------------+\n| 12.2BC   | 12.2(15)    |         |             |\n|          | BC1C        |         |             |\n+----------+-------------+---------+-------------+\n| 12.2BW   | 12.2(4)BW Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------+---------+-------------+\n| 12.2BX   | 12.2(16)BX2 |         |             |\n+----------+-------------+---------+-------------+\n| 12.2BY   | 12.2(4)BY Vulnerable. Migrate to    |\n|          | 12.2(15)B                           |\n|          +-------------------------------------+\n|          | 12.2(8)BY Vulnerable. Migrate to    |\n|          | 12.2(8)ZB                           |\n|          +-------------------------------------+\n|          | 12.2(2)BY Vulnerable. Migrate to    |\n|          | 12.2(8)BZ                           |\n+----------+-------------------------------------+\n| 12.2BZ   | 12.2(15)BZ Vulnerable. Migrate to   |\n|          | 12.2(16)BX                          |\n+----------+-------------------------------------+\n| 12.2CX   | 12.2(11)CX Vulnerable. Migrate to   |\n|          | 12.2(15)BC                          |\n+----------+-------------------------------------+\n| 12.2CY   | 12.2(11)CY Vulnerable. Migrate to   |\n|          | 12.2(13)BC1C                        |\n+----------+-------------------------------------+\n| 12.2DD   | 12.2DD Vulnerable. Migrate to 12.2  |\n|          | (4)B1                               |\n+----------+-------------------------------------+\n| 12.2DX   | 12.2(1)DX Vulnerable. Migrate to    |\n|          | 12.2DD                              |\n|          +-------------------------------------+\n|          | 12.2(2)DX Vulnerable. Migrate to    |\n|          | 12.2B Latest                        |\n+----------+-------------+---------+-------------+\n| 12.2EW   | 12.2(18)EW  |         |             |\n+----------+-------------+---------+-------------+\n| 12.2JA   | 12.2(13)JA4 |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(13)JA2 |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(11)JA3 |         |             |\n+----------+-------------+---------+-------------+\n| 12.2MC   | 12.2(15)    |         |             |\n|          | MC1B        |         |             |\n+----------+-------------+---------+-------------+\n| 12.2S    | 12.2(22)S   |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(14)S7  |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(20)S1  |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(20)S3  |         |             |\n|          | Available   |         |             |\n|          | on          |         |             |\n|          | 2004-Apr-21 |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(18)S3  |         |             |\n+----------+-------------+---------+-------------+\n| 12.2SE   | 12.2(18)SE  |         |             |\n+----------+-------------+---------+-------------+\n| 12.2SW   | 12.2(21)SW  |         |             |\n+----------+-------------+---------+-------------+\n| 12.2SX   | 12.2(17a)   |         |             |\n|          | SX2         |         |             |\n+----------+-------------+---------+-------------+\n| 12.2SXA  | 12.2(17b)   |         |             |\n|          | SXA1        |         |             |\n+----------+-------------+---------+-------------+\n| 12.2SXB  | 12.2(17d)SXB1 Not built - contact   |\n|          | TAC                                 |\n+----------+-------------+---------+-------------+\n| 12.2SY   | 12.2(14)SY3 |         |             |\n+----------+-------------+---------+-------------+\n| 12.2SZ   | 12.2(14)SZ6 |         |             |\n+----------+-------------+---------+-------------+\n| 12.2T    | 12.2(15)T11 |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(13)T12 |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(11)T11 Not built - contact TAC |\n|          +-------------+---------+-------------+\n|          | 12.2(13)T11 |         |             |\n+----------+-------------+---------+-------------+\n| 12.2XA   | 12.2(2)XA Vulnerable. Migrate to    |\n|          | 12.2(11)T                           |\n+----------+-------------------------------------+\n| 12.2XB   | 12.2(2)XB Vulnerable. Migrate to    |\n|          | 12.2(15)T                           |\n+----------+-------------------------------------+\n| 12.2XC   | 12.2(2)XC Vulnerable. Migrate to    |\n|          | 12.2(8)ZB                           |\n+----------+-------------------------------------+\n| 12.2XD   | 12.2(1)XD Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2XE   | 12.2(1)XE Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2XF   | 12.2(1)XF1 Vulnerable. Migrate to   |\n|          | 12.2(4)BC1C                         |\n+----------+-------------------------------------+\n| 12.2XG   | 12.2(2)XG Vulnerable. Migrate to    |\n|          | 12.2(8)T                            |\n+----------+-------------------------------------+\n| 12.2XH   | 12.2(2)XH Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2XI   | 12.2(2)XI2 Vulnerable. Migrate to   |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2XJ   | 12.2(2)XJ Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2XK   | 12.2(2)XK Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2XL   | 12.2(4)XL Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2XM   | 12.2(4)XM Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2XN   | 12.2(2)XN Vulnerable. Migrate to    |\n|          | 12.2(11)T                           |\n+----------+-------------------------------------+\n| 12.2XQ   | 12.2(2)XQ Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2XS   | 12.2(1)XS Vulnerable. Migrate to    |\n|          | 12.2(11)T                           |\n+----------+-------------------------------------+\n| 12.2XT   | 12.2(2)XT Vulnerable. Migrate to    |\n|          | 12.2(11)T                           |\n+----------+-------------------------------------+\n| 12.2XU   | 12.2(2)XU Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2XW   | 12.2(4)XW Vulnerable. Migrate to    |\n|          | 12.2(13)T12                         |\n+----------+-------------------------------------+\n| 12.2YA   | 12.2(4)YA Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2YB   | 12.2(4)YB Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2YC   | 12.2(2)YC Vulnerable. Migrate to    |\n|          | 12.2(11)T11                         |\n+----------+-------------------------------------+\n| 12.2YD   | 12.2(8)YD Vulnerable. Migrate to    |\n|          | 12.2(8)YY                           |\n+----------+-------------------------------------+\n| 12.2YE   | 12.2(9)YE Vulnerable. Migrate to    |\n|          | 12.2S                               |\n+----------+-------------------------------------+\n| 12.2YF   | 12.2(4)YF Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2YG   | 12.2(4)YG Vulnerable. Migrate to    |\n|          | 12.2(13)T12                         |\n+----------+-------------------------------------+\n| 12.2YH   | 12.2(4)YH Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2YJ   | 12.2(8)YJ Vulnerable. Migrate to    |\n|          | 12.2(15)T12                         |\n+----------+-------------------------------------+\n| 12.2YK   | 12.2(2)YK Vulnerable. Migrate to    |\n|          | 12.2(13)ZC                          |\n+----------+-------------------------------------+\n| 12.2YL   | 12.2(8)YL Vulnerable. Migrate to    |\n|          | 12.3(2)T                            |\n+----------+-------------------------------------+\n| 12.2YM   | 12.2(8)YM Vulnerable. Migrate to    |\n|          | 12.3(2)T                            |\n+----------+-------------------------------------+\n| 12.2YN   | 12.2(8)YN Vulnerable. Migrate to    |\n|          | 12.3(2)T                            |\n+----------+-------------------------------------+\n| 12.2YO   | 12.2(9)YO Vulnerable. Migrate to    |\n|          | 12.2(14)SY                          |\n+----------+-------------------------------------+\n| 12.2YP   | 12.2(11)YP Vulnerable. Migrate to   |\n|          | 12.2T Latest                        |\n+----------+-------------------------------------+\n| 12.2YQ   | 12.2(11)YQ Vulnerable. Migrate to   |\n|          | 12.3(2)T                            |\n+----------+-------------------------------------+\n| 12.2YR   | 12.2(11)YR Vulnerable. Migrate to   |\n|          | 12.3(2)T                            |\n+----------+-------------------------------------+\n| 12.2YS   | 12.2(11)YS Vulnerable. Migrate to   |\n|          | 12.3T                               |\n+----------+-------------------------------------+\n| 12.2YT   | 12.2(11)YT Vulnerable. Migrate to   |\n|          | 12.2(15)T                           |\n+----------+-------------------------------------+\n| 12.2YU   | 12.2(11)YU Vulnerable. Migrate to   |\n|          | 12.3(2)T                            |\n+----------+-------------------------------------+\n| 12.2YV   | 12.2(11)YV Vulnerable. Migrate to   |\n|          | 12.3(4)T                            |\n+----------+-------------------------------------+\n| 12.2YW   | 12.2(8)YW Vulnerable. Migrate to    |\n|          | 12.3(2)T                            |\n+----------+-------------------------------------+\n| 12.2YX   | 12.2(11)YX Vulnerable. Migrate to   |\n|          | 12.2(RLS3)S                         |\n+----------+-------------------------------------+\n| 12.2YY   | 12.2(8)YY Vulnerable. Migrate to    |\n|          | 12.3(1)T                            |\n+----------+-------------------------------------+\n| 12.2YZ   | 12.2(11)YZ Vulnerable. Migrate to   |\n|          | 12.2(14)SZ                          |\n+----------+-------------+---------+-------------+\n| 12.2ZA   | 12.2(14)ZA6 |         |             |\n+----------+-------------+---------+-------------+\n| 12.2ZB   | 12.2(8)ZB Vulnerable. Migrate to    |\n|          | 12.3T                               |\n+----------+-------------------------------------+\n| 12.2ZC   | 12.2(13)ZC Vulnerable. Migrate to   |\n|          | 12.3T                               |\n+----------+-------------+---------+-------------+\n| 12.2ZD   | 12.2(13)ZD1 |         |             |\n+----------+-------------+---------+-------------+\n| 12.2ZE   | 12.2(13)ZE Vulnerable. Migrate to   |\n|          | 12.3                                |\n+----------+-------------------------------------+\n| 12.2ZF   | 12.2(13)ZF Vulnerable. Migrate to   |\n|          | 12.3(4)T                            |\n+----------+-------------------------------------+\n| 12.2ZG   | 12.2(13)ZG Vulnerable. Migrate to   |\n|          | 12.3(4)T                            |\n+----------+-------------------------------------+\n| 12.2ZH   | 12.2(13)ZH Vulnerable. Migrate to   |\n|          | 12.3(4)T                            |\n+----------+-------------------------------------+\n| 12.2ZI   | 12.2(11)ZI Vulnerable. Migrate to   |\n|          | 12.2(18)S                           |\n+----------+-------------+---------+-------------+\n| 12.2ZJ   | 12.2(15)ZJ5 |         |             |\n|          +-------------+---------+-------------+\n|          | 12.2(15)ZJ4 |         |             |\n+----------+-------------+---------+-------------+\n| 12.2ZK   | 12.2(15)ZK Vulnerable. Migrate to   |\n|          | 12.3T                               |\n+----------+-------------------------------------+\n| 12.2ZL   | 12.2(15)ZL Vulnerable. Migrate to   |\n|          | 12.3(7)T                            |\n+----------+-------------------------------------+\n| 12.2ZN   | 12.2(15)ZN Vulnerable. Migrate to   |\n|          | 12.3(2)T                            |\n+----------+-------------+---------+-------------+\n| 12.2ZP   | 12.2(13)ZP3 |         |             |\n+----------+-------------+---------+-------------+\n| Affected | Rebuild     | Interim | Maintenance |\n| 12.3     |             | **      |             |\n| -Based   |             |         |             |\n| Release  |             |         |             |\n+----------+-------------+---------+-------------+\n| 12.3     | 12.3(3e)    |         |             |\n|          +-------------+---------+-------------+\n|          | 12.3(6)     |         |             |\n|          +-------------+---------+-------------+\n|          | 12.3(5b)    |         |             |\n+----------+-------------+---------+-------------+\n| 12.3B    | 12.3(5a)B   |         |             |\n|          +-------------+---------+-------------+\n|          | 12.3(3)B1   |         |             |\n+----------+-------------+---------+-------------+\n| 12.3BW   | 12.3(1a)BW Vulnerable. Migrate to   |\n|          | 12.3B                               |\n+----------+-------------+---------+-------------+\n| 12.3T    | 12.3(2)T4   |         |             |\n|          +-------------+---------+-------------+\n|          | 12.3(7)T1 Not built - contact TAC   |\n|          +-------------+---------+-------------+\n|          | 12.3(4)T3   |         |             |\n+----------+-------------+---------+-------------+\n| 12.3XA   | 12.3(2)XA Vulnerable. Contact TAC.  |\n+----------+-------------+---------+-------------+\n| 12.3XB   | 12.3(2)XB2  |         |             |\n+----------+-------------+---------+-------------+\n| 12.3XC   | 12.3(2)XC2  |         |             |\n+----------+-------------+---------+-------------+\n| 12.3XD   | 12.3(4)XD1  |         |             |\n+----------+-------------+---------+-------------+\n| 12.3XE   | 12.3(2)XE Vulnerable. Migrate to    |\n|          | 12.3T                               |\n+----------+-------------------------------------+\n| 12.3XF   | 12.3(2)XF Vulnerable. Contact TAC   |\n|          | if needed.                          |\n+----------+-------------+---------+-------------+\n| 12.3XG   | 12.3(4)XG   |         |             |\n+----------+-------------+---------+-------------+\n| 12.3XH   | 12.3(4)XH   |         |             |\n+----------+-------------+---------+-------------+\n| 12.3XI   | 12.3(7)XI Vulnerable. Migrate to    |\n|          | 12.3T                               |\n+----------+-------------------------------------+\n| 12.3XJ   | 12.3(7)XJ Vulnerable. Contact TAC   |\n|          | if needed                           |\n+----------+-------------+---------+-------------+\n| 12.3XK   | 12.3(4)XK   |         |             |\n+----------+-------------+---------+-------------+\n| 12.3XL   | 12.3(7)XL Vulnerable. Contact Tac   |\n|          | if needed                           |\n+----------+-------------------------------------+\n| 12.3XM   | 12.3(9)XM Vulnerable. Contact TAC   |\n|          | if needed.                          |\n+----------+-------------------------------------+\n| 12.3XN   | 12.3(4)XN Vulnerable. Contact TAC   |\n|          | if needed.                          |\n+----------+-------------------------------------+\n| 12.3XQ   | 12.3(4)XQ Vulnerable. Contact TAC   |\n|          | if needed.                          |\n+----------+-------------------------------------+\n| * All dates are estimated and subject to       |\n| change.                                        |\n|                                                |\n| ** Interim releases are subjected to less      |\n| rigorous testing than regular maintenance      |\n| releases, and may have serious bugs.           |\n+------------------------------------------------+\n\nObtaining Fixed Software\n========================\nCustomers with Service Contracts\n\nCustomers with contracts should obtain upgraded software through their\nregular update channels. For most customers, this means that upgrades\nshould be obtained through the Software Center on Cisco\u0027s worldwide\nwebsite at http://www.cisco.com. \n\nCustomers using Third-party Support Organizations\n\nCustomers whose Cisco products are provided or maintained through prior\nor existing agreement with third-party support organizations such as\nCisco Partners, authorized resellers, or service providers should contact\nthat support organization for assistance with the upgrade, which should\nbe free of charge. \n\nCustomers without Service Contracts\n\nCustomers who purchase direct from Cisco but who do not hold a Cisco\nservice contract and customers who purchase through third-party vendors\nbut are unsuccessful at obtaining fixed software through their point of\nsale should get their upgrades by contacting the Cisco Technical\nAssistance Center (TAC). TAC contacts are as follows. \n   \n   \n  * +1 800 553 2447 (toll free from within North America)\n   \n  * +1 408 526 7209 (toll call from anywhere in the world)\n   \n  * e-mail: tac@cisco.com\n   \n\nSee http://www.cisco.com/warp/public/687/Directory/DirTAC.shtml for\nadditional TAC contact information, including special localized telephone\nnumbers and instructions and e-mail addresses for use in various\nlanguages. \n\nPlease have your product serial number available and give the URL of this\nnotice as evidence of your entitlement to a free upgrade. Free upgrades\nfor non-contract customers must be requested through the TAC. \n\nPlease do not contact either \"psirt@cisco.com\" or\n\"security-alert@cisco.com\" for software upgrades. \n\nWorkarounds\n===========\nThe effectiveness of any workaround is dependent on specific customer\nsituations such as product mix, network topology, traffic behavior, and\norganizational mission. Due to the variety of affected products and\nreleases, customers should consult with their service provider or support\norganization to ensure any applied workaround is the most appropriate for\nuse in the intended network before it is deployed. \n\nThere are no workarounds available to mitigate the effects of this\nvulnerability on Cisco IOS Firewall. \n\nFor BGP, we will present the workaround and only a few mitigation\ntechniques. For additional information regarding BGP security risk\nassessment, mitigation techniques, and deployment best practices, please\nconsult ftp://ftp-eng.cisco.com/cons/isp/security/\nBGP-Risk-Assesment-v.pdf. \n   \n   \n  * BGP MD5 secret\n   \n    The workaround for BGP is to configure MD5 secret for each session\n    between peers. This can be configured as shown in the following\n    example:\n      router(config)#router bgp \u003cAS-_number\u003e\n      router(config-router)#neighbor \u003cIP_address\u003e password \u003center_your_secret_here\u003e\n       \n    It is necessary to configure the same shared MD5 secret on both peers\n    and at the same time. Failure to do so will break the existing BGP\n    session and the new session will not get established until the exact\n    same secret is configured on both devices. For a detailed discussion\n    on how to configure BGP, refer to the following document \n    http://www.cisco.com/en/US/products/sw/iosswrel/ps1828/\n    products_configuration_guide_chapter09186a00800ca571.html . Once the\n    secret is configured, it is prudent to change it periodically. The\n    exact period must fit within your company security policy but it\n    should not be longer than a few months. When changing the secret,\n    again it must be done at the same time on both devices. Failure to do\n    so will break your existing BGP session. The exception is if your\n    Cisco IOS software release contains the integrated CSCdx23494 ( \n    registered customers only) fix. With this fix, the BGP session will\n    not be terminated when the MD5 secret is changed only on one side. \n    The BGP updates, however, will not be processed until either the same\n    secret is configured on both devices or the secret is removed from\n    both devices. \n   \n\nIt is possible to mitigate the exposure for BGP on this vulnerability by\napplying one or more of the following measures which will lessen the\npotential for the necessary spoofing required to implement a successful\nattack:\n   \n   \n  * Blocking access to the core infrastructure\n   \n    Although it is often difficult to block traffic transiting your\n    network, it is possible to identify traffic which should never be\n    allowed to target your infrastructure devices and block that traffic\n    at the border of your network. Infrastructure access control lists\n    (ACLs) are considered a network security best practice and should be\n    considered as a long-term addition to good network security as well\n    as a workaround for this specific vulnerability. The white paper\n    entitled \"Protecting Your Core: Infrastructure Protection Access\n    Control Lists\", available at http://www.cisco.com/warp/public/707/\n    iacl.html, presents guidelines and recommended deployment techniques\n    for infrastructure protection ACLs. Exceptions would include any\n    devices which have a legitimate reason to access your infrastructure\n    (for example, BGP peers, NTP sources, DNS serves, and so on). All\n    other traffic must be able to traverse your network without\n    terminating on any of your devices. \n   \n   \n  * Configure anti-spoofing measures on the network edge\n    In order for an adversary to use the attack vector described in this\n    advisory, it must send packets with the source IP address equal to\n    one of the BGP peers. You can block spoofed packets either using the\n    Unicast Reverse Path Forwarding (uRPF) feature or by using access\n    control lists (ACLs). \n    By enabling uRPF, all spoofed packets will be dropped at the first\n    device. To enable uRPF, use the following commands:\n        router(config)#ip cef \n        \n        router(config)#ip verify unicast reverse-path\n       \n    Please consult http://www.cisco.com/en/US/products/sw/iosswrel/ps1835\n    /products_configuration_guide_chapter09186a00800ca7d4.html and ftp://\n    ftp-eng.cisco.com/cons/isp/security/URPF-ISP.pdf for further details\n    on how uRPF works and how to configure it in various scenarios. This\n    is especially important if you are using asymmetric routing. \n    ACLs should also be deployed as close to the edge as possible. Unlike\n    uRPF, you must specify the exact IP range that is permitted. \n    Specifying which addresses should be blocked is not the optimal\n    solution because it tends to be harder to maintain. \n   \n    Caution: In order for anti-spoofing measures to be effective,\n    they must be deployed at least one hop away from the devices which\n    are being protected. Ideally, they will be deployed at the network\n    edge facing your customers. \n   \n  * Packet rate limiting RST packets are rate-limited in Cisco IOS\n    software by default. This feature is introduced in Cisco IOS Software\n    Release 10.2. In the case of a storm of RST packets, they are\n    effectively limited to one packet per second. In order to be\n    successful, an attacker must terminate connection with the first few\n    packets. Otherwise, the attack is deemed to be impracticably long. On\n    the other hand, SYN packets are not rate-limited in any way. \n    Rate limiting can be accomplished either by using Committed Access\n    Rate (CAR) or by Control Plane Policing (CPP). While CPP is the\n    recommended approach, it is available only for Cisco IOS Software\n    Releases 12.2(18)S and 12.3(4)T. It is currently supported only on\n    the following routers: 1751, 2600/2600-XM, 3700, 7200, and 7500\n    Series. \n\n    CAR can be configured as follows:\n\n        router(config)#access-list 103 deny tcp any host 10.1.1.1 established\n        \n        router(config)#access-list 103 permit tcp any host 10.0.0.1\n        \n        router(config)#interface \u003cinterface\u003e \u003cinterface #\u003e\n        \n        router(config-if)#rate-limit input access-group 103 8000 8000 8000 \n            conform-action transmit exceed-action drop\n       \n    For details on how to configure and deploy CPP, please consult the\n    following document http://www.cisco.com/en/US/products/sw/iosswrel/\n    ps1838/products_white_paper09186a0080211f39.shtml\n   \n\nExploitation and Public Announcements\n=====================================\nThe Cisco PSIRT is not aware of any public announcements or malicious use\nof the vulnerability described in this advisory. \n\nThe exploitation of the vulnerability with packets having RST flag set\n(reset packets) was discovered by Paul (Tony) Watson of OSVDB.org. The\nextension of the attack vector to packets with SYN flag was discovered by\nthe vendors cooperating on the resolution of this issue. \n\nStatus of This Notice: INTERIM\n==============================\nThis is a INTERIM advisory. Although Cisco cannot guarantee the accuracy of\nall statements in this advisory, all of the facts have been checked to\nthe best of our ability. Cisco does not anticipate issuing updated\nversions of this advisory unless there is some material change in the\nfacts. Should there be a significant change in the facts, Cisco may\nupdate this advisory. \n\nA stand-alone copy or Paraphrase of the text of this Security Advisory\nthat omits the distribution URL in the following section is an\nuncontrolled copy, and may lack important information or contain factual\nerrors. \n\nDistribution\n============\nThis advisory will be posted on Cisco\u0027s worldwide website at \nhttp://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-ios.shtml. \n\nIn addition to worldwide web posting, a text version of this notice is\nclear-signed with the Cisco PSIRT PGP key and is posted to the following\ne-mail and Usenet news recipients. \n   \n   \n  * cust-security-announce@cisco.com\n   \n  * first-teams@first.org (includes CERT/CC)\n \n  * bugtraq@securityfocus.com\n  \n  * vulnwatch@wulnwatch.org\n   \n  * cisco@spot.colorado.edu\n   \n  * cisco-nsp@puck.nether.net\n   \n  * full-disclosure@lists.netsys.com\n  \n  * comp.dcom.sys.cisco@newsgate.cisco.com\n   \n\nFuture updates of this advisory, if any, will be placed on Cisco\u0027s\nworldwide website, but may or may not be actively announced on mailing\nlists or newsgroups. Users concerned about this problem are encouraged to\ncheck the above URL for any updates. \n\nRevision History\n================\n+----------+-------------+----------------+\n| Revision | 2004-Apr-20 | Initial public |\n| 1.0      |             | release.       |\n+----------+-------------+----------------+\n\nCisco Security Procedures\n=========================\nComplete information on reporting security vulnerabilities in Cisco\nproducts, obtaining assistance with security incidents, and registering\nto receive security information from Cisco, is available on Cisco\u0027s\nworldwide website at http://www.cisco.com/warp/public/707/\nsec_incident_response.shtml. This includes instructions for press\ninquiries regarding Cisco Security Notices. All Cisco Security Advisories\nare available at http://www.cisco.com/go/psirt. \n\n- -------------------------------------------------------------------------\n\nAll contents are Copyright \\xa9 1992-2004 Cisco Systems, Inc. All rights\nreserved. Important Notices and Privacy Statement. \n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1.2.3 (Cygwin)\n\niD8DBQFAhZTpezGozzK2tZARAkKXAJ9BWwuytT7zwoOL+RkZJPebYN3W3ACfV/+K\n0Fd3MvvRlKSETCrlMGL/dZg=\n=eDSn\n-----END PGP SIGNATURE-----\n. \n\nThe nonexhaustive list of vulnerable non-IOS based Cisco products is as\nfollows:\n   \n  * Access Registrar\n\n  * BPX, IGX, MGX WAN switches, and the Service Expansion Shelf\n\n  * BR340, WGB340, AP340, AP350, BR350 Cisco/Aironet wireless products\n\n  * Cache Engine 505 and 570\n\n  * CallManager\n\n  * Catalyst 1200, 1900, 28xx, 29xx, 3000, 3900, 4000, 5000, 6000\n\n  * Cisco 8110 Broadband Network Termination Unit\n\n  * Cisco Element Management Framework\n\n  * Cisco Info Center\n\n  * Cisco Intelligent Contact Management\n\n  * Cisco MDS 9000\n\n  * Cisco ONS 15190/15194 IP Transport Concentrator\n\n  * Cisco ONS 15327 Metro Edge Optical Transport Platform\n\n  * Cisco ONS 15454 Optical Transport Platform\n\n  * Cisco ONS 15531/15532 T31 OMDS Metro WDM System\n\n  * Cisco ONS 15800/15801/15808 Dense Wave Division Multiplexing Platform\n\n  * Cisco ONS 15830 T30 Optical Amplification System\n\n  * Cisco ONS 15831/15832 T31 DWDM System\n\n  * Cisco ONS 15863 T31 Submarine WDM System\n\n  * Content Router 4430 and Content Delivery Manager 4630 and 4650\n\n  * Cisco Secure Intrusion Detection System (NetRanger) appliance and IDS\n    Module\n\n  * Cisco Secure PIX firewall\n\n  * Cisco ws-x6608 and ws-x6624 IP Telephony Modules\n\n  * CiscoWorks Windows\n\n  * Content Engine 507, 560, 590, and 7320\n\n  * CSS11000 (Arrowpoint) Content Services Switch\n\n  * Hosting Solution Engine\n\n  * User Registration Tool VLAN Policy Server\n\n  * Cisco FastHub 300 and 400\n\n  * CR-4430-B\n\n  * Device Fault Manager\n\n  * Internet CDN Content Engine 590 and 7320, Content Distribution\n    Manager 4670, and Content Router 4450\n\n  * IP Phone (all models including ATA and VG248)\n\n  * IP/TV\n\n  * LightStream 1010\n\n  * LightStream 100 ATM Switches\n\n  * LocalDirector\n\n  * ME1100 series\n\n  * MicroHub 1500,MicroSwitch 1538/1548\n\n  * Voice Manager\n\n  * RTM\n\n  * SN5400 series storage routers\n\n  * Switch Probe\n\n  * Unity Server\n\n  * VG248 Analog Phone Gateway\n\n  * Traffic Director\n\n  * WAN Manager   \n   \n\nProducts Confirmed Not Vulnerable\n=================================\nThe following products are not vulnerable:\n   \n   \n  * Cisco VPN 3000 Series Concentrators\n   \n  * Cisco Firewall Services Module for Cisco Catalyst 6500 Series and\n    Cisco 7600 Series (FWSM)\n   \n\nDetails\n======\nTCP is the transport layer protocol designed to provide\nconnection-oriented reliable delivery of a data stream. The Cisco PSIRT\nhas analyzed multiple TCP-based protocols, as they are used within our\noffering, and we believe that this vulnerability does not have a\nsignificant impact on them. We will present our analysis for a few\nprotocols which have the potential for higher impact due to the long\nlived connections. \n\nVoice signaling H.225, H.245 (part of H.323 suite)\n- --------------------------------------------------\nH.225 and H.245 protocols are used in voice signaling. Their purpose is\nto negotiate parameters for content transfer (voice or video). The\nestablished sessions persist for the duration of a call. Any call in\nprogress is terminated when the signaling session is broken. A new\nsignaling session will be established immediately for the new call, but\nterminated calls cannot be re-established. \n\nEach call from an IP telephone or softphone will result in the creation\nof a single signaling session. It is possible that a single signaling session is\nresponsible for multiple calls, but that setup is used deeper within the\nService Provider\u0027s network. Determining all necessary parameters for\nmounting an attack is deemed a non-trivial task if the network is\ndesigned according to the current best practices. \n\nNetwork Storage (iSCSI, FCIP)\n- -----------------------------\nNetwork Storage products use two TCP-based protocols: SCSI over IP\n(iSCSI) and Fiber Channel over IP (FCIP). \n   \n   \n  * SCSI over IP (iSCSI)\n   \n    iSCSI is used in a client/server environment. The client is your\n    computer and it is only the client that initiates a connection. This\n    connection is not shared with any other users. Terminating the session\n    will not have any adverse consequences if people are using current\n    drivers from Microsoft for Windows and from Cisco for Linux. These\n    drivers will re-establish the session and continue transfer from the\n    point where it was disconnected. Drivers from other vendors may\n    behave differently. \n   \n    The user may notice that access to a virtual device is slightly\n    slower than usual. \n   \n   \n  * Fiber Channel over IP (FCIP)\n   \n    FCIP is a peer-to-peer protocol. It is used for mirroring data\n    between switches. Each peer can initiate the session. Switches can,\n    and should be in practice, configured in a mesh. Bringing one link\n    down will cause traffic to be re-routed over other link(s). If an\n    adversary can manage to terminate the session multiple times in a\n    row, the user\u0027s application may terminate with a \"Device unreachable\"\n    or similar error message. This does not have any influence on the\n    switch itself and the user can retry the operation. \n   \n    The user may notice that access to a virtual device is slightly\n    slower than usual. An occasional error message is possible. SSL/TLS connections can be used to encapsulate\nvarious kinds of traffic and these sessions can be long lived. An\nencrypted session can be attacked either on the originating or\nterminating host or on the firewalls in front of them (if they exist).         |\n|                |            | Customers    |\n|                |            | are          |\n|                |            | encouraged   |\n|                |            | to migrate   |\n|                |            | to IOS. \u003chtml\u003e\n\n\u003chead\u003e\n\u003cmeta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1252\"\u003e\n\n\u003ctitle\u003eNISCC Vulnerability Advisory 236929\u003c/title\u003e\n\u003cstyle\u003e\n\u003c!--\nbody         { font-family: Verdana }\n--\u003e\n\u003c/style\u003e\n\u003c/head\u003e\n\n\u003cbody bgcolor=\"#FFFFCC\"\u003e\n\u003cdiv class=Section1 style=\"width: 100%;\"\u003e \n\u003cdiv align=\"center\"\u003e\u003cimg src=\"http://www.niscc.gov.uk/images/newtitle.gif\" width=\"766\" height=\"80\" alt=\"National Infrastructure Security Co-Ordination Centre\"\u003e\u003c/div\u003e\n\u003cbr\u003e\n\u003cfont size=\"4\"\u003e\u003cb\u003e\u003cfont color=\"#FF0000\"\u003eNISCC Vulnerability Advisory 236929\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\n\u003cbr\u003e\n\u003cb\u003eVulnerability Issues in TCP\u003c/b\u003e\u003c/font\u003e\u003cbr\u003e\n\u003cbr\u003e\n\u003cbr\u003e\n\n\u003cb\u003e\u003cfont size=\"3\"\u003eVersion\u003c/font\u003e Information\u003c/b\u003e\n\u003cbr\u003e\u003cbr\u003e\n\u003ctable border=\"1\" width=\"61%\"\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"58%\"\u003eAdvisory Reference\u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e236929\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"58%\"\u003eRelease Date\u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e20 April 2004\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"58%\"\u003eLast Revision\u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e22 April 2004\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"58%\"\u003eVersion Number\u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e1.4\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\u0026nbsp;\u003cbr\u003e\u003cbr\u003e\n\u003cb\u003eWhat is Affected?\u003c/b\u003e\u003cbr\u003e\n\u003cbr\u003e\nThe vulnerability described in this advisory affects implementations of the \nTransmission Control Protocol (TCP) that comply with the Internet Engineering \nTask Force\\x92s (IETF\\x92s) Requests For Comments (RFCs) for TCP, including \n\u003ca href=\"http://www.ietf.org/rfc/rfc0793.txt\"\u003eRFC 793\u003c/a\u003e, the \noriginal specification, and \u003ca href=\"http://www.ietf.org/rfc/rfc1323.txt\"\u003eRFC 1323\u003c/a\u003e, TCP Extensions for High Performance.\u003cbr\u003e\n\u003cbr\u003e\nTCP is a \ncore network protocol used in the majority of networked computer systems today. \nMany vendors include support for this protocol in their products and may be \nimpacted to varying degrees. \n\u003cbr\u003e\n\u003cbr\u003e\n\u003cbr\u003e\n\u003cb\u003eSeverity\u003c/b\u003e\u003cbr\u003e\n\u003cbr\u003e\nThe impact of this vulnerability varies by vendor and application, but in some \ndeployment scenarios it is rated critical. Alternatively contact your vendor for product specific \ninformation.\u003cbr\u003e\n\u003cbr\u003e\nIf exploited, the vulnerability could allow an attacker to create a \nDenial of Service condition against existing TCP connections, resulting in \npremature session termination. The resulting session termination will affect the \napplication layer, the nature and severity of the effects being dependent on the \napplication layer protocol. The primary dependency is on the duration of the TCP \nconnection, with a further dependency on knowledge of the network (IP) addresses \nof the end points of the TCP connection.\u003cbr\u003e\n\u003cbr\u003e\nThe Border Gateway Protocol (BGP) is judged to be potentially most affected \nby this vulnerability.\u003cbr\u003e\n\u003cbr\u003e\nBGP relies on a persistent TCP session between BGP peers. Resetting the \nconnection can result in medium term unavailability due to the need to rebuild \nrouting tables and route flapping.\u0026nbsp; Route flapping may result in route dampening \n(suppression) if the route flaps occur frequently within a short time interval.\u0026nbsp; The overall impact on BGP is likely to be moderate based on \nthe likelihood of successful attack. If the TCP MD5 Signature Option and \nanti-spoofing measures are used \nthen the impact will be low as these measures will successfully mitigate the \nvulnerability.\u003cbr\u003e\n\u003cbr\u003e\nThere is a potential impact on other application protocols such as DNS (Domain \nName System) and SSL (Secure Sockets Layer) in the case of zone transfers and \necommerce transactions respectively, but the duration of the sessions is \nrelatively short and the sessions can be restarted without medium term \nunavailability problems. In the case of SSL it may be difficult to guess the \nsource IP address.\u003cbr\u003e\n\u003cbr\u003e\nData injection may be possible. However, this has not been demonstrated and \nappears to be problematic. The reason \nfor this is that the receiving TCP implementation checks the sequence number of \nthe RST or SYN packet, which is a 32 bit number, giving a probability of 1/2\u003csup\u003e\u003cfont size=\"2\"\u003e32\u003c/font\u003e\u003c/sup\u003e of \nguessing the sequence number correctly (assuming a random distribution).\u003cbr\u003e\n\u003cbr\u003e\nThe discoverer of the practicability of the RST attack was Paul A. Watson, who \ndescribes his research in his paper \\x93Slipping In The Window: TCP Reset Attacks\\x94, \npresented at the CanSecWest 2004 conference. In a RST/ACK packet an acknowledgement number is included \nin the packet, although it is not checked by the receiving TCP implementation.)\u003cbr\u003e\n\u003cbr\u003e\n\u003ca href=\"http://www.ietf.org/rfc/rfc0793.txt\"\u003eRFC 793\u003c/a\u003e, p36, states the following:\u003cbr\u003e\n\u003cbr\u003e\n\u0026quot;In all states except SYN-SENT, all reset (RST) segments are validated by \nchecking their SEQ-fields [sequence numbers]. In the SYN-SENT state (a RST received in response to an \ninitial SYN), the RST is acceptable if the ACK field acknowledges the SYN.\u0026quot;\u003cbr\u003e\n\u003cbr\u003e\nResets must be processed immediately. \n\u003ca href=\"http://www.ietf.org/rfc/rfc0793.txt\"\u003eRFC 793\u003c/a\u003e, p25, says \u0026quot;[\\x85] [E]ven when the \nreceive window is zero, a TCP must process the RST and URG fields of all \nincoming segments.\u0026quot;\u003cbr\u003e\n\u003cbr\u003e\nIt is also possible to perform the same attack with SYN (synchronise) packets. \n\u003ca href=\"http://www.ietf.org/rfc/rfc0793.txt\"\u003eRFC 793\u003c/a\u003e, p31 \nstates:\u003cbr\u003e\n\u003cbr\u003e\n\\x93The principle reason for the three-way handshake is to prevent old duplicate \nconnection initiations from causing confusion. To deal with this, a special \ncontrol message, reset, has been devised. [\\x85] If the TCP is in one of the \nsynchronized states (ESTABLISHED, FIN-WAIT-1, FIN-WAIT-2, CLOSE-WAIT, CLOSING, \nLAST-ACK, TIME-WAIT), it aborts the connection and informs its user.\\x94\u003cbr\u003e\n\u003cbr\u003e\nTCP window sizes are negotiated in the initial 3-way handshake used to set up a \nTCP connection, with higher values serving to improve throughput in some \ncircumstances. Vendor-chosen defaults also influence the selection. An attacker seeking to disrupt an \nexisting TCP connection must supply the 4-tuple correctly. As the source port \nvaries, additional work is generally called for on the part of the attacker. \nHowever, research (referenced below) has shown that the process of source port \nselection on many platforms includes predictable elements, so that the attack \nremains practicable. By weighting \u0027likely\u0027 source port values carefully, an \nattacker can disrupt TCP implementations that employ a range of window sizes.\u003cbr\u003e\n\u003cbr\u003e\nApplication layer protocols that are critically affected are those that:\u003cbr\u003e\n\u003cbr\u003e\n\u003ctable border=\"0\" cellpadding=\"4\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"100%\" id=\"AutoNumber6\"\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" align=\"left\" valign=\"top\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"96%\"\u003eDepend on long lived TCP connections\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" align=\"left\" valign=\"top\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"96%\"\u003eHave known or easy-to-guess IP address end points\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" align=\"left\" valign=\"top\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"96%\"\u003eHave easy to an easy-to-guess source TCP port\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\u003cp\u003eAs noted above BGP does use long lived TCP connections, and the IP addresses and \nsource port (and destination port) are sometimes available through the use of \nBGP looking glasses (multi-source, multi-destination trace route tools) or DNS \nresource records. Using \\x93trace route\\x94 commands can provide information on \npeering point IP addresses. Thus BGP is likely to be critically affected by the \nTCP vulnerability.\u003cbr\u003e\n\u003cbr\u003e\nThese denial of service attacks can be carried out by single machine, or by \nmultiple co-operating systems (to form a distributed denial of service attack).\u003cbr\u003e\n\u003cbr\u003e\nIt is also possible to inject packets, which will be processed if they are in \nthe window. The difficulty with data injection attacks is that the receiving TCP \nimplementation will reassemble the packets received according to sequence \nnumber, dropping any duplicate packets.\u003cbr\u003e\n\u003cbr\u003e\n\u003cbr\u003e\nVendor specific information will be released as it becomes available and if vendor permission has been received.  Subscribers are advised to check the following URL regularly for updates:\u003cbr\u003e\n\u003cbr\u003e\n\u003ca href=\"http://www.uniras.gov.uk/vuls/2004/236929/index.htm\"\u003ehttp://www.uniras.gov.uk/vuls/2004/236929/index.htm\u003c/a\u003e\u003cbr\u003e\n\u003cbr\u003e\n\u003ci\u003e[Please note that updates to this advisory will not be notified by email.]\u003c/i\u003e\u003cbr\u003e\n\u003cbr\u003e\nThis vulnerability has been assigned the \u003ca href=\"http://cve.mitre.org/cve\"\u003eCVE\u003c/a\u003e \nname \n\u003ca href=\"http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0230\"\u003eCAN-2004-0230\u003c/a\u003e.\u003cbr\u003e\n\u003cbr\u003e\nThe \u003ca href=\"http://www.osvdb.org\"\u003eOpen Source Vulnerability Database\u003c/a\u003e ID \nnumber for this vulnerability is\n\u003ca href=\"http://www.osvdb.org/displayvuln.php?osvdb_id=4030\"\u003e4030\u003c/a\u003e.\u003cbr\u003e\n\u003cbr\u003e\n\u003cbr\u003e\n\u003cb\u003eMitigation\u003c/b\u003e\u003cbr\u003e\n\u003cbr\u003e\nThe following mitigation steps are still being evaluated and may be incomplete. \nCustomers should work with vendors for the workaround most appropriate for the \nproduct in question.\u003cbr\u003e\n\u003cbr\u003e\nIn the absence of vendor patching of the TCP implementation, the following are \ngeneral mitigating steps:\u003cbr\u003e\n\u003cbr\u003e\n\u003ctable border=\"0\" cellpadding=\"4\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"100%\" id=\"AutoNumber4\"\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" align=\"left\" valign=\"top\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"97%\"\u003eImplement IP Security (IPSEC) which will encrypt traffic at the network layer, \nso TCP information will not be visible\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" align=\"left\" valign=\"top\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"97%\"\u003eReduce the TCP window size (although this could increase \n    traffic loss and subsequent retransmission)\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" align=\"left\" valign=\"top\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"97%\"\u003eDo not publish TCP source port information\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\u003cp\u003eIt should be noted that IPSEC provides confidentiality and authentication \nservices at the network layer, and can provide a measure of trust in the \nauthenticity of the end points as well as encryption of traffic between the end \npoints.\u0026nbsp; However, in the context of the current attack IPSEC will reject \nRST and SYN packets that are not part of a secure IP packet stream.\u003cbr\u003e\n\u003cbr\u003e\nTo change the TCP window size, in some Unix variants you can set a value of the \ndefault TCP windows size by using the \\x93sysctl\\x94 program (\\x93ndd -set\\x94 in the case \nof Sun Solaris). In the case of Microsoft Windows NT/2000/XP/2003, the default \nwindow size can be changed by modifying the value of the HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters \nkey. As noted above, great care should be exercised when altering the default \nTCP window size as network performance could be adversely affected.\u003cbr\u003e\n\u003cbr\u003e\nIn the case of BGP, the following may counter the problem:\u003cbr\u003e\n\u003cbr\u003e\n\u003ctable border=\"0\" cellpadding=\"4\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"100%\" id=\"AutoNumber5\"\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" align=\"left\" valign=\"top\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"96%\"\u003eImplement ingress and egress filtering to check that the \n    traffic entering or leaving the network has a source IP address that is \n    expected on the router/firewall interface that receives the traffic\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" align=\"left\" valign=\"top\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"96%\"\u003eImplement the TCP MD5 Signature Option to checksum the TCP \n    packet carrying the BGP application data (see \u003ca href=\"http://www.ietf.org/rfc/rfc2385.txt\"\u003eRFC 2385\u003c/a\u003e), \nbeing careful to set and maintain strong (i.e. difficult to guess) passwords to \nwhich the MD5 checksum is applied.\u0026nbsp; Also see\n    \u003ca href=\"http://www.ietf.org/rfc/rfc3562.txt\"\u003eRFC 3562\u003c/a\u003e which discusses \n    the security requirements of this keying material.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" align=\"left\" valign=\"top\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"96%\"\u003eLimit the amount of information available through looking \n    glasses and DNS resource records, being careful not to expose TCP port \n    information unnecessarily\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\u003cp\u003e\nThe IETF ingress filtering standard is defined in \n\u003ca href=\"http://www.ietf.org/rfc/rfc2827.txt\"\u003eRFC 2827\u003c/a\u003e. \nA discussion of egress filtering can be found at \n\u003ca href=\"http://www.sans.org/y2k/egress.htm\"\u003ehttp://www.sans.org/y2k/egress.htm\u003c/a\u003e.\u003cbr\u003e\n\u003cbr\u003e\nThe use of the TCP MD5 Signature Option will prevent the exploitation of this \nvulnerability. Router customers should implement this on all BGP peering points \nif it is supported by the router, upgrading the router firmware if necessary.\u003cbr\u003e\n\u003cbr\u003e\n\u003cbr\u003e\n\u003cb\u003eSolution\u003c/b\u003e\u003cbr\u003e\n\u003cbr\u003e\nPlease refer to the Vendor Information section of this advisory for \nimplementation specific remediation.\u003cbr\u003e\n\u003cbr\u003e\nSome vendors will have reduced the \nlikelihood of successful denial of service by amending the TCP implementation to \nissue a further acknowledgment packet challenge for RST and SYN packets that do \nnot have exactly the expected sequence number.\u003cbr\u003e\n\u003cbr\u003e\n\u003ca href=\"http://www.ietf.org\"\u003eThe Internet Engineering Task Force\u003c/a\u003e (IETF) has \npublished an Internet Draft to co-incide \nwith the release of this advisory.\u0026nbsp;\nThe text of this draft is available from \nthe IETF web site:\u003cbr\u003e\n\u003ca href=\"http://www.ietf.org/internet-drafts/draft-ietf-tcpm-tcpsecure-00.txt\"\u003ehttp://www.ietf.org/internet-drafts/draft-ietf-tcpm-tcpsecure-00.txt\u003c/a\u003e\u003cbr\u003e\n\u003cbr\u003e\nNISCC has produced best practice guidelines for BGP available at\u003cbr\u003e\n\u003ca href=\"http://www.niscc.gov.uk/BGP%20Filtering%20Guide.pdf\"\u003ehttp://www.niscc.gov.uk/BGP Filtering Guide.pdf\u003c/a\u003e\u003cbr\u003e\n\u003cbr\u003e\nSecure configuration templates for BGP implementations on Cisco IOS and Juniper JUNOS can be found at:\u003cbr\u003e\n\u003cbr\u003e\n\u003ctable border=\"0\" cellpadding=\"4\" cellspacing=\"1\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"100%\" id=\"AutoNumber2\"\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"11%\"\u003eCisco\n    \u003c/td\u003e\n    \u003ctd width=\"99%\"\u003e\u003ca href=\"http://www.cymru.com/Documents/secure-bgp-template.html\"\u003ehttp://www.cymru.com/Documents/secure-bgp-template.html\n\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"11%\"\u003eJuniper \u003c/td\u003e\n    \u003ctd width=\"99%\"\u003e\n\u003ca href=\"http://www.qorbit.net/documents/junos-bgp-template.pdf\"\u003ehttp://www.qorbit.net/documents/junos-bgp-template.pdf\n\u003c/a\u003e\n    \u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\u003cp\u003e\nGuidance on tuning of the IP stack for a number of different UNIX operating systems is available at \n\u003ca href=\"http://www.cymru.com/Documents/ip-stack-tuning.html\"\u003ehttp://www.cymru.com/Documents/ip-stack-tuning.html\n\u003c/a\u003e\n\u003cbr\u003e\n\u003cbr\u003e\n\u003cbr\u003e\n\n\u003cB\u003eVendor Information\u003c/B\u003e\n\u003cbr\u003e\n\u003cbr\u003e\nThe following vendors have provided information about how their products are affected\nby these vulnerabilities.\u003cbr\u003e\n\u003cbr\u003e\n\u003ci\u003e\u003cfont size=\"2\"\u003ePlease note that \u003ca href=\"http://www.jpcert.or.jp\"\u003eJPCERT/CC\u003c/a\u003e have released a Japanese language advisory for this vulnerability\n which contains additional information regarding Japanese vendors.  This advisory is available at\n \u003ca href=\"http://www.jpcert.or.jp/at/2004/at040003.txt\"\u003ehttp://www.jpcert.or.jp/at/2004/at040003.txt\u003c/a\u003e.\u003c/font\u003e\u003c/i\u003e\u003cbr\u003e\n\u003cbr\u003e\n\u003c/p\u003e\n\u003c/p\u003e\n\u003c/p\u003e\n\u003ctable border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"100%\" id=\"AutoNumber1\"\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"33%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#certicom\"\u003eCerticom\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"33%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#iij\"\u003eInternet Initiative Japan, Inc\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"34%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#nec\"\u003eNEC\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"33%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#checkpoint\"\u003eCheck Point\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"33%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#interniche\"\u003eInterNiche\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"34%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#nortel\"\u003eNortel\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"33%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#cisco\"\u003eCisco\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"33%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#juniper\"\u003eJuniper Networks\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"34%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#polycom\"\u003ePolycom\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"33%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#cray\"\u003eCray Inc\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"33%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#lucent\"\u003eLucent Technologies\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"34%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#seccomp\"\u003eSecure Computing Corporation\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"33%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#hitachi\"\u003eHitachi\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"33%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#mitel\"\u003eMitel Networks\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"34%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#yamaha\"\u003eYamaha\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"33%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#innovaphone\"\u003eInnovaphone\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"33%\"\u003e\u003cfont size=\"2\"\u003e\u003ca href=\"#mrlg\"\u003eMRLG\u003c/a\u003e\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"34%\"\u003e\u0026nbsp;\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003c/table\u003e\n\u003c/p\u003e\n\n\u003cbr\u003e\n\u003ctable border=\"0\" width=\"100%\" cellpadding=\"8\" cellspacing=\"0\"\u003e\n\n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFbe\"\u003e\n    \u003cu\u003e\u003ca name=\"certicom\"\u003e\u003c/a\u003eCerticom\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFbe\"\u003e\n      \u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFbe\"\u003e\n    Certicom has examined the National Infrastructure Security Coordination \n    Centre (NISCC) advisory and determined it is not vulnerable.\u003cbr\u003e\n    \u003cbr\u003eCerticom \n    Developer Toolkits for SSL (SSL Plus, SSL Plus for Java, Security Builder \n    SSL-C and Security Builder SSL-J) do not provide a TCP/IP transport \n    mechanism, but rather utilize the supported operating system\u0027s TCP/IP stack. \n    The vulnerability is against the TCP/IP stack itself, and not directly \n    against the functionality offered by Certicom toolkits. Therefore, there is \n    no patch or workaround that can be implemented within Certicom products. The \n    patch or workaround must be provided by the operating system vendor.\u003cbr\u003e\n    \u003cbr\u003e\n    Customers are urged to contact their operating system vendors to determine \n    if they have provided a workaround to this advisory. If you have any further \n    questions please do not hesitate to contact\n    \u003ca href=\"mailto:support@certicom.com\"\u003esupport@certicom.com\u003c/a\u003e.\u003c/td\u003e\n  \u003c/tr\u003e\n  \n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFaf\"\u003e\u003cu\u003e\u003ca name=\"checkpoint\"\u003e\u003c/a\u003e\n    Check Point\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFaf\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFaf\"\u003eThe latest release for VPN-1/FireWall-1 \n    (R55 HFA-03) contains a protection against this vulnerability.\u0026nbsp; The \n    protection applies to both the firewall device and to hosts behind the \n    firewall.\u003cbr\u003e\n    \u003cbr\u003e\n    Please refer to the Check Point web site for further information at:\u003cbr\u003e\n    \u003ca HREF=\"http://www.checkpoint.com/techsupport/alerts/tcp_dos.html\"\u003e\n    http://www.checkpoint.com/techsupport/alerts/tcp_dos.html\u003c/a\u003e.\u003c/td\u003e\n  \u003c/tr\u003e\n  \n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFbe\"\u003e\n    \u003cu\u003e\u003ca name=\"cisco\"\u003e\u003c/a\u003eCisco\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFbe\"\u003e\n      \u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFbe\"\u003e\n    Cisco Systems is addressing the vulnerabilities identified by NISCC \n    Vulnerability Advisory 236929 across its entire product line.\u0026nbsp; Cisco \n    has released two related advisories:\u003cbr\u003e\n    \u003cbr\u003e\n    TCP Vulnerabilities in Multiple IOS-Based Cisco Products\u003cbr\u003e\n    \u003ca href=\"http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-ios.shtml\"\u003ehttp://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-ios.shtml\u003c/a\u003e\u003cbr\u003e\n    \u003cbr\u003e\n    TCP Vulnerabilities in Multiple Non-IOS Cisco Products\u003cbr\u003e\n    \u003ca href=\"http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-nonios.shtml\"\u003ehttp://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-nonios.shtml\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFaf\"\u003e\n    \u003cu\u003e\u003ca name=\"cray\"\u003e\u003c/a\u003eCray Inc\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFaf\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFaf\"\u003eCray Inc. is vulnerable on their UNICOS, \n    UNICOS/mk and UNICOS/mp systems.\u0026nbsp; Spr\u0027s have been opened to track this \n    issue.\u0026nbsp; Please contact your local Cray Service Representative for more \n    information.\u003c/td\u003e\n  \u003c/tr\u003e\n  \n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFbe\"\u003e\n    \u003cu\u003e\u003ca name=\"hitachi\"\u003e\u003c/a\u003eHitachi\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFbe\"\u003e\n      \u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFbe\"\u003e\n    Hitachi is investigating the potential impact to Hitachi\u0027s products.\u003c/td\u003e\n  \u003c/tr\u003e\n  \n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFaf\"\u003e\n    \u003cu\u003e\u003ca name=\"innovaphone\"\u003e\u003c/a\u003eInnovaphone\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFaf\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFaf\"\u003e\n    Not vulnerable.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFbe\"\u003e\n    \u003cu\u003e\u003ca name=\"iij\"\u003e\u003c/a\u003eInternet Initiative Japan, Inc (IIJ)\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFbe\"\u003e\n      \u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFbe\"\u003e\n    IIJ will release a new firmware to fix this vulnerability.\u0026nbsp; Details are \n    available on their web site at\n    \u003ca href=\"http://www.seil.jp/en/ann/announce_en_20040421_01.txt\"\u003e\n    http://www.seil.jp/en/ann/announce_en_20040421_01.txt\u003c/a\u003e.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFaf\"\u003e\n    \u003cu\u003e\u003ca name=\"interniche\"\u003e\u003c/a\u003eInterNiche\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFaf\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFaf\"\u003e=== NicheStack v2.0 TCP/IP ===\u003cbr\u003e\n    \u003cbr\u003e\n    InterNiche Technologies has updated its \n    NicheStack v2.0 TCP/IP product to handle the scenarios described in NISCC \n    Vulnerability Notice #236929.\u0026nbsp;\n    The patch is available to all InterNiche customers in accordance with the \n    terms of their current support agreements.\u003cbr\u003e\n    \u003cbr\u003e\n    More information can be found on \u003ca href=\"http://www.iNiche.com\"\u003ewww.iNiche.com\u003c/a\u003e or through \n    \u003ca href=\"mailto:support@iNiche.com\"\u003esupport@iNiche.com\u003c/a\u003e\n    \u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\n    === NicheLite v2.0 TCP/IP ===\u003cbr\u003e\n    \u003cbr\u003e\n    InterNiche Technologies has updated its \n    NicheLite v2.0 TCP/IP product to handle the scenarios described in NISCC \n    Vulnerability Notice #236929.\u0026nbsp;\n    The patch is available to all InterNiche customers in accordance with the \n    terms of their current support agreements. \u003cbr\u003e\n    \u003cbr\u003e\n    More information can be found on \u003ca href=\"http://www.iNiche.com\"\u003ewww.iNiche.com\u003c/a\u003e or through \n    \u003ca href=\"mailto:support@iNiche.com\"\u003esupport@iNiche.com\u003c/a\u003e \u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFbe\"\u003e\n    \u003cu\u003e\u003ca name=\"juniper\"\u003e\u003c/a\u003e\n    Juniper Networks\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFbe\"\u003e\n      \u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFbe\"\u003e\n    Juniper Networks products are susceptible to this vulnerability.  Customers\n    should contact Juniper Networks Technical Assistance Center for availability and\n    download instructions.\u003cbr\u003e\n    \u003cbr\u003eAdditional information is posted on our web site at\n    \u003ca href=\"https://www.juniper.net/support\"\u003ehttps://www.juniper.net/support\u003c/a\u003e. \u003c/td\u003e\n  \u003c/tr\u003e\n  \n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFaf\"\u003e\n    \u003cu\u003e\u003ca name=\"lucent\"\u003e\u003c/a\u003eLucent Technologies\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFaf\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFaf\"\u003eLucent Technologies is aware of this \n    vulnerability advisory and is investigating any potential impact to its \n    product portfolio. As further information becomes available, Lucent will \n    provide information directly to its customers, if appropriate.\u003c/td\u003e\n  \u003c/tr\u003e\n  \n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFbe\"\u003e\n    \u003cu\u003e\u003ca name=\"mitel\"\u003e\u003c/a\u003eMitel Networks\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFbe\"\u003e\n      \u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFbe\"\u003e\n    Mitel is aware of the vulnerability and is \n    working with the vendors of our underlying networking software to assess the \n    impact and, if necessary, determine potential solutions. When more \n    information becomes available, an advisory will be issued. Please contact \u0027\u003ca href=\"mailto:security@mitel.com\"\u003esecurity@mitel.com\u003c/a\u003e\u0027 \n    if you have specific questions.\u003c/td\u003e\n  \u003c/tr\u003e\n  \n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFaf\"\u003e\n    \u003cu\u003e\u003ca name=\"mrlg\"\u003e\u003c/a\u003eMRLG\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFaf\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFaf\"\u003eA new version of the Multi-Router Looking Glass tool (4.3.0) has been released.\u0026nbsp; \n    This includes a patch that prevents a remote user from utilising the \u0026quot;sh ip \n    bgp neighbors\u0026quot; functionality.\u0026nbsp; This new version is available from\n    \u003ca href=\"ftp://ftp.enterzone.net/looking-glass/CURRENT/\"\u003e\n    ftp://ftp.enterzone.net/looking-glass/CURRENT/\u003c/a\u003e. \u003c/td\u003e\n  \u003c/tr\u003e\n   \n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFbe\"\u003e\n    \u003cu\u003e\u003ca name=\"nec\"\u003e\u003c/a\u003eNEC\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFbe\"\u003e\n      \u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFbe\"\u003e\n    NEC is aware of this vulnerability and is trying to determine potential \n    impacts on our products.\u003c/td\u003e\n  \u003c/tr\u003e\n  \n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFaf\"\u003e\n    \u003cu\u003e\u003ca name=\"nortel\"\u003e\u003c/a\u003eNortel Networks\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFaf\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFaf\"\u003eNortel Networks has evaluated this issue and testing has confirmed that it \n    is possible to successfully exploit this vulnerability. However, the \n    preconditions for a successful exploitation require levels of access to the \n    network that are unlikely to be achieved in a normal network operating \n    environment; furthermore, such levels of access would enable other forms of \n    attack with much greater impact than that achievable by exploiting this \n    vulnerability.\u003cbr\u003e\n    \u003cbr\u003e\n    Nortel Networks is continuing to validate that this \n    vulnerability has no serious consequences for Nortel equipment, and will \n    update this statement periodically.\u003c/td\u003e\n  \u003c/tr\u003e\n\n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFbe\"\u003e\n    \u003cu\u003e\u003ca name=\"polycom\"\u003e\u003c/a\u003ePolycom\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFbe\"\u003e\n      \u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFbe\"\u003e\n    Polycom has investigated the potential \n    impact to our products for NISCC Advisory 236929.\u003cbr\u003e\n    \u003cbr\u003e\n    Specific product information will be provided at\n    \u003ca HREF=\"http://www.polycom.com/securitycenter\"\u003e\n    http://www.polycom.com/securitycenter\u003c/a\u003e.\u003c/td\u003e\n  \u003c/tr\u003e\n  \n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFaf\"\u003e\n    \u003cu\u003e\u003ca name=\"seccomp\"\u003e\u003c/a\u003eSecure Computing Corporation\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFaf\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFaf\"\u003eThe Sidewinder and Sidewinder G2 firewalls offer protection against this \n    attack at all releases. As application-layer firewalls, Sidewinder and \n    Sidewinder G2 offer protection to systems behind the firewall as well as \n    protecting management connections to the firewall.\u003c/td\u003e\n  \u003c/tr\u003e\n \n  \u003ctr\u003e\n    \u003ctd width=\"100%\" colspan=\"2\" bgcolor=\"#FFFFbe\"\u003e\n    \u003cu\u003e\u003ca name=\"yamaha\"\u003e\u003c/a\u003eYamaha\u003c/u\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" bgcolor=\"#FFFFbe\"\u003e\n      \u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"97%\" bgcolor=\"#FFFFbe\"\u003e\n    Pending.\u003c/td\u003e\n  \u003c/tr\u003e\n \n  \u003c/table\u003e\n\u003cbr\u003e\n\u003cbr\u003e\n\u003cb\u003eAcknowledgements\u003c/b\u003e\u003cbr\u003e\n\u003cbr\u003e\nNISCC wishes to thank the following:\u003cbr\u003e\n\u003cbr\u003e\n\u003ctable border=\"0\" cellpadding=\"6\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"100%\" id=\"AutoNumber3\"\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" align=\"left\" valign=\"top\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"197%\"\u003eSteve Bellovin, Rob Thomas and Paul Watson for their \n    contributions to this advisory.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" align=\"left\" valign=\"top\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"197%\"\u003eCisco Systems Inc. and Juniper Networks Inc. for their help \n    with the content of this advisory and for their support during the \n    disclosure process.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"3%\" align=\"left\" valign=\"top\"\u003e\\x95 \u003c/td\u003e\n    \u003ctd width=\"197%\"\u003eJPCERT/CC for their assistance in co-ordinating this disclosure \n    in Japan.\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\u003cbr\u003e\n\u003cbr\u003e\n\u003cb\u003eReferences\u003c/b\u003e\n\u003cbr\u003e\n\u003ctable border=\"0\" cellpadding=\"4\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"100%\" id=\"AutoNumber7\"\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"98%\" colspan=\"3\"\u003e\u003cb\u003eInternet Engineering Task Force\u003c/b\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eRFC 793 Transmission Control Protocol\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\u003ca href=\"http://www.ietf.org/rfc/rfc793.txt\"\u003e\n    http://www.ietf.org/rfc/rfc793.txt\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eRFC 1323 TCP Extensions for High Performance\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\"\u003e\u003ca href=\"http://www.ietf.org/rfc/rfc1323.txt\"\u003e\n    http://www.ietf.org/rfc/rfc1323.txt\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eRFC 1771 A Border Gateway Protocol 4 (BGP-4)\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\u003ca href=\"http://www.ietf.org/rfc/rfc1771.txt\"\u003e\n    http://www.ietf.org/rfc/rfc1771.txt\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eRFC 2385 Protection of BGP Sessions via the TCP \n    MD5 Signature Option\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\u003ca href=\"http://www.ietf.org/rfc/rfc2385.txt\"\u003e\n    http://www.ietf.org/rfc/rfc2385.txt\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eRFC 2827 Network Ingress Filtering\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\u003ca href=\"http://www.ietf.org/rfc/rfc2827.txt\"\u003e\n    http://www.ietf.org/rfc/rfc2827.txt\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eRFC 3562 Considerations for the TCP MD5 \n    Signature Option\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\u003ca href=\"http://www.ietf.org/rfc/rfc3562.txt\"\u003e\n    http://www.ietf.org/rfc/rfc3562.txt\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eRFC 3682 Generalized TTL Security Mechanism\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\u003ca href=\"http://www.ietf.org/rfc/rfc3682.txt\"\u003e\n    http://www.ietf.org/rfc/rfc3682.txt\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eInternet Draft - Transmission Control Protocol \n    security considerations\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\n    \u003ca href=\"http://www.ietf.org/internet-drafts/draft-ietf-tcpm-tcpsecure-00.txt\"\u003e\n    http://www.ietf.org/internet-drafts/draft-ietf-tcpm-tcpsecure-00.txt\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"98%\" colspan=\"3\"\u003e\u003cb\u003eNISCC\u003c/b\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eBest Practice Guidelines - Border Gateway \n    Protocol\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\n    \u003ca href=\"http://www.niscc.gov.uk/BGP%20Filtering%20Guide.pdf\"\u003e\n    http://www.niscc.gov.uk/BGP Filtering Guide.pdf\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"98%\" colspan=\"3\"\u003e\u003cb\u003eConfiguration and Tuning Guides\u003c/b\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eSecure BGP Template for Cisco IOS\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\n    \u003ca href=\"http://www.cymru.com/Documents/secure-bgp-template.html\"\u003e\n    http://www.cymru.com/Documents/secure-bgp-template.html\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eJUNOS Secure BGP Template\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\n    \u003ca href=\"http://www.qorbit.net/documents/junos-bgp-template.pdf\"\u003e\n    http://www.qorbit.net/documents/junos-bgp-template.pdf\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eUNIX IP Stack Tuning Guide\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\n    \u003ca href=\"http://www.cymru.com/Documents/ip-stack-tuning.html\"\u003e\n    http://www.cymru.com/Documents/ip-stack-tuning.html\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"98%\" colspan=\"3\"\u003e\u003cb\u003eOther Documents\u003c/b\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eSANS discussion on egress filtering\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\u003ca href=\"http://www.sans.org/y2k/egress.htm\"\u003e\n    http://www.sans.org/y2k/egress.htm\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"98%\" colspan=\"3\"\u003e\u003cb\u003eVulnerability Databases\u003c/b\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eCommon Vulnerabilities and Exposures (CVE)\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\n    \u003ca href=\"http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0230\"\u003e\n    http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0230\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"96%\" colspan=\"2\"\u003eOpen Source Vulnerability Database (OSVDB)\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"2%\"\u003e\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"94%\"\u003e\n    \u003ca href=\"http://www.osvdb.org/displayvuln.php?osvdb_id=4030\"\u003e\n    http://www.osvdb.org/displayvuln.php?osvdb_id=4030\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\u003cp\u003e\n\u003cbr\u003e\n\u003cbr\u003e\n\u003cb\u003eContact Information\u003c/b\u003e\u003cbr\u003e\n\u003cbr\u003e\nThe NISCC Vulnerability Management Team can be contacted as follows:\u003cbr\u003e\n\n\u003c/p\u003e\n\n\u003c/p\u003e\n\n\u003ctable border=\"1\" width=\"87%\" cellspacing=\"3\" cellpadding=\"5\"\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"30%\" valign=\"top\"\u003eEmail\u003c/td\u003e\n    \u003ctd width=\"70%\"\u003e\u003ca href=\"mailto:vulteam@niscc.gov.uk\"\u003evulteam@niscc.gov.uk\u003c/a\u003e\n      \u003cbr\u003e\u003ci\u003e(Please quote the advisory reference in the subject line.)\u003c/i\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"30%\" valign=\"top\"\u003eTelephone\u003c/td\u003e\n    \u003ctd width=\"70%\"\u003e   +44 (0)20 7821 1330 Extension 4511\n      \u003cbr\u003e\u003ci\u003e(Monday to Friday 08:30 - 17:00)\u003c/i\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"30%\" valign=\"top\"\u003eFax\u003c/td\u003e\n    \u003ctd width=\"70%\"\u003e         +44 (0)20 7821 1686\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"30%\" valign=\"top\"\u003ePost\u003c/td\u003e\n    \u003ctd width=\"70%\"\u003e        Vulnerability Management Team\u003cbr\u003e\n            NISCC\u003cbr\u003e\n            PO Box 832\u003cbr\u003e\n            London\u003cbr\u003e\n            SW1P 1BG\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\u003cbr\u003e\nWe encourage those who wish to communicate via email to make use of our PGP key.  This is available from \u003ca href=\"http://www.uniras.gov.uk/UNIRAS.asc\"\u003ehttp://www.uniras.gov.uk/UNIRAS.asc\u003c/a\u003e.\u003cbr\u003e\n\u003cbr\u003e\nPlease note that UK government protectively marked material should not be sent to the email address above.\u003cbr\u003e\n\u003cbr\u003e\nIf you wish to be added to our email distribution list, please email your request to \u003ca href=\"mailto:uniras@niscc.gov.uk\"\u003euniras@niscc.gov.uk\u003c/a\u003e.\u003cbr\u003e\n\n\n\n\u003cbr\u003e\n\u003cbr\u003e\n\u003cb\u003e\nWhat is NISCC?\u003c/b\u003e\u003cbr\u003e\n\u003cbr\u003e\nFor further information regarding the UK National Infrastructure Security Co-Ordination Centre, please visit the NISCC web site at:\n\u003cbr\u003e\n\u003ca href=\"http://www.niscc.gov.uk/aboutniscc/index.htm\"\u003ehttp://www.niscc.gov.uk/aboutniscc/index.htm\u003c/a\u003e\u003cbr\u003e\n\u003cbr\u003e\nReference to any specific commercial product, process or service by trade name, trademark manufacturer or otherwise, does not constitute or imply its endorsement, recommendation, or favouring by NISCC.  The views and opinions of authors expressed within this notice shall not be used for advertising\nor product endorsement purposes.\u003cbr\u003e\n\u003cbr\u003e\nNeither shall NISCC accept responsibility for any errors or omissions contained within this advisory.  In particular, they shall not be liable for any loss or damage whatsoever, arising from or in connection with the usage of information contained within this notice.\u003cbr\u003e\n\u003cbr\u003e\n\\xa9 2004 Crown Copyright\u003cbr\u003e\n\u003cbr\u003e\nRevision History\u003cbr\u003e\n\u003cbr\u003e\n\u003ctable border=\"0\" width=\"100%\"\u003e\n  \u003ctr\u003e\n    \u003ctd width=\"23%\"\u003e\n\u003cfont size=\"2\"\u003eApril 20\u003c/font\u003e\u003cSMALL\u003e, 2004:\n\u003c/SMALL\u003e\n    \u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e\n\u003cSMALL\u003e\n  Initial release (1.0)\u003c/SMALL\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n    \n  \u003ctr\u003e\n    \u003ctd width=\"23%\"\u003e\n\u003cfont size=\"2\"\u003eApril 21, 2004:\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e\n\u003cfont size=\"2\"\u003eCorrected hyperlinks (1.1)\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n    \n  \u003ctr\u003e\n    \u003ctd width=\"23%\"\u003e\n\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e\n\u003cfont size=\"2\"\u003eInserted impact statement for Cisco (1.1)\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n    \n  \u003ctr\u003e\n    \u003ctd width=\"23%\"\u003e\n\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e\n\u003cfont size=\"2\"\u003eInserted impact statement for Mitel (1.1)\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n    \n  \u003ctr\u003e\n    \u003ctd width=\"23%\"\u003e\n\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e\n\u003cfont size=\"2\"\u003eInserted MRLG patch reference (1.2)\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n    \n  \u003ctr\u003e\n    \u003ctd width=\"23%\"\u003e\n\u003cfont size=\"2\"\u003eApril 22, 2004:\u003c/font\u003e\u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e\n\u003cfont size=\"2\"\u003eRevised impact statement for Certicom (1.3)\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n    \n  \u003ctr\u003e\n    \u003ctd width=\"23%\"\u003e\n\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e\n\u003cfont size=\"2\"\u003eInserted impact statement for Nortel Networks (1.3)\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n    \n  \u003ctr\u003e\n    \u003ctd width=\"23%\"\u003e\n\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e\n\u003cfont size=\"2\"\u003eInserted impact statement for Secure Computing Corporation (1.3)\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n    \n  \u003ctr\u003e\n    \u003ctd width=\"23%\"\u003e\n\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e\n\u003cfont size=\"2\"\u003eInserted references section (1.4)\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n    \n  \u003ctr\u003e\n    \u003ctd width=\"23%\"\u003e\n\u0026nbsp;\u003c/td\u003e\n    \u003ctd width=\"77%\"\u003e\n\u003cfont size=\"2\"\u003eInserted impact statement for Lucent Technologies (1.4)\u003c/font\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n    \n  \u003c/table\u003e\n\n\n\n\u003cbr\u003e\n\u0026lt;End of NISCC Vulnerability Advisory\u003e\u003cbr\u003e\n\u003c/div\u003e\n\u003c/body\u003e\n\n\u003c/html\u003e. -----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA512\n\n=============================================================================\nFreeBSD-SA-14:19.tcp                                        Security Advisory\n                                                          The FreeBSD Project\n\nTopic:          Denial of Service in TCP packet processing\n\nCategory:       core\nModule:         inet\nAnnounced:      2014-09-16\nCredits:        Jonathan Looney (Juniper SIRT)\nAffects:        All supported versions of FreeBSD. \nCorrected:      2014-09-16 09:48:35UTC (stable/10, 10.1-PRERELEASE)\n                2014-09-16 09:48:35 UTC (stable/10, 10.1-BETA1-p1)\n                2014-09-16 09:50:19 UTC (releng/10.0, 10.0-RELEASE-p9)\n                2014-09-16 09:49:11 UTC (stable/9, 9.3-STABLE)\n                2014-09-16 09:50:19 UTC (releng/9.3, 9.3-RELEASE-p2)\n                2014-09-16 09:50:19 UTC (releng/9.2, 9.2-RELEASE-p12)\n                2014-09-16 09:50:19 UTC (releng/9.1, 9.1-RELEASE-p19)\n                2014-09-16 09:49:11 UTC (stable/8, 8.4-STABLE)\n                2014-09-16 09:50:19 UTC (releng/8.4, 8.4-RELEASE-p16)\nCVE Name:       CVE-2004-0230\n\nFor general information regarding FreeBSD Security Advisories,\nincluding descriptions of the fields above, security branches, and the\nfollowing sections, please visit \u003cURL:http://security.FreeBSD.org/\u003e.  New TCP connections are initiated using special SYN\nflag in a datagram.  Sequencing of data is controlled by 32-bit sequence\nnumbers, that start with a random value and are increased using modulo\n2**32 arithmetic.  In case one of the two port numbers is unknown, a successful\nattack requires less than 2**17 packets spoofed, which can be\ngenerated within less than a second on a decent connection to the\nInternet.  Workaround\n\nIt is possible to defend against these attacks with stateful traffic\ninspection using a firewall.  This can be done by enabling pf(4) on\nthe system and creating states for every connection.  Even a default\nruleset to allow all traffic would be sufficient to mitigate this\nissue. \n\nV.   Solution\n\nPerform one of the following:\n\n1) Upgrade your vulnerable system to a supported FreeBSD stable or\nrelease / security branch (releng) dated after the correction date. \n\n2) To update your vulnerable system via a source code patch:\n\nThe following patches have been verified to apply to the applicable\nFreeBSD release branches. \n\na) Download the relevant patch from the location below, and verify the\ndetached PGP signature using your PGP utility. \n\n# fetch http://security.FreeBSD.org/patches/SA-14:19/tcp.patch\n# fetch http://security.FreeBSD.org/patches/SA-14:19/tcp.patch.asc\n# gpg --verify tcp.patch.asc\n\nb) Apply the patch.  Execute the following commands as root:\n\n# cd /usr/src\n# patch \u003c /path/to/patch\n\nc) Recompile your kernel as described in\n\u003cURL:http://www.FreeBSD.org/handbook/kernelconfig.html\u003e and reboot the\nsystem. \n\n3) To update your vulnerable system via a binary patch:\n\nSystems running a RELEASE version of FreeBSD on the i386 or amd64\nplatforms can be updated via the freebsd-update(8) utility:\n\n# freebsd-update fetch\n# freebsd-update install\n\nVI.  Correction details\n\nThe following list contains the correction revision numbers for each\naffected branch. \n\nBranch/path                                                      Revision\n- -------------------------------------------------------------------------\nstable/8/                                                         r271668\nreleng/8.4/                                                       r271669\nstable/9/                                                         r271668\nreleng/9.1/                                                       r271669\nreleng/9.2/                                                       r271669\nreleng/9.3/                                                       r271669\nstable/10/                                                        r271667\nreleng/10.0/                                                      r271669\n- -------------------------------------------------------------------------\n\nTo see which files were modified by a particular revision, run the\nfollowing command, replacing NNNNNN with the revision number, on a\nmachine with Subversion installed:\n\n# svn diff -cNNNNNN --summarize svn://svn.freebsd.org/base\n\nOr visit the following URL, replacing NNNNNN with the revision number:\n\n\u003cURL:http://svnweb.freebsd.org/base?view=revision\u0026revision=NNNNNN\u003e\n\nVII",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2004-0230"
          },
          {
            "db": "CERT/CC",
            "id": "VU#415294"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2004-000150"
          },
          {
            "db": "BID",
            "id": "10183"
          },
          {
            "db": "VULHUB",
            "id": "VHN-8660"
          },
          {
            "db": "VULMON",
            "id": "CVE-2004-0230"
          },
          {
            "db": "PACKETSTORM",
            "id": "37558"
          },
          {
            "db": "PACKETSTORM",
            "id": "33143"
          },
          {
            "db": "PACKETSTORM",
            "id": "33160"
          },
          {
            "db": "PACKETSTORM",
            "id": "33159"
          },
          {
            "db": "PACKETSTORM",
            "id": "33152"
          },
          {
            "db": "PACKETSTORM",
            "id": "128284"
          }
        ],
        "trust": 3.33
      },
      "exploit_availability": {
        "_id": null,
        "data": [
          {
            "reference": "https://vulmon.com/exploitdetails?qidtp=exploitdb\u0026qid=24033",
            "trust": 0.7,
            "type": "exploit"
          },
          {
            "reference": "https://www.scap.org.cn/vuln/vhn-8660",
            "trust": 0.1,
            "type": "unknown"
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-8660"
          },
          {
            "db": "VULMON",
            "id": "CVE-2004-0230"
          }
        ]
      },
      "external_ids": {
        "_id": null,
        "data": [
          {
            "db": "NVD",
            "id": "CVE-2004-0230",
            "trust": 3.4
          },
          {
            "db": "CERT/CC",
            "id": "VU#415294",
            "trust": 2.9
          },
          {
            "db": "BID",
            "id": "10183",
            "trust": 2.9
          },
          {
            "db": "USCERT",
            "id": "TA04-111A",
            "trust": 2.3
          },
          {
            "db": "OSVDB",
            "id": "4030",
            "trust": 2.1
          },
          {
            "db": "MCAFEE",
            "id": "SB10053",
            "trust": 1.5
          },
          {
            "db": "SECUNIA",
            "id": "11458",
            "trust": 1.2
          },
          {
            "db": "SECUNIA",
            "id": "11440",
            "trust": 1.2
          },
          {
            "db": "SECUNIA",
            "id": "22341",
            "trust": 1.2
          },
          {
            "db": "JUNIPER",
            "id": "JSA10638",
            "trust": 1.2
          },
          {
            "db": "VUPEN",
            "id": "ADV-2006-3983",
            "trust": 1.2
          },
          {
            "db": "XF",
            "id": "15886",
            "trust": 0.8
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2004-000150",
            "trust": 0.8
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200408-159",
            "trust": 0.7
          },
          {
            "db": "NSFOCUS",
            "id": "7605",
            "trust": 0.6
          },
          {
            "db": "AUSCERT",
            "id": "ESB-2020.1795",
            "trust": 0.6
          },
          {
            "db": "PACKETSTORM",
            "id": "33159",
            "trust": 0.2
          },
          {
            "db": "PACKETSTORM",
            "id": "33152",
            "trust": 0.2
          },
          {
            "db": "PACKETSTORM",
            "id": "33160",
            "trust": 0.2
          },
          {
            "db": "PACKETSTORM",
            "id": "33143",
            "trust": 0.2
          },
          {
            "db": "EXPLOIT-DB",
            "id": "24033",
            "trust": 0.2
          },
          {
            "db": "PACKETSTORM",
            "id": "33202",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "33185",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "33153",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "33172",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "33174",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "33171",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "33243",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "33182",
            "trust": 0.1
          },
          {
            "db": "EXPLOIT-DB",
            "id": "942",
            "trust": 0.1
          },
          {
            "db": "EXPLOIT-DB",
            "id": "276",
            "trust": 0.1
          },
          {
            "db": "EXPLOIT-DB",
            "id": "24031",
            "trust": 0.1
          },
          {
            "db": "EXPLOIT-DB",
            "id": "24032",
            "trust": 0.1
          },
          {
            "db": "EXPLOIT-DB",
            "id": "24030",
            "trust": 0.1
          },
          {
            "db": "EXPLOIT-DB",
            "id": "291",
            "trust": 0.1
          },
          {
            "db": "SEEBUG",
            "id": "SSVID-77770",
            "trust": 0.1
          },
          {
            "db": "SEEBUG",
            "id": "SSVID-77769",
            "trust": 0.1
          },
          {
            "db": "SEEBUG",
            "id": "SSVID-77768",
            "trust": 0.1
          },
          {
            "db": "SEEBUG",
            "id": "SSVID-77771",
            "trust": 0.1
          },
          {
            "db": "SEEBUG",
            "id": "SSVID-18409",
            "trust": 0.1
          },
          {
            "db": "VULHUB",
            "id": "VHN-8660",
            "trust": 0.1
          },
          {
            "db": "VULMON",
            "id": "CVE-2004-0230",
            "trust": 0.1
          },
          {
            "db": "SECUNIA",
            "id": "15263",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "37558",
            "trust": 0.1
          },
          {
            "db": "CERT/CC",
            "id": "VU#498440",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "128284",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#415294"
          },
          {
            "db": "VULHUB",
            "id": "VHN-8660"
          },
          {
            "db": "VULMON",
            "id": "CVE-2004-0230"
          },
          {
            "db": "BID",
            "id": "10183"
          },
          {
            "db": "PACKETSTORM",
            "id": "37558"
          },
          {
            "db": "PACKETSTORM",
            "id": "33143"
          },
          {
            "db": "PACKETSTORM",
            "id": "33160"
          },
          {
            "db": "PACKETSTORM",
            "id": "33159"
          },
          {
            "db": "PACKETSTORM",
            "id": "33152"
          },
          {
            "db": "PACKETSTORM",
            "id": "128284"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200408-159"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2004-000150"
          },
          {
            "db": "NVD",
            "id": "CVE-2004-0230"
          }
        ]
      },
      "id": "VAR-200408-0145",
      "iot": {
        "_id": null,
        "data": true,
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-8660"
          }
        ],
        "trust": 0.5305089336363636
      },
      "last_update_date": "2026-03-09T22:48:20.536000Z",
      "patch": {
        "_id": null,
        "data": [
          {
            "title": "TCP RFC Alert",
            "trust": 0.8,
            "url": "http://www.checkpoint.com/services/techsupport/alerts/tcp_dos.html"
          },
          {
            "title": "cisco-sa-20040420-tcp-nonios",
            "trust": 0.8,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-nonios.shtml"
          },
          {
            "title": "cisco-sa-20040420-tcp-ios",
            "trust": 0.8,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-ios.shtml"
          },
          {
            "title": "HPSBGN01041",
            "trust": 0.8,
            "url": "http://www1.itrc.hp.com/service/cki/docDisplay.do?docId=HPSBGN01041"
          },
          {
            "title": "IY62006",
            "trust": 0.8,
            "url": "http://www-1.ibm.com/support/docview.wss?uid=isg1IY62006"
          },
          {
            "title": "IY55950",
            "trust": 0.8,
            "url": "http://www-1.ibm.com/support/docview.wss?uid=isg1IY55950"
          },
          {
            "title": "IY55949",
            "trust": 0.8,
            "url": "http://www-1.ibm.com/support/docview.wss?uid=isg1IY55949"
          },
          {
            "title": "TCP \u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u8106\u5f31\u6027\u306b\u3088\u308b SEIL \u30b7\u30ea\u30fc\u30ba\u3078\u306e\u5f71\u97ff\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.seil.jp/ann/announce_20040421_01.txt"
          },
          {
            "title": "58784",
            "trust": 0.8,
            "url": "http://www.juniper.net/support/security/alerts/niscc-236929.txt"
          },
          {
            "title": "MS06-064",
            "trust": 0.8,
            "url": "http://www.microsoft.com/technet/security/bulletin/MS06-064.mspx"
          },
          {
            "title": "MS05-019",
            "trust": 0.8,
            "url": "http://www.microsoft.com/technet/security/bulletin/MS05-019.mspx"
          },
          {
            "title": "NV04-001",
            "trust": 0.8,
            "url": "http://www.nec.co.jp/security-info/secinfo/nv04-001.html"
          },
          {
            "title": "Oracle Critical Patch Update Advisory - January 2015",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html"
          },
          {
            "title": "Text Form of Oracle Critical Patch Update - January 2015 Risk Matrices",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujan2015verbose-1972976.html"
          },
          {
            "title": "RT\u30b7\u30ea\u30fc\u30ba\u306eTCP\u306b\u95a2\u3059\u308b\u8106\u5f31\u6027\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.rtpro.yamaha.co.jp/RT/FAQ/TCPIP/cert-ta04-111a.html"
          },
          {
            "title": "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u60c5\u5831\uff082004\u5e747\u670820\u65e5\uff09",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/storage/diskarray/techsupport/sec_info/sec_20040423-1.html"
          },
          {
            "title": "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u60c5\u5831\uff082004\u5e744\u670828\u65e5\uff09",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/storage/diskarray/techsupport/sec_info/sec_20040423-2.html"
          },
          {
            "title": "January 2015 Critical Patch Update Released",
            "trust": 0.8,
            "url": "https://blogs.oracle.com/security/entry/january_2015_critical_patch_update"
          },
          {
            "title": "TCP\u306b\u6f5c\u5728\u3059\u308b\u8106\u5f31\u6027 (2004\u5e7410\u67087\u65e5)",
            "trust": 0.8,
            "url": "http://software.fujitsu.com/jp/security/products-fujitsu/solution/interstage_sd_200402.html"
          },
          {
            "title": "SYM05-008",
            "trust": 0.8,
            "url": "http://securityresponse.symantec.com/avcenter/security/Content/2005.05.02.html"
          },
          {
            "title": "cisco-sa-20040420-tcp-nonios",
            "trust": 0.8,
            "url": "http://www.cisco.com/japanese/warp/public/3/jp/service/tac/707/cisco-sa-20040420-tcp-nonios-j.shtml"
          },
          {
            "title": "cisco-sa-20040420-tcp-ios",
            "trust": 0.8,
            "url": "http://www.cisco.com/japanese/warp/public/3/jp/service/tac/707/cisco-sa-20040420-tcp-ios-j.shtml"
          },
          {
            "title": "SYM05-008",
            "trust": 0.8,
            "url": "http://www.symantec.com/region/jp/avcenter/security/content/2005.05.02.html"
          },
          {
            "title": "TCP RFC\u306b\u95a2\u3059\u308bAlert",
            "trust": 0.8,
            "url": "http://www.checkpoint.co.jp/techsupport/alerts/tcp_rfc_alert.html"
          },
          {
            "title": "TCP \u306e\u8106\u5f31\u6027\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.allied-telesis.co.jp/support/list/faq/vuls/20040421.html"
          },
          {
            "title": "\u300cTCP \u30d7\u30ed\u30c8\u30b3\u30eb\u306b\u6f5c\u5728\u3059\u308b\u4fe1\u983c\u6027\u306e\u554f\u984c\u300d\u306b\u95a2\u3059\u308b\u88fd\u54c1\u306e\u5bfe\u5fdc\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/Secureplaza/html/hirt/20040422.html"
          },
          {
            "title": "MS06-064",
            "trust": 0.8,
            "url": "http://www.microsoft.com/japan/technet/security/bulletin/MS06-064.mspx"
          },
          {
            "title": "MS05-019",
            "trust": 0.8,
            "url": "http://www.microsoft.com/japan/technet/security/bulletin/MS05-019.mspx"
          },
          {
            "title": "[\u304a\u77e5\u3089\u305b] TCP\u306b\u6f5c\u5728\u3059\u308b\u8106\u5f31\u6027\u3078\u306e\u5bfe\u5fdc\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://software.fujitsu.com/jp/security/vulnerabilities/cert/236929_tcp.html"
          },
          {
            "title": "Cisco: TCP Vulnerabilities in Multiple Non-IOS Cisco Products",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=cisco_security_advisories_and_alerts_ciscoproducts\u0026qid=cisco-sa-20040420-tcp-nonios"
          },
          {
            "title": "Cisco: TCP Vulnerabilities in Multiple IOS-Based Cisco Products",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=cisco_security_advisories_and_alerts_ciscoproducts\u0026qid=cisco-sa-20040420-tcp-ios"
          },
          {
            "title": "Fortinet Security Advisories: CVE-2004-0230 Blind Reset Attack Using the RST/SYN Bit",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=fortinet_security_advisories\u0026qid=FG-IR-16-039"
          },
          {
            "title": "Oracle: Oracle Critical Patch Update Advisory - January 2015",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=oracle_advisories\u0026qid=4a692d6d60aa31507cb101702b494c51"
          },
          {
            "title": "ips-assessment-reports",
            "trust": 0.1,
            "url": "https://github.com/gabrieljcs/ips-assessment-reports "
          },
          {
            "title": "dsm_ips",
            "trust": 0.1,
            "url": "https://github.com/biswajitde/dsm_ips "
          },
          {
            "title": "rhsecapi",
            "trust": 0.1,
            "url": "https://github.com/RedHatOfficial/rhsecapi "
          },
          {
            "title": "cve-pylib",
            "trust": 0.1,
            "url": "https://github.com/RedHatProductSecurity/cve-pylib "
          }
        ],
        "sources": [
          {
            "db": "VULMON",
            "id": "CVE-2004-0230"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2004-000150"
          }
        ]
      },
      "problemtype_data": {
        "_id": null,
        "data": [
          {
            "problemtype": "NVD-CWE-Other",
            "trust": 1.0
          }
        ],
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2004-0230"
          }
        ]
      },
      "references": {
        "_id": null,
        "data": [
          {
            "trust": 2.6,
            "url": "http://www.securityfocus.com/bid/10183"
          },
          {
            "trust": 2.3,
            "url": "http://www.us-cert.gov/cas/techalerts/ta04-111a.html"
          },
          {
            "trust": 2.1,
            "url": "http://www.kb.cert.org/vuls/id/415294"
          },
          {
            "trust": 1.5,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html"
          },
          {
            "trust": 1.5,
            "url": "http://www.uniras.gov.uk/vuls/2004/236929/index.htm"
          },
          {
            "trust": 1.4,
            "url": "https://kc.mcafee.com/corporate/index?page=content\u0026id=sb10053"
          },
          {
            "trust": 1.4,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2004-0230"
          },
          {
            "trust": 1.2,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-ios.shtml"
          },
          {
            "trust": 1.2,
            "url": "http://kb.juniper.net/jsa10638"
          },
          {
            "trust": 1.2,
            "url": "http://www.securityfocus.com/archive/1/449179/100/0/threaded"
          },
          {
            "trust": 1.2,
            "url": "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2005/ms05-019"
          },
          {
            "trust": 1.2,
            "url": "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2006/ms06-064"
          },
          {
            "trust": 1.2,
            "url": "ftp://ftp.netbsd.org/pub/netbsd/security/advisories/netbsd-sa2004-006.txt.asc"
          },
          {
            "trust": 1.2,
            "url": "http://www.osvdb.org/4030"
          },
          {
            "trust": 1.2,
            "url": "https://oval.cisecurity.org/repository/search/definition/oval%3aorg.mitre.oval%3adef%3a2689"
          },
          {
            "trust": 1.2,
            "url": "https://oval.cisecurity.org/repository/search/definition/oval%3aorg.mitre.oval%3adef%3a270"
          },
          {
            "trust": 1.2,
            "url": "https://oval.cisecurity.org/repository/search/definition/oval%3aorg.mitre.oval%3adef%3a3508"
          },
          {
            "trust": 1.2,
            "url": "https://oval.cisecurity.org/repository/search/definition/oval%3aorg.mitre.oval%3adef%3a4791"
          },
          {
            "trust": 1.2,
            "url": "https://oval.cisecurity.org/repository/search/definition/oval%3aorg.mitre.oval%3adef%3a5711"
          },
          {
            "trust": 1.2,
            "url": "ftp://ftp.sco.com/pub/updates/unixware/scosa-2005.14/scosa-2005.14.txt"
          },
          {
            "trust": 1.2,
            "url": "ftp://ftp.sco.com/pub/updates/openserver/scosa-2005.3/scosa-2005.3.txt"
          },
          {
            "trust": 1.2,
            "url": "ftp://ftp.sco.com/pub/updates/openserver/scosa-2005.9/scosa-2005.9.txt"
          },
          {
            "trust": 1.2,
            "url": "http://secunia.com/advisories/11440"
          },
          {
            "trust": 1.2,
            "url": "http://secunia.com/advisories/11458"
          },
          {
            "trust": 1.2,
            "url": "http://secunia.com/advisories/22341"
          },
          {
            "trust": 1.2,
            "url": "ftp://patches.sgi.com/support/free/security/advisories/20040403-01-a.asc"
          },
          {
            "trust": 1.2,
            "url": "http://www.vupen.com/english/advisories/2006/3983"
          },
          {
            "trust": 1.2,
            "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/15886"
          },
          {
            "trust": 1.1,
            "url": "http://marc.info/?l=bugtraq\u0026m=108302060014745\u0026w=2"
          },
          {
            "trust": 1.1,
            "url": "http://marc.info/?l=bugtraq\u0026m=108506952116653\u0026w=2"
          },
          {
            "trust": 1.1,
            "url": "http://xforce.iss.net/xforce/alerts/id/170"
          },
          {
            "trust": 0.8,
            "url": "http://www.uniras.gov.uk/niscc/docs/al-20040420-00199.html?lang=en"
          },
          {
            "trust": 0.8,
            "url": "http://www.niscc.gov.uk/niscc/docs/re-20040420-00391.pdf"
          },
          {
            "trust": 0.8,
            "url": "http://www.ietf.org/rfc/rfc3562.txt"
          },
          {
            "trust": 0.8,
            "url": "http://www.ietf.org/rfc/rfc2385.txt"
          },
          {
            "trust": 0.8,
            "url": "http://www.ietf.org/rfc/rfc1323.txt"
          },
          {
            "trust": 0.8,
            "url": "http://www.osvdb.org/displayvuln.php?osvdb_id=4030"
          },
          {
            "trust": 0.8,
            "url": "http://www.ciac.org/ciac/bulletins/o-124.shtml"
          },
          {
            "trust": 0.8,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2004-0230"
          },
          {
            "trust": 0.8,
            "url": "http://www.cpni.gov.uk/products/vulnerabilitydisclosures/default.aspx?id=va-20040420-00391.xml"
          },
          {
            "trust": 0.8,
            "url": "http://www.jpcert.or.jp/wr/2004/wr041702.txt"
          },
          {
            "trust": 0.8,
            "url": "http://www.jpcert.or.jp/at/2004/at040003.txt"
          },
          {
            "trust": 0.8,
            "url": "http://jvn.jp/niscc/niscc-236929/index.html"
          },
          {
            "trust": 0.8,
            "url": "http://jvn.jp/cert/jvnta04-111a/index.html"
          },
          {
            "trust": 0.8,
            "url": "http://jvn.jp/tr/trta04-111a"
          },
          {
            "trust": 0.8,
            "url": "http://www.cpni.gov.uk/docs/re-20040420-00391.pdf?lang=en"
          },
          {
            "trust": 0.8,
            "url": "http://xforce.iss.net/xforce/xfdb/15886"
          },
          {
            "trust": 0.8,
            "url": "http://www.isskk.co.jp/support/techinfo/general/tcp_170.html"
          },
          {
            "trust": 0.6,
            "url": "http://www.cisco.com/en/us/products/products_security_advisory09186a008021ba2f.shtml"
          },
          {
            "trust": 0.6,
            "url": "http://www.nsfocus.net/vulndb/7605"
          },
          {
            "trust": 0.6,
            "url": "https://www.auscert.org.au/bulletins/esb-2020.1795/"
          },
          {
            "trust": 0.4,
            "url": "http://support.avaya.com/elmodocs2/security/asa-2005-097_scasa-2005-14.pdf"
          },
          {
            "trust": 0.4,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2004-0230"
          },
          {
            "trust": 0.3,
            "url": "http://www.seil.jp/en/ann/announce_en_20040421_01.txt"
          },
          {
            "trust": 0.3,
            "url": "http://support.avaya.com/elmodocs2/security/asa-2006-217.htm"
          },
          {
            "trust": 0.3,
            "url": "http://www-1.ibm.com/support/docview.wss?uid=isg1iy55949"
          },
          {
            "trust": 0.3,
            "url": "http://www-1.ibm.com/support/docview.wss?uid=isg1iy55950"
          },
          {
            "trust": 0.3,
            "url": "http://www-1.ibm.com/support/docview.wss?uid=isg1iy62006"
          },
          {
            "trust": 0.3,
            "url": "http://www.microsoft.com/technet/security/bulletin/ms05-019.mspx"
          },
          {
            "trust": 0.3,
            "url": "http://www.microsoft.com/technet/security/bulletin/ms06-064.mspx"
          },
          {
            "trust": 0.3,
            "url": "http://www.bluecoat.com/support/knowledge/advisory_tcp_can-2004-0230.html"
          },
          {
            "trust": 0.3,
            "url": "http://securityresponse.symantec.com/avcenter/security/content/2005.05.02.html"
          },
          {
            "trust": 0.3,
            "url": "http://www.juniper.net/support/alert.html"
          },
          {
            "trust": 0.3,
            "url": "http://www.checkpoint.com/techsupport/alerts/tcp_dos.html"
          },
          {
            "trust": 0.3,
            "url": "https://www.freebsd.org/security/advisories/freebsd-sa-14:19.tcp.asc"
          },
          {
            "trust": 0.3,
            "url": "https://downloads.avaya.com/css/p8/documents/101006870"
          },
          {
            "trust": 0.3,
            "url": "https://www.alienvault.com/forums/discussion/5706/security-advisory-alienvault-v5-1-addresses-6-vulnerabilities"
          },
          {
            "trust": 0.2,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-ios.shtml."
          },
          {
            "trust": 0.2,
            "url": "http://www.cisco.com/warp/public/707/"
          },
          {
            "trust": 0.2,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-nonios.shtml."
          },
          {
            "trust": 0.2,
            "url": "http://www.cisco.com/go/psirt."
          },
          {
            "trust": 0.2,
            "url": "http://www.cisco.com."
          },
          {
            "trust": 0.2,
            "url": "http://www.cisco.com/warp/public/687/directory/dirtac.shtml"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=108302060014745\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "https://kc.mcafee.com/corporate/index?page=content\u0026amp;id=sb10053"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=108506952116653\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "https://cwe.mitre.org/data/definitions/.html"
          },
          {
            "trust": 0.1,
            "url": "https://www.rapid7.com/db/vulnerabilities/tcp-seq-num-approximation"
          },
          {
            "trust": 0.1,
            "url": "https://github.com/gabrieljcs/ips-assessment-reports"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov"
          },
          {
            "trust": 0.1,
            "url": "https://www.exploit-db.com/exploits/24033/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/secunia_security_advisories/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/about_secunia_advisories/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/11440/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/4586/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/secunia_vacancies/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/15263/"
          },
          {
            "trust": 0.1,
            "url": "http://www.kb.cert.org/vuls/id/415294#systems."
          },
          {
            "trust": 0.1,
            "url": "http://www.uniras.gov.uk/vuls/2004/236929/index.htm\u003e."
          },
          {
            "trust": 0.1,
            "url": "http://www.kb.cert.org/vuls/id/498440)"
          },
          {
            "trust": 0.1,
            "url": "http://www.uniras.gov.uk/vuls/2004/236929/index.htm)"
          },
          {
            "trust": 0.1,
            "url": "http://www.cert.org/advisories/ca-2001-09.html\u003e),"
          },
          {
            "trust": 0.1,
            "url": "http://www.cymru.com/\u003e)."
          },
          {
            "trust": 0.1,
            "url": "http://www.cisco.com/univercd/cc/td/doc/cisintwk/ito_doc/bgp.htm\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.cisco.com/en/us/products/sw/iosswrel/"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc0793.txt."
          },
          {
            "trust": 0.1,
            "url": "http://www.cisco.com/en/us/products/sw/iosswrel/ps1835"
          },
          {
            "trust": 0.1,
            "url": "http://www.cisco.com/en/us/products/sw/iosswrel/ps1828/"
          },
          {
            "trust": 0.1,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-ios.shtml,"
          },
          {
            "trust": 0.1,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-nonios.shtml,"
          },
          {
            "trust": 0.1,
            "url": "http://www.cisco.com/en/us/products/sw/iosswrel/ps1835/"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc0793.txt"
          },
          {
            "trust": 0.1,
            "url": "http://www.qorbit.net/documents/junos-bgp-template.pdf\"\u003ehttp://www.qorbit.net/documents/junos-bgp-template.pdf"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org\"\u003ethe"
          },
          {
            "trust": 0.1,
            "url": "http://www.cymru.com/documents/ip-stack-tuning.html\"\u003ehttp://www.cymru.com/documents/ip-stack-tuning.html"
          },
          {
            "trust": 0.1,
            "url": "http://www.polycom.com/securitycenter\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.cymru.com/documents/secure-bgp-template.html\"\u003ehttp://www.cymru.com/documents/secure-bgp-template.html"
          },
          {
            "trust": 0.1,
            "url": "http://www.cymru.com/documents/secure-bgp-template.html\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc793.txt\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cve\"\u003ecve\u003c/a\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc2827.txt\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc3682.txt\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.osvdb.org\"\u003eopen"
          },
          {
            "trust": 0.1,
            "url": "http://www.uniras.gov.uk/vuls/2004/236929/index.htm\"\u003ehttp://www.uniras.gov.uk/vuls/2004/236929/index.htm\u003c/a\u003e\u003cbr\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc0793.txt\"\u003erfc"
          },
          {
            "trust": 0.1,
            "url": "http://www.niscc.gov.uk/aboutniscc/index.htm\"\u003ehttp://www.niscc.gov.uk/aboutniscc/index.htm\u003c/a\u003e\u003cbr\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc1323.txt\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.niscc.gov.uk/bgp%20filtering%20guide.pdf\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/internet-drafts/draft-ietf-tcpm-tcpsecure-00.txt\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.osvdb.org/displayvuln.php?osvdb_id=4030\"\u003e4030\u003c/a\u003e.\u003cbr\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.qorbit.net/documents/junos-bgp-template.pdf\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.niscc.gov.uk/images/newtitle.gif\""
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc1323.txt\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc3562.txt\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-nonios.shtml\"\u003ehttp://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-nonios.shtml\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.cymru.com/documents/secure-bgp-template.html\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=can-2004-0230\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc3562.txt\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.sans.org/y2k/egress.htm\"\u003ehttp://www.sans.org/y2k/egress.htm\u003c/a\u003e.\u003cbr\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.sans.org/y2k/egress.htm\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.niscc.gov.uk/bgp"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc2385.txt\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.polycom.com/securitycenter\u003c/a\u003e.\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.cymru.com/documents/ip-stack-tuning.html\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.niscc.gov.uk/bgp%20filtering%20guide.pdf\"\u003ehttp://www.niscc.gov.uk/bgp"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc1771.txt\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.uniras.gov.uk/uniras.asc\"\u003ehttp://www.uniras.gov.uk/uniras.asc\u003c/a\u003e.\u003cbr\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=can-2004-0230\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=can-2004-0230\"\u003ecan-2004-0230\u003c/a\u003e.\u003cbr\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc2385.txt\"\u003erfc"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc2385.txt\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc1323.txt\"\u003erfc"
          },
          {
            "trust": 0.1,
            "url": "http://www.checkpoint.com/techsupport/alerts/tcp_dos.html\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.seil.jp/en/ann/announce_en_20040421_01.txt\u003c/a\u003e.\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/internet-drafts/draft-ietf-tcpm-tcpsecure-00.txt\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc793.txt\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.jpcert.or.jp\"\u003ejpcert/cc\u003c/a\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc2827.txt\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc2827.txt\"\u003erfc"
          },
          {
            "trust": 0.1,
            "url": "http://www.iniche.com\"\u003ewww.iniche.com\u003c/a\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.osvdb.org/displayvuln.php?osvdb_id=4030\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.seil.jp/en/ann/announce_en_20040421_01.txt\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.qorbit.net/documents/junos-bgp-template.pdf\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.sans.org/y2k/egress.htm\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.osvdb.org/displayvuln.php?osvdb_id=4030\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.checkpoint.com/techsupport/alerts/tcp_dos.html\u003c/a\u003e.\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc1771.txt\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-ios.shtml\"\u003ehttp://www.cisco.com/warp/public/707/cisco-sa-20040420-tcp-ios.shtml\u003c/a\u003e\u003cbr\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc3682.txt\u003c/a\u003e\u003c/td\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc3562.txt\"\u003erfc"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/internet-drafts/draft-ietf-tcpm-tcpsecure-00.txt\"\u003ehttp://www.ietf.org/internet-drafts/draft-ietf-tcpm-tcpsecure-00.txt\u003c/a\u003e\u003cbr\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://www.cymru.com/documents/ip-stack-tuning.html\"\u003e"
          },
          {
            "trust": 0.1,
            "url": "https://www.juniper.net/support\"\u003ehttps://www.juniper.net/support\u003c/a\u003e."
          },
          {
            "trust": 0.1,
            "url": "http://www.jpcert.or.jp/at/2004/at040003.txt\"\u003ehttp://www.jpcert.or.jp/at/2004/at040003.txt\u003c/a\u003e.\u003c/font\u003e\u003c/i\u003e\u003cbr\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2004-0230\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://security.freebsd.org/\u003e."
          },
          {
            "trust": 0.1,
            "url": "http://www.freebsd.org/handbook/kernelconfig.html\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://security.freebsd.org/patches/sa-14:19/tcp.patch"
          },
          {
            "trust": 0.1,
            "url": "http://security.freebsd.org/patches/sa-14:19/tcp.patch.asc"
          },
          {
            "trust": 0.1,
            "url": "http://security.freebsd.org/advisories/freebsd-sa-14:19.tcp.asc\u003e"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2014-0230"
          },
          {
            "trust": 0.1,
            "url": "http://svnweb.freebsd.org/base?view=revision\u0026revision=nnnnnn\u003e"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#415294"
          },
          {
            "db": "VULHUB",
            "id": "VHN-8660"
          },
          {
            "db": "VULMON",
            "id": "CVE-2004-0230"
          },
          {
            "db": "BID",
            "id": "10183"
          },
          {
            "db": "PACKETSTORM",
            "id": "37558"
          },
          {
            "db": "PACKETSTORM",
            "id": "33143"
          },
          {
            "db": "PACKETSTORM",
            "id": "33160"
          },
          {
            "db": "PACKETSTORM",
            "id": "33159"
          },
          {
            "db": "PACKETSTORM",
            "id": "33152"
          },
          {
            "db": "PACKETSTORM",
            "id": "128284"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200408-159"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2004-000150"
          },
          {
            "db": "NVD",
            "id": "CVE-2004-0230"
          }
        ]
      },
      "sources": {
        "_id": null,
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#415294",
            "ident": null
          },
          {
            "db": "VULHUB",
            "id": "VHN-8660",
            "ident": null
          },
          {
            "db": "VULMON",
            "id": "CVE-2004-0230",
            "ident": null
          },
          {
            "db": "BID",
            "id": "10183",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "37558",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "33143",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "33160",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "33159",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "33152",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "128284",
            "ident": null
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200408-159",
            "ident": null
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2004-000150",
            "ident": null
          },
          {
            "db": "NVD",
            "id": "CVE-2004-0230",
            "ident": null
          }
        ]
      },
      "sources_release_date": {
        "_id": null,
        "data": [
          {
            "date": "2004-04-20T00:00:00",
            "db": "CERT/CC",
            "id": "VU#415294",
            "ident": null
          },
          {
            "date": "2004-08-18T00:00:00",
            "db": "VULHUB",
            "id": "VHN-8660",
            "ident": null
          },
          {
            "date": "2004-08-18T00:00:00",
            "db": "VULMON",
            "id": "CVE-2004-0230",
            "ident": null
          },
          {
            "date": "2004-04-20T00:00:00",
            "db": "BID",
            "id": "10183",
            "ident": null
          },
          {
            "date": "2005-05-29T20:22:44",
            "db": "PACKETSTORM",
            "id": "37558",
            "ident": null
          },
          {
            "date": "2004-04-23T05:59:41",
            "db": "PACKETSTORM",
            "id": "33143",
            "ident": null
          },
          {
            "date": "2004-04-22T07:16:00",
            "db": "PACKETSTORM",
            "id": "33160",
            "ident": null
          },
          {
            "date": "2004-04-22T07:14:00",
            "db": "PACKETSTORM",
            "id": "33159",
            "ident": null
          },
          {
            "date": "2004-04-22T02:04:00",
            "db": "PACKETSTORM",
            "id": "33152",
            "ident": null
          },
          {
            "date": "2014-09-17T15:58:15",
            "db": "PACKETSTORM",
            "id": "128284",
            "ident": null
          },
          {
            "date": "2004-08-18T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-200408-159",
            "ident": null
          },
          {
            "date": "2007-04-01T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2004-000150",
            "ident": null
          },
          {
            "date": "2004-08-18T04:00:00",
            "db": "NVD",
            "id": "CVE-2004-0230",
            "ident": null
          }
        ]
      },
      "sources_update_date": {
        "_id": null,
        "data": [
          {
            "date": "2006-05-01T00:00:00",
            "db": "CERT/CC",
            "id": "VU#415294",
            "ident": null
          },
          {
            "date": "2018-10-19T00:00:00",
            "db": "VULHUB",
            "id": "VHN-8660",
            "ident": null
          },
          {
            "date": "2018-10-19T00:00:00",
            "db": "VULMON",
            "id": "CVE-2004-0230",
            "ident": null
          },
          {
            "date": "2015-08-12T22:24:00",
            "db": "BID",
            "id": "10183",
            "ident": null
          },
          {
            "date": "2020-05-21T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-200408-159",
            "ident": null
          },
          {
            "date": "2015-01-22T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2004-000150",
            "ident": null
          },
          {
            "date": "2025-05-02T16:40:41.530000",
            "db": "NVD",
            "id": "CVE-2004-0230",
            "ident": null
          }
        ]
      },
      "threat_type": {
        "_id": null,
        "data": "remote",
        "sources": [
          {
            "db": "PACKETSTORM",
            "id": "33143"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200408-159"
          }
        ],
        "trust": 0.7
      },
      "title": {
        "_id": null,
        "data": "The Border Gateway Protocol relies on persistent TCP sessions without specifying authentication requirements",
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#415294"
          }
        ],
        "trust": 0.8
      },
      "type": {
        "_id": null,
        "data": "other",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-200408-159"
          }
        ],
        "trust": 0.6
      }
    }

    VAR-200810-0010

    Vulnerability from variot - Updated: 2026-03-09 22:39

    The TCP implementation in (1) Linux, (2) platforms based on BSD Unix, (3) Microsoft Windows, (4) Cisco products, and probably other operating systems allows remote attackers to cause a denial of service (connection queue exhaustion) via multiple vectors that manipulate information in the TCP state table, as demonstrated by sockstress. Part of the Transmission Control Protocol (TCP) specification (RFC 1122) allows a receiver to advertise a zero byte window, instructing the sender to maintain the connection but not send additional TCP payload data. The sender should then probe the receiver to check if the receiver is ready to accept data. Narrow interpretation of this part of the specification can create a denial-of-service vulnerability. By advertising a zero receive window and acknowledging probes, a malicious receiver can cause a sender to consume resources (TCP state, buffers, and application memory), preventing the targeted service or system from handling legitimate connections. Transmission Control Protocol (TCP) Multiple implementations of service disruption (DoS) Vulnerabilities exist. RFC793 It is prescribed by Transmission Control Protocol (TCP) Implementation of service disruption due to misuse of available resources after connection establishment (DoS) Vulnerabilities exist.Service operation disrupted by a remote third party (DoS) There is a possibility of being attacked. The core TCP/IP protocol is prone to multiple remote denial-of-service vulnerabilities. The issues are tracked by Cisco Bug IDs CSCsv04836, CSCsv07712, CSCsv66169, CSCsv02768, CSCsv08325, and CSCsv08579. These issues are reported to affect multiple vendors' implementations of the TCP/IP stack. ----------------------------------------------------------------------

    Do you have VARM strategy implemented?

    (Vulnerability Assessment Remediation Management)

    If not, then implement it through the most reliable vulnerability intelligence source on the market.

    Implement it through Secunia.

    For more information visit: http://secunia.com/advisories/business_solutions/

    Alternatively request a call from a Secunia representative today to discuss how we can help you with our capabilities contact us at: sales@secunia.com


    TITLE: Windows 2000 TCP/IP Window Size Denial of Service Vulnerabilities

    SECUNIA ADVISORY ID: SA36597

    VERIFY ADVISORY: http://secunia.com/advisories/36597/

    DESCRIPTION: Two vulnerabilities have been reported in Microsoft Windows 2000, which can be exploited by malicious people to cause a DoS (Denial of Service).

    1) An error in the TCP/IP processing can be exploited to cause a system to stop responding to new requests by flooding it using specially crafted packets with a TCP receive window size set to a very small value or zero.

    2) An error in the TCP/IP processing can be exploited to cause connections to hang indefinitely in a FIN-WAIT-1 or FIN-WAIT-2 state. This can be exploited to cause a system to stop responding to new requests by flooding it using specially crafted packets with a TCP receive window size set to a very small value or zero.

    SOLUTION: According to the vendor, no patches will be made available as it would require re-architecting a significant amount of the OS.

    PROVIDED AND/OR DISCOVERED BY: 1) The vendor credits Jack C. Louis, Outpost24. 2) The vendor credits Felix Lindner, Recurity Labs.

    ORIGINAL ADVISORY: MS09-048 (KB967723): http://www.microsoft.com/technet/security/Bulletin/MS09-048.mspx


    About: This Advisory was delivered by Secunia as a free service to help everybody keeping their systems up to date against the latest vulnerabilities.

    Subscribe: http://secunia.com/advisories/secunia_security_advisories/

    Definitions: (Criticality, Where etc.) http://secunia.com/advisories/about_secunia_advisories/

    Please Note: Secunia recommends that you verify all advisories you receive by clicking the link. Secunia NEVER sends attached files with advisories. Secunia does not advise people to install third party patches, only use those supplied by the vendor.


    Unsubscribe: Secunia Security Advisories http://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org


    . -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1

    SUPPORT COMMUNICATION - SECURITY BULLETIN

    Document ID: c01923093 Version: 1

    HPSBMI02473 SSRT080138 rev.1 - Cisco Catalyst Blade Switch 3020/3120, Remote Denial of Service (DoS)

    NOTICE: The information in this Security Bulletin should be acted upon as soon as possible.

    Release Date: 2009-11-17 Last Updated: 2009-11-17

    Potential Security Impact: Remote execution of arbitrary code, Denial of Service (DoS)

    Source: Hewlett-Packard Company, HP Software Security Response Team

    VULNERABILITY SUMMARY A potential vulnerability has been identified with the Cisco Catalyst Blade Switch 3020/3021. The vulnerability could be exploited remotely to create a Denial of Service (DoS).

    References: CVE-2008-4609, Cisco Security Advisory: TCP State Manipulation Denial of Service Vulnerabilities in Multiple Cisco Products(cisco-sa-20090908-tcp24)

    SUPPORTED SOFTWARE VERSIONS*: ONLY impacted versions are listed. Cisco Catalyst Blade Switch 3020 for c-Class BladeSystem running firmware earlier than v12.2(50) Cisco Catalyst Blade Switch 3120G and Cisco Catalyst Blade Switch 3120X for HP running firmware earlier than v12.2(50)

    BACKGROUND

    CVSS 2.0 Base Metrics

    Reference Base Vector Base Score CVE-2008-4609 (AV:N/AC:M/Au:N/C:N/I:N/A:C) 7.1 =========================================================== Information on CVSS is documented in HP Customer Notice: HPSN-2008-002

    RESOLUTION

    HP has provided firmware updates to resolve this vulnerability.

    Product Firmware Version

    Cisco Catalyst Blade Switch 3020 for c-Class BladeSystem 12.2(50) SE1 or subsequent

    Cisco Catalyst Blade Switch 3120G and Cisco Catalyst Blade Switch 3120X for HP 12.2(50) SE1 or subsequent

    To Locate the Firmware Update

    Browse to http://www.hp.com and do the following:

    Select "Support & Drivers" In Step 1 select "Download drivers and software (and firmware)" In Step 2 enter "Cisco Catalyst Blade Switch" Click on "Go" Select the desired product Select the desired Windows operating system Click on "Firmware - Blade Infrastructure"

    PRODUCT SPECIFIC INFORMATION None

    HISTORY Version:1 (rev.1) - 17 November 2009 Initial release

    Third Party Security Patches: Third party security patches that are to be installed on systems running HP software products should be applied in accordance with the customer's patch management policy.

    Support: For further information, contact normal HP Services support channel.

    Report: To report a potential security vulnerability with any HP supported product, send Email to: security-alert@hp.com It is strongly recommended that security related information being communicated to HP be encrypted using PGP, especially exploit information. To get the security-alert PGP key, please send an e-mail message as follows: To: security-alert@hp.com Subject: get key Subscribe: To initiate a subscription to receive future HP Security Bulletins via Email: http://h30046.www3.hp.com/driverAlertProfile.php?regioncode=NA&langcode=USENG&jumpid=in_SC-GEN__driverITRC&topiccode=ITRC On the web page: ITRC security bulletins and patch sign-up Under Step1: your ITRC security bulletins and patches -check ALL categories for which alerts are required and continue. Under Step2: your ITRC operating systems -verify your operating system selections are checked and save.

    To update an existing subscription: http://h30046.www3.hp.com/subSignIn.php Log in on the web page: Subscriber's choice for Business: sign-in. On the web page: Subscriber's Choice: your profile summary - use Edit Profile to update appropriate sections.

    To review previously published Security Bulletins visit: http://www.itrc.hp.com/service/cki/secBullArchive.do

    • The Software Product Category that this Security Bulletin relates to is represented by the 5th and 6th characters of the Bulletin number in the title:

    GN = HP General SW MA = HP Management Agents MI = Misc. 3rd Party SW MP = HP MPE/iX NS = HP NonStop Servers OV = HP OpenVMS PI = HP Printing & Imaging ST = HP Storage SW TL = HP Trusted Linux TU = HP Tru64 UNIX UX = HP-UX VV = HP VirtualVault

    System management and security procedures must be reviewed frequently to maintain system integrity. HP is continually reviewing and enhancing the security features of software products to provide customers with current secure solutions.

    "HP is broadly distributing this Security Bulletin in order to bring to the attention of users of the affected HP products the important security information contained in this Bulletin. HP recommends that all users determine the applicability of this information to their individual situations and take appropriate action. HP does not warrant that this information is necessarily accurate or complete for all user situations and, consequently, HP will not be responsible for any damages resulting from user's use or disregard of the information provided in this Bulletin. To the extent permitted by law, HP disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose, title and non-infringement."

    Copyright 2009 Hewlett-Packard Development Company, L.P. Hewlett-Packard Company shall not be liable for technical or editorial errors or omissions contained herein. The information provided is provided "as is" without warranty of any kind. To the extent permitted by law, neither HP or its affiliates, subcontractors or suppliers will be liable for incidental,special or consequential damages including downtime cost; lost profits;damages relating to the procurement of substitute products or services; or damages for loss of data, or software restoration. The information in this document is subject to change without notice. Hewlett-Packard Company and the names of Hewlett-Packard products referenced herein are trademarks of Hewlett-Packard Company in the United States and other countries. Other product and company names mentioned herein may be trademarks of their respective owners. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux)

    iEYEARECAAYFAksEDAMACgkQ4B86/C0qfVm87gCgliWdpIKldzOKHRvJA5r9gR4Z ge0AoMu3ueCbIB4y3HUmT/jReUzE4jym =uBei -----END PGP SIGNATURE-----

    Show details on source website

    {
      "affected_products": {
        "_id": null,
        "data": [
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "cisco",
            "version": "12.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "cisco",
            "version": "12.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "cisco",
            "version": "12.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "cisco",
            "version": "12.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 2.1,
            "vendor": "cisco",
            "version": "12.1"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 1.8,
            "vendor": "oracle",
            "version": "10"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 1.8,
            "vendor": "oracle",
            "version": "8"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 1.8,
            "vendor": "oracle",
            "version": "9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "cisco",
            "version": "12.0\\(9\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "cisco",
            "version": "12.0\\(5\\)wc2b"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "12.2xv"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "12.1xx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "12.1xv"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "12.4xv"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "12.3xx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "12.0xv"
          },
          {
            "_id": null,
            "model": "catos 8.4 glx",
            "scope": null,
            "trust": 1.2,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios xe",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "rtx1100",
            "scope": null,
            "trust": 1.1,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "ios xe",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "2.2"
          },
          {
            "_id": null,
            "model": "pix/asa",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "8.1"
          },
          {
            "_id": null,
            "model": "rtx1500",
            "scope": null,
            "trust": 1.1,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rtx2000",
            "scope": null,
            "trust": 1.1,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt57i",
            "scope": null,
            "trust": 1.1,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "pix/asa",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "rtv700",
            "scope": null,
            "trust": 1.1,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt300i",
            "scope": null,
            "trust": 1.1,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "pix/asa",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "7.1"
          },
          {
            "_id": null,
            "model": "pix/asa",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "cisco",
            "version": "7.2"
          },
          {
            "_id": null,
            "model": "rtx1000",
            "scope": null,
            "trust": 1.1,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt250i",
            "scope": null,
            "trust": 1.1,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2bc"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "2.8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(23\\)sx"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(14\\)t4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(9a\\)"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "6.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)xk2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yi"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(22\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)t4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)yi3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)yk2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)xm4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(19\\)sl4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.23"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12.05\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(26\\)s1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)ja1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(15\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(21\\)s1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xj"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)xf"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.1.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(4\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1ec"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xc"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.12.12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1da"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xk2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.48"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(19\\)ew"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(4\\)db1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xl"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(18\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)eo1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(27b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3a\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.13"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zp"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)b"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.3"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "7.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)sec2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.23.14"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1ct"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(14\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(2\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(8\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)ja5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)t4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8b\\)ex4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(19\\)sp"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xk"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(18\\)s5a"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "2.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)xv3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(9\\)s8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)bc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)ea1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1ey"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(9\\)p"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "3.8"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.34"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)ey3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.24"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(10.5\\)ec"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(4\\)xa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yf2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1az"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)ya11"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.21.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xg"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(21\\)st7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)xs"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xi1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xl"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.53"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)xk2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(2\\)xc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(7\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)ys"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)mb13b"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)xf1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3na"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5e\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.43"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(8\\)bc1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(10\\)s8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(18b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)sed"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(23\\)e1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)mc1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.15"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(13\\)ca"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0sx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(2\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(10\\)ec"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xb3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)ja1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(27\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(8\\)yw3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.55"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.41"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.20"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3a\\)xi8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6\\)ea2a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)zl"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2e"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7.7\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(25\\)s1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1ew"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(10\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2pi"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)jk"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.23"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(13a\\)bc1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)e5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)yf2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(5a\\)b"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.8"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(1a\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.13"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12m\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)zj"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.22"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(17\\)sl9"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.6"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.43"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.40"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)db2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)xr4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.39"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(12\\)s4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xs"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)xy6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)ya1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(11\\)ea1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13.03\\)b"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2f"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xk"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)xk3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.19.4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.30"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12\\)da3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.52"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xt"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)ew"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)xw"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xk1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(2b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(26\\)p2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.34.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(14\\)yu"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.8.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)ec1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(27\\)sbc"
          },
          {
            "_id": null,
            "model": "bsd os",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsdi",
            "version": "1.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(25.4\\)s1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(19\\)s4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3ya"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)ew3"
          },
          {
            "_id": null,
            "model": "bsd os",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsdi",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)yr"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(7c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)su2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xu2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)s10"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.50"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)bc1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xd2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3\\(8\\)t1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(9\\)e"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.19"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.36"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.13"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8b\\)e9"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.19"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.35"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4mr"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.13"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(28\\)s5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(14\\)e10"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(3\\)t2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.15"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xd"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(11\\)ec"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xd"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)b1"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.2.1"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "3.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5a\\)e"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(29a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(19\\)e1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(4\\)e3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.19.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0sv"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2so"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(21\\)s4a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(16\\)bx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "10.3\\(4.3\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.12"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.18.7"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.19"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(17\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)s3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)s15"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(12c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(11\\)yv"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)mb13c"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xi"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)zj"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)t2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)ewa3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)xr"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(22\\)ea5a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xv"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8b\\)e8"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.9"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.40"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13a\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.32"
          },
          {
            "_id": null,
            "model": "bsd os",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsdi",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)t8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)ew2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3\\)xi"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.13.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)ey"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)e"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(25\\)w5\\(27c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1eo"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1gb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(14\\)t5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(2\\)xf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(2\\)t2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(14\\)t2"
          },
          {
            "_id": null,
            "model": "bsd os",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsdi",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1yb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yc"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.25"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)bc1"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.3.1"
          },
          {
            "_id": null,
            "model": "catalyst blade switch 3020",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(50\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(8\\)sa5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(8\\)yd"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(15\\)ca"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.47"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(21\\)st"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)sxd5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(14\\)yt"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)ys"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "2.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(7b\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.16"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.10"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1ax"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "10.3\\(19a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0sc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xs"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "2.9"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)wc13"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)ew4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(26\\)w5\\(28a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(13\\)w5\\(19c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)t6"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "1.1.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1yc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(21\\)s7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(3h\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)tpc11a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3ym"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(8a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)wc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(17d\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)yb4"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.23"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)yi"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(16\\)b1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(25\\)w5-27d"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(6a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2seb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(9\\)ex"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(1\\)xb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)t4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(13\\)ia"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3ys"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(17\\)st5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(15\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(22\\)eb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)zj1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yh"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.25"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(10\\)da2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5c\\)ex"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)b4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)ys_1.2\\(1\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.0\\(22a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(3\\)xe"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.9"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.14.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)wc9a"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.2.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(19\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(25\\)w5\\(27\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(17\\)cc"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.33.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0sp"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)t6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(10.5\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xf"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.1.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xg"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(16\\)b"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(16\\)aa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(17d\\)sxb10"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(9e\\)"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.2.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(27\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2fx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(10a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yt"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.51"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)xv4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.57"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(20a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yz"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0st"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)xh"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)yb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6\\)e12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)jx"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xd"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xy"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.34"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.58"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(2b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1ya"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "3.0.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(19\\)e6"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)xe4"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(18\\)sl"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3\\)xt3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yh3"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.2.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yj"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(4\\)f1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sz"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xh"
          },
          {
            "_id": null,
            "model": "windows server 2008",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3da"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xs"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(23a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2bc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(10\\)ex"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)mc2e"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(26\\)p5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3\\(1\\)ed"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2gs"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(3\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xb"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.25"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(8.3\\)sc"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(27b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(1a\\)t1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1m"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)bc2h"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(24\\)sv1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(21\\)sx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xd"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(4\\)db2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6\\)ey"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "10.3\\(3.3\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xk3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xn"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(2\\)t3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.16"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.21.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1.4\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)e7"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.33.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3\\)xp4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3b\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.11"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)t4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(14\\)e9"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.37"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)sz1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xm"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)t7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yn"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(4\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(12\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xt3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.28"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(3e\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.26"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2.2\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xm"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)mb3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.52"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)yf"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "2.0.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(14\\)s7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(3d\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.2"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "2.0.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(26\\)s6"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.18.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2f"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)ja1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xm"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(23\\)s5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)xv"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)yg2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)ewa"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.22.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(10\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(4\\)xz"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(17a\\)sxa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(12\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1.1\\)pi"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(10\\)w5\\(18f\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)s2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xu"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8a\\)ew"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.33"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.26"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6\\)ea2c"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(24\\)s2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(11\\)t9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(15a\\)p"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(3d\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8\\)aa1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.11"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.46"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1aa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xj1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12\\)da9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(17d\\)sxb8"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.3.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)bx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3\\(2\\)xa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(2\\)xg"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(21\\)s5a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)t7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)sxd1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xl"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(1\\)dc2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(20\\)st7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(13\\)aa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12h\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(13\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)bc2f"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)sxf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(5b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)t8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1ex"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.48"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)e1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.34.2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.11.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3\\(1\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(7a\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.18"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)yi1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(1\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14.5\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.11.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)ew1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.49"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(16\\)ia"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)ex2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)se"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.17"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(12a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(18\\)s"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sbc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3ja"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.15"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(15\\)aa"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.41"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zq"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(36\\)cc4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)sxd7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(2\\)t1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xj"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1ye"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(6b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(28a\\)ia"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3a\\)t7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)ewa1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.6"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.47"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12\\)da8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(26\\)e3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xb14"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yx"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.19"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0dc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13.4\\)e"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.33"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)zg"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)za2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(15b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)sl1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(11\\)yu"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(24\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.3"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2by"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(16a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(1\\)t"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xw"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(5\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.14"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(27\\)s"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.5.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xr"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(4\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)zk"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(17f\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xl"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)xa4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)xe"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(7a\\)e6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(8\\)s1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(10\\)w5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)xe"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xp"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.46"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)t3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(7\\)da"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)ja"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.11"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(19\\)st"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(12c\\)ec"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.15.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(11\\)yz2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3\\)xp"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1yd"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)t5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(16\\)s"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.99"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.10"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(23\\)s2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(28\\)w5-32a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(17b\\)sxa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(28\\)s3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(22\\)ea4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3db"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)ew5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sg"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)wc9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(1\\)dc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)ez"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(26\\)sv"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(22\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.28"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "8.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)sxe1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(8\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xi"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.22.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xw"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.10"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)bx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)xs"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.23.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)sw"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.63"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "10.0"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.1.0"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": null
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.20"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sv"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.0.12\\(a\\)bt"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7.4\\)s"
          },
          {
            "_id": null,
            "model": "windows 2000",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.17"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(13\\)wt6\\(1\\)"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "5.2.1"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.25"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.15"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)e3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(7\\)aa"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(9\\)e3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(20\\)aa4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2ewa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(15\\)sc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xh2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(19\\)sl"
          },
          {
            "_id": null,
            "model": "dragonflybsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "dragonflybsd",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(4\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(9\\)aa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)xr"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)e17"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)yk"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1d\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(28\\)w5-30b"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(1\\)w"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(12c\\)ew4"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)xi3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xu"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(18\\)w5\\(22b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(10\\)ey"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(17\\)s7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(19\\)e"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)cz3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(22\\)e1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(1\\)ex"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.59"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.4.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12.05\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(2\\)xe"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(19\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(26\\)w5\\(28\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)ya"
          },
          {
            "_id": null,
            "model": "dragonflybsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "dragonflybsd",
            "version": "1.10.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3\\(11\\)b"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(1b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)s7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(8\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xr"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)xl4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(11a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)sxd6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(26\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)jk2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.39"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.0\\(12\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(36\\)ca4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(16\\)p"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1dc"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.1.7.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(17a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)t1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(6\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1yh"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)t17"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.68"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.9"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.11.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)ja"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)ec"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.45"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yu"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xh"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xd"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.51"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(24.2\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)xr3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.13"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8\\)ea2b"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(7\\)ca"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.0\\(x\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.27"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xj"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(23f\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)s4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)t1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.14.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(11b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)ze"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yv"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(21\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)ja1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(9a\\)bc7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)ew"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.16"
          },
          {
            "_id": null,
            "model": "bsd os",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsdi",
            "version": "4.0.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(11\\)s6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(17\\)ct"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(14\\)e4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(7\\)cx"
          },
          {
            "_id": null,
            "model": "bsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsd",
            "version": "4.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)xe3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.49"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(24b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xh"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(17\\)s4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(8\\)t10"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(24c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(4\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(5b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "4.1.1"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "0.4_1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(14\\)ym4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(17d\\)sx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(4\\)xm4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2jx"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.19"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.4.2"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(4\\)t2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2wa3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.13.3"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.26"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xp"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xp"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.21.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(13a\\)bc"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.11"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8b\\)e20"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)xr2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(3b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)yd"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)e12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)xc3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zm"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)t"
          },
          {
            "_id": null,
            "model": "catalyst blade switch 3120x",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(50\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)xc1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.22.16"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)ya2"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)t8"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.20"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.46"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)yw"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.33"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(5a\\)b5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xk"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.18.8"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.16"
          },
          {
            "_id": null,
            "model": "midnightbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "midnightbsd",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(20.4\\)sp"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)za"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(1\\)xa3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.29"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(1\\)e5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xi"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)s9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(2\\)xf5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)xc4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(22\\)sy"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)xa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(9\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1eu"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1ca"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.11.9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)zn"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.21.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2sa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xm"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(26e\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(14\\)st"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sea"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)xe3"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.10"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.34"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2ez"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(14\\)e1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(12e\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0sz"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)yg3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(9\\)xa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(5\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yh"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)yn"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(16\\)st"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)xk"
          },
          {
            "_id": null,
            "model": "bsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsd",
            "version": "4.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(8\\)tpc10a"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.18"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)zl"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(2\\)t4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.18"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)bz"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(14\\)yq4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)xu"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)xi4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.18.5"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.6"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.11"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(28\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(1\\)db2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)by2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.14.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)s6"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.13.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0da"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "3.5"
          },
          {
            "_id": null,
            "model": "windows xp",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "5.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sxb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(1\\)st"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.23"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2ys"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(9a\\)bc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(3.2\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zn"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.18.0"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "3.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)se3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)b"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(19\\)s2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(12c\\)ev01"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(5\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(14\\)yq"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(3.3\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)ew2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.17"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(10a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)xs"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(11\\)ja1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.12.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(20\\)sx"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1yj"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)zh3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)bc1f"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)ya8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xe4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1eb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(6\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(30\\)s1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.18"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.35.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(14\\)ea1"
          },
          {
            "_id": null,
            "model": "dragonflybsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "dragonflybsd",
            "version": "1.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)xl3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2p"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "10.3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.15.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3\\(8\\)db2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(21\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(8.9\\)sa6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(23\\)s4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)wc11"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(10\\)aa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xe"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.16"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)t4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1cc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3\\(11b\\)t2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(16\\)st1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.0\\(22b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(5d\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(1\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)t8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xn"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xk"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.22"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)xd1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xk"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13e\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8a\\)ew1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.12.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(8\\)yy3"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.31"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(10\\)bc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xl"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xh"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0ev"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xc1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.14"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)cx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)yl"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.38"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(6\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.15.11"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.15"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(14\\)s8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "8.2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(4.3\\)t"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.23.4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.67"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.20"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(5a\\)"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.0\\(18\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)s13"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6.5\\)ec3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)ya7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(12c\\)e7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)xs1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(18\\)s5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(7\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)ewa2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.35"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(9\\)ea"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(36\\)cc2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)xu2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xu"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yp"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(30\\)s2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8\\)ea"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.12.1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.32"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(15\\)sl"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(4\\)db"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.30"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(6f\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)ja"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(10e\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)ew3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(4a\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1b\\)da1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(3.4\\)bp"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.18"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(15\\)s"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.13.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(23.6\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(19\\)s2a"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.11"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)s8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xr"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "3.3"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.6.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(17\\)sl6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xw"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(15\\)s6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)mc2c"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zg"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(2a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(22\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)sv"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xq"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)t9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1ez"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)xl"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xi2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8\\)"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1yf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xj"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(14\\)yu1"
          },
          {
            "_id": null,
            "model": "bsd os",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsdi",
            "version": "3.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(26b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2ya"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)jk1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.60"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(10\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)sxe3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)dc1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(16\\)s8a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(19\\)fc1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(4\\)ea1e"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(17d\\)sxb7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)sxe"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(24\\)sv"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xa"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.28"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xu"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.43"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.18.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(11a\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.16"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(16\\)w5\\(21\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(31\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.15"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.38"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.14.4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.10"
          },
          {
            "_id": null,
            "model": "trustedbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "trustedbsd",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1yi"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6\\)ez1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(10\\)s3b"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2ym"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(26\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)dd3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.62"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8b\\)e16"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.24"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xe"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(11\\)yp1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.15.6"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.40"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)xv5"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.12.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(10g\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.36"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)ay"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.5.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)xd4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)dx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)sw4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(26a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2cz"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)e13"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3bw"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.0.1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.65"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xa"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.5"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)yg"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)xk"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)sc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(23\\)e4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2mb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zd"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)ya1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yz"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.25"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(8\\)ja"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.11.5"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.5"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3jec"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.15.1"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xg"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1ea"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.54"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)xw1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0wc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xq"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)t8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sy"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)xr6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sec"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.45"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.23.9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(23a\\)bc1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(9\\)ia"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)ys1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.19"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.31"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2da"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(17\\)zd3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.15.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(9\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yd6"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.33"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.21"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.41"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(10c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)bc1a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(4\\)xaf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)sv3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2x"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)xg5"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.5"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.36"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xg"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(8\\)sa3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2ey"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)t1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)wx5\\(15a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(27\\)sv1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(2\\)xa"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.37"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(10\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)eo3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xh"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)t15"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(26\\)sv1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)za8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)xl"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.14"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "3.4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.6"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "5.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12g\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.26"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)xa5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1ev"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(18\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)yh"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12c\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.23"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(7b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6\\)ea2b"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sxf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1aa"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.9"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.50"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(23\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xg5"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.36"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)eo1"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)wc3b"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yy"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)zd3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)sz2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(1c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)xc2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xz"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)xe2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.44"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.22"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.24"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3\\(11b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3\\)dc2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.3"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.1.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3\\(1\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(11b\\)e14"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)s4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)dc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3tpc"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "6.3"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.3.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(28a\\)ct"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(2\\)xf4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)ewa4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2bw"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)sg"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)yf4"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.30"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.18.2"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "2.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)s1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)bx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(14\\)yq3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yj"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)yj"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(31\\)s1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yr"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.0.5"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.19.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12.02\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(26\\)e1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)seb3"
          },
          {
            "_id": null,
            "model": "bsd os",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsdi",
            "version": "4.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xt"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2mx"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "1.3.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2ye"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3\\(7\\)db1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0db"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.33.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(11\\)bc3c"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.13"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2tpc"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(20\\)w5\\(22b\\)"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.5.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(3.6\\)w5\\(9.0.5\\)"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.1.1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.29"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.4"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.6.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xu"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.66"
          },
          {
            "_id": null,
            "model": "bsd os",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsdi",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(23\\)sw"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)xe"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yg"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6.5\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yf4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.33.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(19a\\)"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "3.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3\\)xq"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.14"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(2\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xz"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)jk5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(5\\)ca1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.22"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.11.10"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)t15"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(16\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)fy"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)zj2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.69"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2ca"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yd"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.11"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(14.5\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(14a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)t12"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.15"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yr"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)zc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "10.3\\(16\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yi"
          },
          {
            "_id": null,
            "model": "windows server 2003",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.20"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xi"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)xn1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(19\\)b"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(5c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)t9"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.10"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yc1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1e"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)bc2i"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(2\\)xf"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "2.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)t3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sw"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(17\\)sl"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xi"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(9\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.31"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(11\\)t8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)xy4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(6\\)t1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(13\\)s8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)ja1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)zj3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(23\\)sz"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(24\\)s1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(6c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(17\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.22.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1ga"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(12b\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.28"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(7\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2ze"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3\\(11d\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(24\\)s4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3b"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.29"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xg"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.12.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xk"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xt"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(36\\)ca2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(10\\)e4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(11\\)t3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6\\)ea2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.6"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.21"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(15\\)s3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yq"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(3\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(11\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(19\\)st2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5.3\\)wc1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2n"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2wa4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)ya10"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.32"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(7\\)ec"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2cx"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)da1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15.1\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(13a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(10d\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(13b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(2\\)t8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(15\\)ia"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(22\\)s4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.11"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(14\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2dd"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(11b\\)e"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)xr2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.22"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(16\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(8\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)eu"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(7\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6\\)ea1a"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.38"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yh"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(7.4\\)s"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.17"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.11.3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.24"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.6.1"
          },
          {
            "_id": null,
            "model": "catalyst blade switch 3120",
            "scope": "lt",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(50\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(16\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.48"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(5a\\)b2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xh"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2pb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(12\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(20\\)sp1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)zk"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(28\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(8\\)yw2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.32"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(28c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xq1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)b2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)zh8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(18.4\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(17a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sxd"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.25"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(23\\)sv1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(22\\)ea4a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xn"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "1.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(19\\)ew3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yq"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(4\\)f"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)sy1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)mc1"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)sw4a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)mx1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xq"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "3.9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(28\\)w5\\(31a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4md"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.27"
          },
          {
            "_id": null,
            "model": "bsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsd",
            "version": "4.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yb5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yg"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.15.4"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "3.5.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(8\\)yy"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)wc3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18.2\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.61"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(31\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0wx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)t12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)yf3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xq"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2bz"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)ey2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2ja"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(27\\)s1"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "3.99.15"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(7\\)da3"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "3.2"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "1.1.5.1"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.2.2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.64"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.23.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5.4\\)wc1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xe"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(6e\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(9d\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(11.5\\)e"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(30\\)s1"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.2.5"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.14.1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "1.2.0"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)zd"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.27"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(10\\)w5\\(18g\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.24"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.12.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)t9"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.21"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(27\\)sv"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(10\\)ec1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(19\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sh"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.37"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2jk"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.11.12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(19a\\)gs6"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.30"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)db1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.10"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.35"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.17"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.23.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(21\\)s6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(19\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2cy"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1.1\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)zf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(13a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(4\\)dc2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4sw"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.13"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8\\)ea1b"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.27"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(4\\)dc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3ha"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)t11"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(18\\)st1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "10.3\\(3.4\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)mb12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yk"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)xy5"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.31"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.10"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.14"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)sy"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.0\\(17\\)bt"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.26"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(19\\)gs0.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xk"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)fx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yu"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.21"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(19.3\\)e"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1ia"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3\\)db1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)ya"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xd1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(20\\)st6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)t1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.11"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xt"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(27\\)sv2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(22\\)s5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)xd3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)ewa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "10.3\\(4.2\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.20"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0sy"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(6d\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.22.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(16.5\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xa1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(11\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.23.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(14\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)ea1a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(22\\)sv1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(22\\)ea6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yd"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "4.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(12a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yo"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(11b\\)e12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)ea1c"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(7a\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.28"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "3.7"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.21"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.45"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "4.1.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3\\)xt"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(14\\)gs2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)ec2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xj"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "2.0.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xt"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)s9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(23\\)s6"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(9a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)zl1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.24"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.26"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)t2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(1\\)xe"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(20\\)st2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)zd4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.44"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.34"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.49"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zi"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.11"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.44"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "2.1.1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.11.2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.22.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)sx1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(9a\\)bc6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xg1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.30"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)xs2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(11\\)e"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.27"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xk4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xt"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(23\\)s3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(7a\\)ey"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zj"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.2.8"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.37"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xg"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yl"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.50"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6\\)ea1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)zo"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1t"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.39"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xy"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(7\\)da2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(4\\)xe1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3\\(11c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8b\\)e15"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(11\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(1\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.9"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.6.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(4\\)mr"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.14.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.14"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.34"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.7"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xn"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.23"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3bc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(21a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xb15"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(26\\)eb1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)xe2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(4\\)xz7"
          },
          {
            "_id": null,
            "model": "bsd os",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsdi",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3jk"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8\\)e"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(2\\)mr"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.0"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12.05\\)s"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)xm"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(16.06\\)s"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "4.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(16\\)s8"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.31"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)t14"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(16\\)sc3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zo"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(3d\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)t"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.1.132"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(9\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xw"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.27"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)ewa3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3aa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yd2"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.4.3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.47"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2b"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8b\\)e18"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(7a\\)ey3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(8\\)p"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xb"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)xn"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(27\\)sv1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yi1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)ya9"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2mc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)s8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.0\\(17\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(5\\)b1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.18.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)t1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(18\\)s7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(14\\)yt1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3j"
          },
          {
            "_id": null,
            "model": "bsd os",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsdi",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(3\\)t2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(21\\)s3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.33"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)sy03"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3jx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yn"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.39"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(21b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(14\\)yq1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(19\\)st6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)mx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)sw"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "3.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)t5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(28c\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(2\\)xb2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6a\\)"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.2.6"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.22"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(8.2\\)sa6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(22\\)ea6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(17\\)st1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(30\\)s4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(12\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(11\\)st4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(12b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(28d\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(3\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0wt"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)seb"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "1.2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.14"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yw"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.7"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)dc2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)s1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)sec1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)t9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)eu1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5a\\)e"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(17d\\)sxb"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.23.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)se"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(16.1\\)b"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.29"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(2\\)mr1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xf"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.22"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)t2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(24\\)s6"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "2.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)s14"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.11.1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.42"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(18\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)t9"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.12.22"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)so4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)t16"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yb4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.21"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(15b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)xm7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0w5"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.18"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3jeb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)t3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.56"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(11\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1ay"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3a\\)e8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)xq"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(4\\)xm1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5.2\\)xu"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)e2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(15\\)bc1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(14\\)w5\\(20\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xd"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1x\\(l\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(15\\)s7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)eu2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)ew2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(21\\)sl"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.24"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(10\\)s7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(14\\)st3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sxe"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.42"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xn"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(11\\)t2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.15.5"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(21a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(5f\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8a\\)ex"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.15"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3ma"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)sw3a"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(17\\)st8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(8\\)zb7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(21\\)st6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(24\\)s5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xq"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(12\\)s3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(05\\)wc8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4xw"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.18"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xg2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(8.0.2\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2se"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.13.4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.14"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)xi7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2ex"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.19.3"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yk"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12i\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xb11"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(22\\)s"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.35"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(16\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yd"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1cx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)eo"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(4\\)xe"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3a\\)t4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6\\)e8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(6.8\\)t1a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(8\\)yg1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(14\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yt"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)yk1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(19\\)ec"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(20\\)sp"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)e3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(11\\)yx1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(9a\\)bc2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.10"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(20\\)sl"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(17\\)a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(3a\\)e7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(2\\)e1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5c\\)e12"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2xa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14.5\\)t"
          },
          {
            "_id": null,
            "model": "bsd os",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsdi",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.23"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.14.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xj"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(22\\)ea3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yw"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(4\\)xm"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)yc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)ey"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(13\\)s6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(9.4\\)da"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(5\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(17\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)t9"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.29"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zh"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(1\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)wc2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.53"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8a\\)e"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(3i\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(9\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)by"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(2\\)xb"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.8.1.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)sz"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(26b\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(22\\)s2"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.35"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xe"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zl"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.21"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(16\\)sc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xh3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)ja"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2ew"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2eu"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xr"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.1\\(24a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xm"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1sec"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)t16"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(10\\)e"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "1.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)wc5a"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.32"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.5.8"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.18.3"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "3.0.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4\\(3a\\)"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "bsd os",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsdi",
            "version": "2.0.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(18\\)sxd4"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.23.7"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(16f\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(22\\)e3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)seb2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(1\\)xd"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(24\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)ew4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)sv2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(6.8\\)t0a"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)xv"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(12.02\\)s"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)ew"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(14\\)s"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(1\\)db"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(11\\)yf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xr"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(4\\)xg4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2dx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)e1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)xm"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(17\\)"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.2.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(1c\\)"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "2.0.4"
          },
          {
            "_id": null,
            "model": "windows vista",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(26\\)s2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)ewa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(5e\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2bx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5.1\\)xp"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3xa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2su"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.13"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yc2"
          },
          {
            "_id": null,
            "model": "dragonflybsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "dragonflybsd",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(9\\)ex3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(3.4\\)t"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.38"
          },
          {
            "_id": null,
            "model": "bsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsd",
            "version": null
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(13\\)"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.1.6.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2zk"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "5.3"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.14"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.11.11"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(14\\)eb"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)ja"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.12"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.4.12"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.13"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.2.19"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(1.3\\)t"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)xm2"
          },
          {
            "_id": null,
            "model": "dragonflybsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "dragonflybsd",
            "version": "1.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)xy6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)yc"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(8b\\)e14"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(13\\)zh"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2za"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)seb4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2yf"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "3.4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3ye"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.3.51"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1db"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.14"
          },
          {
            "_id": null,
            "model": "bsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "bsd",
            "version": "4.1"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)ez1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": null
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(13\\)e9"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(8\\)sa1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1xe"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(17\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(4\\)"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "openbsd",
            "version": "2.6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(2\\)xd"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netbsd",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(6.8a\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)ea1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0xs"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.0.9.9"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.20.5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xb4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.0\\(20.3\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)xa5"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(5\\)xu1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(2\\)b"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3\\(7\\)t10"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(11b\\)t2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(16\\)s10"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2sxa"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(6\\)ez2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(7\\)t3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(4\\)b3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(11\\)ja"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.1.89"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.22.3"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(17\\)sl2"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.4ja"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.17.10"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)ex"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(25\\)s6"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.3wa4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(10\\)da4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "11.2\\(15\\)g"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(15\\)jk4"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(20\\)ew"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2xf"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3yl"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.1\\(12\\)e"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.16.17"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0sl"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(5\\)wx"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.0\\(15a\\)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "linux",
            "version": "2.6.11.8"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3xz"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.3jea"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2\\(20\\)s1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "12.2fy"
          },
          {
            "_id": null,
            "model": "catos glx",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "cisco",
            "version": "8.3"
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "check point",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "extreme",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "force10",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "hewlett packard",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "linux kernel archives",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "red hat",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "sun microsystems",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "the sco group",
            "version": null
          },
          {
            "_id": null,
            "model": "seil/b1",
            "scope": null,
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": null
          },
          {
            "_id": null,
            "model": "seil/neu",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "128"
          },
          {
            "_id": null,
            "model": "seil/neu",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "2fe plus"
          },
          {
            "_id": null,
            "model": "seil/turbo",
            "scope": null,
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": null
          },
          {
            "_id": null,
            "model": "seil/x1,x2",
            "scope": null,
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "sun microsystems",
            "version": "(sparc)"
          },
          {
            "_id": null,
            "model": "opensolaris",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "sun microsystems",
            "version": "(x86)"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "sun microsystems",
            "version": "10 (sparc)"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "sun microsystems",
            "version": "10 (x86)"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "sun microsystems",
            "version": "8 (sparc)"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "sun microsystems",
            "version": "8 (x86)"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "sun microsystems",
            "version": "9 (sparc)"
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "sun microsystems",
            "version": "9 (x86)"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "7.x"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "cisco",
            "version": "8.x"
          },
          {
            "_id": null,
            "model": "connectra",
            "scope": null,
            "trust": 0.8,
            "vendor": "check point",
            "version": null
          },
          {
            "_id": null,
            "model": "vpn-1 power vsx",
            "scope": null,
            "trust": 0.8,
            "vendor": "check point",
            "version": null
          },
          {
            "_id": null,
            "model": "vpn-1 power/utm",
            "scope": null,
            "trust": 0.8,
            "vendor": "check point",
            "version": null
          },
          {
            "_id": null,
            "model": "vpn-1 pro/express",
            "scope": null,
            "trust": 0.8,
            "vendor": "check point",
            "version": null
          },
          {
            "_id": null,
            "model": "proxysg",
            "scope": "lte",
            "trust": 0.8,
            "vendor": "blue coat",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "sgos",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "blue coat",
            "version": "4"
          },
          {
            "_id": null,
            "model": "sgos",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "blue coat",
            "version": "5"
          },
          {
            "_id": null,
            "model": "sgos",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "blue coat",
            "version": "6"
          },
          {
            "_id": null,
            "model": "windows 2000",
            "scope": null,
            "trust": 0.8,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server 2003",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "none"
          },
          {
            "_id": null,
            "model": "windows server 2003",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "(itanium)"
          },
          {
            "_id": null,
            "model": "windows server 2003",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "(x64)"
          },
          {
            "_id": null,
            "model": "windows server 2008",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "(itanium)"
          },
          {
            "_id": null,
            "model": "windows server 2008",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "(x64)"
          },
          {
            "_id": null,
            "model": "windows server 2008",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "(x86)"
          },
          {
            "_id": null,
            "model": "windows vista",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "none"
          },
          {
            "_id": null,
            "model": "windows vista",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "(x64)"
          },
          {
            "_id": null,
            "model": "windows xp",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "(x64)"
          },
          {
            "_id": null,
            "model": "windows xp",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "sp3"
          },
          {
            "_id": null,
            "model": "rt100i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt102i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt103i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt105 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt107e",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt140 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt200i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt56v",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt58i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt60w",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt80i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rta50i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rta52i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rta54i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rta55i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rtw65b",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rtw65i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rtx1200",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rtx3000",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "srt100",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "fitelnet-e series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "furukawa electric",
            "version": "fitelnet-e20/e30"
          },
          {
            "_id": null,
            "model": "fitelnet-f series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "furukawa electric",
            "version": "fitelnet-f3000"
          },
          {
            "_id": null,
            "model": "fitelnet-f series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "furukawa electric",
            "version": "fitelnet-f40"
          },
          {
            "_id": null,
            "model": "fitelnet-f series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "furukawa electric",
            "version": "fitelnet-f80/f100/f120/f140/f1000/f2000"
          },
          {
            "_id": null,
            "model": "mucho series",
            "scope": null,
            "trust": 0.8,
            "vendor": "furukawa electric",
            "version": null
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 gc1",
            "scope": "ne",
            "trust": 0.6,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4",
            "scope": "ne",
            "trust": 0.6,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "cisco",
            "version": "7.1"
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "x640"
          },
          {
            "_id": null,
            "model": "ios 12.3b",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "email and web security appliance patch",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "mcafee",
            "version": "5.14"
          },
          {
            "_id": null,
            "model": "ios 12.4 xm3",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4jk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 xz2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 95",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4jx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "access gateway enterprise edition",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "9.1.100.3"
          },
          {
            "_id": null,
            "model": "coat systems proxysg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "4.3.3"
          },
          {
            "_id": null,
            "model": "bigip link controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.4"
          },
          {
            "_id": null,
            "model": "coat systems proxysg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "5.2.4.3"
          },
          {
            "_id": null,
            "model": "ios 12.2yg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.3(7)"
          },
          {
            "_id": null,
            "model": "ios 12.2sb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista enterprise 64-bit edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 sb2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3jec",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 54",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "rt140i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 93",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4xg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3yj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rt105i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "windows vista enterprise 64-bit edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.3(1)"
          },
          {
            "_id": null,
            "model": "ios 12.4 t5e",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks contact center manager server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "ios 12.2sz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1aa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server enterprise edition itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "ios 12.3yh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista home basic",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "pix/asa",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.2(4.18)"
          },
          {
            "_id": null,
            "model": "networks self service video server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "ios 12.2yr",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0s",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate high availability firewall and vpn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "4.3.1"
          },
          {
            "_id": null,
            "model": "ios 12.3xi",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "linux enterprise sp2 debuginfo",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "ios 12.0xf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0 s12",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip psm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "10.0"
          },
          {
            "_id": null,
            "model": "ios 12.0xm",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server for 32-bit systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20080"
          },
          {
            "_id": null,
            "model": "ios 12.1gb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos clr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.4"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 121",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1da",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server enterprise edition itanium sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "wanjet",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "ios 12.1xm",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 xw10",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rtx3000",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "bigip local traffic manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.4.8"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 99",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "messaging application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "0"
          },
          {
            "_id": null,
            "model": "linux enterprise sp1 debuginfo",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "cms server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "15.0"
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 4526fx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "4500"
          },
          {
            "_id": null,
            "model": "ios 12.2zl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp tablet pc edition sp3",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 2526t-pwr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "2500"
          },
          {
            "_id": null,
            "model": "rfc requirements for internet hosts communic",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "1122:0"
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 4524gt-pwr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "4500"
          },
          {
            "_id": null,
            "model": "stonegate high availability firewall and vpn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "4.2"
          },
          {
            "_id": null,
            "model": "windows vista business sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(18)"
          },
          {
            "_id": null,
            "model": "ios 12.3jl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks switched firewall sfa-6400",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "networks multimedia comm mas",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "point vpn-1 pro/express r70.1",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3jea",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate ips sensor and analyzer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "5.0.1"
          },
          {
            "_id": null,
            "model": "windows vista ultimate 64-bit edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "0"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.4(5)"
          },
          {
            "_id": null,
            "model": "solaris 8 sparc",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip global traffic manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.3.1"
          },
          {
            "_id": null,
            "model": "ios 12.4 jk4",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks contact center agent desktop display",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "ios 12.3xw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista enterprise 64-bit edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "0"
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 5698tfd-pwr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "5000"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 100",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 124",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "rfc requirements for internet hosts applicat",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "1123:0"
          },
          {
            "_id": null,
            "model": "ios 12.2yf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 123",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xr",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(3)"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 49",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server web edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 2550t",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "2500"
          },
          {
            "_id": null,
            "model": "ios 12.4jma",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3ja",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zm",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "windows advanced server sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(19.2)"
          },
          {
            "_id": null,
            "model": "access gateway enterprise edition",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "8.1.68.7"
          },
          {
            "_id": null,
            "model": "ios 12.0wc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 114",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ixa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "suse linux retail solution",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "networks self-service ccss7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "networks self-service peri nt server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "linux enterprise desktop",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 128",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 sxh5",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 85",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 19",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "x64"
          },
          {
            "_id": null,
            "model": "nexus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "70000"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 107",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate ips sensor and analyzer",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "5.0.2"
          },
          {
            "_id": null,
            "model": "netscaler build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "8.157.3"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 45",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "coat systems proxysg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "4.2"
          },
          {
            "_id": null,
            "model": "ios 12.3yx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server datacenter edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "ios 12.0xb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.5"
          },
          {
            "_id": null,
            "model": "ios 12.1xh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sra",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zya",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "cms server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "14.1"
          },
          {
            "_id": null,
            "model": "suse linux standard server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "ios 12.2cx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ay",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xe",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rt105p",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 78",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2by",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 108",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip wan optimization module",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "10.0"
          },
          {
            "_id": null,
            "model": "ios 12.2 sxf16",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 28",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks self-service peri workstation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "windows advanced server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "ios 12.2b",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "firepass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "6.0.3"
          },
          {
            "_id": null,
            "model": "ios 12.2zx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip application security manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.3.1"
          },
          {
            "_id": null,
            "model": "ios",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "12.4(25)"
          },
          {
            "_id": null,
            "model": "ios 12.2sq",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 89",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server standard edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "networks callpilot 703t",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xu",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.5(4)"
          },
          {
            "_id": null,
            "model": "ir",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "windows datacenter server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "ios 12.3jx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 39",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "coat systems proxysg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "5.2.2.5"
          },
          {
            "_id": null,
            "model": "open-enterprise-server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.4 xe4",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "8600"
          },
          {
            "_id": null,
            "model": "rt102i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.0xq",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip global traffic manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.4.8"
          },
          {
            "_id": null,
            "model": "point vpn-1 pro/express r62 hfa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "01"
          },
          {
            "_id": null,
            "model": "cms server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "14.0"
          },
          {
            "_id": null,
            "model": "ios 12.4jdd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ec",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 90",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 68",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "suse linux school server for i386",
            "scope": null,
            "trust": 0.3,
            "vendor": "s u s e",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2svd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.3"
          },
          {
            "_id": null,
            "model": "windows server for itanium-based systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20080"
          },
          {
            "_id": null,
            "model": "ios 12.1xj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xi",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "netscaler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "9.1"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 67",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 120",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ze",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 sxi1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2cy",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp home sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 51",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 t1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2bx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "access gateway enterprise edition build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "9.196.4"
          },
          {
            "_id": null,
            "model": "ios 12.0da",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4xa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sxa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista home basic sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios xe",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.2.3"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.5(6)"
          },
          {
            "_id": null,
            "model": "ios 12.2ey",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 77",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2src",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(2)"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 61",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(17)"
          },
          {
            "_id": null,
            "model": "ios 12.2ez",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rta54i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.3xc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.1(1)"
          },
          {
            "_id": null,
            "model": "ios 12.2dd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate ips sensor and analyzer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "4.2.3"
          },
          {
            "_id": null,
            "model": "ios 12.0xt",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0st",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3ys",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 82",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "coat systems proxysg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "5.2.4.8"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 29",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4xl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "nx-os 4.0 n2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "pix/asa",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.1(2.3)"
          },
          {
            "_id": null,
            "model": "ios 12.1yj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks contact center express",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 41",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 4524gt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "4500"
          },
          {
            "_id": null,
            "model": "ios 12.2sxb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip webaccelerator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.4.8"
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.4xt",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xm",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sea",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ixb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 126",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xp",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ixh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2seg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "point software vpn-1 power/utm r62 hfa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "01"
          },
          {
            "_id": null,
            "model": "ios 12.4yb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 ey",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip application security manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.4.8"
          },
          {
            "_id": null,
            "model": "ios 12.2xc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks self-service mps",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "1000"
          },
          {
            "_id": null,
            "model": "ios 12.4 md7",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server enterprise edition sp1 beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20031"
          },
          {
            "_id": null,
            "model": "bigip global traffic manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.3"
          },
          {
            "_id": null,
            "model": "ios 12.2svc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "8"
          },
          {
            "_id": null,
            "model": "ios 12.1xw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows advanced server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "ios 12.1xu",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 t2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 ja1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "pix/asa",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.1(2.79)"
          },
          {
            "_id": null,
            "model": "ios 12.2seb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp media center edition sp3",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yy",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ixg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2t",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista ultimate sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 5650td",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "5000"
          },
          {
            "_id": null,
            "model": "ios 12.2xg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1cx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos 8.4",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "pix/asa",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.0(4.9)"
          },
          {
            "_id": null,
            "model": "rt200i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "netscaler",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "9.1.100.3"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 130",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2fy",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 xo",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server enterprise edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "ios 12.1yf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yp",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.1(2)"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.1(3)"
          },
          {
            "_id": null,
            "model": "networks callpilot 600r",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 105",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4jmb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 2526t",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "2500"
          },
          {
            "_id": null,
            "model": "ios 12.2so",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server standard edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "ios 12.2s",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "coat systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "0"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.1(1)"
          },
          {
            "_id": null,
            "model": "ios 12.4ye",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "access gateway enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "9.0"
          },
          {
            "_id": null,
            "model": "ios 12.2yd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "linux enterprise sdk sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "netscaler access gateway enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "9.0"
          },
          {
            "_id": null,
            "model": "windows vista",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "0"
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 4550t",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "4500"
          },
          {
            "_id": null,
            "model": "windows server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "bigip sam",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "8.0"
          },
          {
            "_id": null,
            "model": "ios 12.2sxf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 88",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ixc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rt58i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.4 jdc",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0 sy10",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks symposium agent",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ixd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "point vpn-1 pro/express r60 hfa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "07"
          },
          {
            "_id": null,
            "model": "cms server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "16.0"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 111",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.4(0.63)"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.6(1)"
          },
          {
            "_id": null,
            "model": "ios 12.1ev",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 118",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.2"
          },
          {
            "_id": null,
            "model": "ios 12.2jk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista home premium sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4jdc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3yd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 59",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows datacenter server sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "access gateway enterprise edition build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "9.070.5"
          },
          {
            "_id": null,
            "model": "ios 12.0xn",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.5(5)"
          },
          {
            "_id": null,
            "model": "ios 12.2xj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks contact center administration ccma",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "ios 12.3jk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista home basic 64-bit edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3ym",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows advanced server sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 112",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate ssl vpn engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "1.3.1"
          },
          {
            "_id": null,
            "model": "ios 12.2bc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xr",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ixf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4mr",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3 yx14",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "messaging application server mm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "ios 12.2sy",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 sve1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate ips sensor and analyzer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "4.3.6"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(6)"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition itanium sp1 beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20031"
          },
          {
            "_id": null,
            "model": "windows server for x64-based systems sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "ios 12.0xi",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "coat systems proxysg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "5.2.6"
          },
          {
            "_id": null,
            "model": "enterprise manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "1.6"
          },
          {
            "_id": null,
            "model": "solaris 8 x86",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.4(1)"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 96",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 t",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sec",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xq",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista home basic 64-bit edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4yd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate ips sensor and analyzer",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "4.2.4"
          },
          {
            "_id": null,
            "model": "ios 12.2fz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows professional sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "networks contact center manager server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "windows vista edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "x64"
          },
          {
            "_id": null,
            "model": "ios 12.2fx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks switched firewall sf/vpn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "5124"
          },
          {
            "_id": null,
            "model": "ios 12.4jda",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4xn",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xe",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1yc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "nx-os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "0"
          },
          {
            "_id": null,
            "model": "networks self-service mps",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "5000"
          },
          {
            "_id": null,
            "model": "ios 12.1ez",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 5698tfd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "5000"
          },
          {
            "_id": null,
            "model": "bigip link controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.4.8"
          },
          {
            "_id": null,
            "model": "ios 12.2xo",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ea",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2irb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista business sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip global traffic manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "10.0.1"
          },
          {
            "_id": null,
            "model": "ios 12.4mda",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ixe",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "point software vpn-1 power/utm r65 ipso ga",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "6"
          },
          {
            "_id": null,
            "model": "ios 12.3yt",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 36",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 4526g-pwr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "4500"
          },
          {
            "_id": null,
            "model": "opensolaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.2see",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "interactive response",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "stonegate ips sensor and analyzer",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "4.3.7"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 48",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.2(1)"
          },
          {
            "_id": null,
            "model": "ios 12.2 sb1b",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1db",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server web edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.5(8)"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(20)"
          },
          {
            "_id": null,
            "model": "linux enterprise server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "9"
          },
          {
            "_id": null,
            "model": "windows professional sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "rt107e",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(12)"
          },
          {
            "_id": null,
            "model": "windows server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "ios 12.2ira",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 94",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate high availability firewall and vpn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "5.0.2"
          },
          {
            "_id": null,
            "model": "windows advanced server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "ios 12.3yq",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4xz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "novell linux desktop",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "9.0"
          },
          {
            "_id": null,
            "model": "ios 12.4 xg4",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "firepass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "5.5"
          },
          {
            "_id": null,
            "model": "coat systems proxysg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "4.2.6.1"
          },
          {
            "_id": null,
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "10.2"
          },
          {
            "_id": null,
            "model": "ios 12.3za",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista business",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2dx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "networks secure network access identity engine ignition analytics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "networks switched firewall sf-5114",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.3(4)"
          },
          {
            "_id": null,
            "model": "ios 12.4 jl1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 sga9",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "wanjet",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "5.0.2"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 50",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0sp",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "email and web security appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mcafee",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "ios 12.2zd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "srt100",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.4 xd12",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ex",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server for x64-based systems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20080"
          },
          {
            "_id": null,
            "model": "ios 12.2 srd1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "netscaler access gateway enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "8.1"
          },
          {
            "_id": null,
            "model": "netscaler build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "8.047.8"
          },
          {
            "_id": null,
            "model": "ios 12.4xp",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xe",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3yi",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xq",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks contact center administration ccma",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "ios 12.4xe",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xe",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rt103i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "windows server itanium sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "stonegate high availability firewall and vpn",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "5.0.3"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.5(1)"
          },
          {
            "_id": null,
            "model": "windows xp home sp3",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks self-service media processing server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.0xr",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista enterprise sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zp",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4t",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yn",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2bw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.1(2)"
          },
          {
            "_id": null,
            "model": "ios 12.2xl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server datacenter edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "bigip link controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.3"
          },
          {
            "_id": null,
            "model": "ios 12.2ye",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 4550t-pwr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "4500"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 01",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "rt80i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 92",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xnc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3va",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks secure network access switch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "-40500"
          },
          {
            "_id": null,
            "model": "ios 12.2xnd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4xk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 xl4",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 83",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 106",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 ja",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks contact center",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista ultimate 64-bit edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 4526t-pwr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "4500"
          },
          {
            "_id": null,
            "model": "linux enterprise desktop sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "ios 12.2xs",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 125",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sbc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip local traffic manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.6.1"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(4)"
          },
          {
            "_id": null,
            "model": "ios 12.2yv",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "networks self service cdd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "ios 12.1ga",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 2550t-pwr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "2500"
          },
          {
            "_id": null,
            "model": "rt100i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.2xw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.4(3)"
          },
          {
            "_id": null,
            "model": "bigip psm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.4.8"
          },
          {
            "_id": null,
            "model": "ios 12.4xd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks self-service ccxml",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "coat systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "5.2.2.5"
          },
          {
            "_id": null,
            "model": "ios 12.0xd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sed",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks secure network access identity engine ignition posture",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "stonegate high availability firewall and vpn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "4.2.1"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6"
          },
          {
            "_id": null,
            "model": "ios 12.2sm",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4md",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks callpilot 1005r",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server enterprise edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "networks self-service peri application",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "11.1"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 76",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp professional edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "x64"
          },
          {
            "_id": null,
            "model": "ios 12.2xna",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "point software vpn-1 power/utm r60 hfa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "07"
          },
          {
            "_id": null,
            "model": "ios 12.1eb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "netscaler build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "9.196.4"
          },
          {
            "_id": null,
            "model": "point vpn-1 power vsx ngx r65",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "0"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 101a",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3bw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 111a",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1yd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate high availability firewall and vpn",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "4.2.11"
          },
          {
            "_id": null,
            "model": "ios 12.3yf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 87",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.4"
          },
          {
            "_id": null,
            "model": "windows vista home premium sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3yz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3yg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 t6a",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ewa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp professional sp3",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2za",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yt",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "point software connectra r62 cm hfa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "01"
          },
          {
            "_id": null,
            "model": "wanjet",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.2.8"
          },
          {
            "_id": null,
            "model": "ios 12.3xz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista home premium 64-bit edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.3xs",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3t",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 mda",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate ssl vpn engine",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "1.4"
          },
          {
            "_id": null,
            "model": "networks self-service peri ctx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.2(1)"
          },
          {
            "_id": null,
            "model": "firepass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "5.5.2"
          },
          {
            "_id": null,
            "model": "ios 12.2ja",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "9"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 113",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4ja",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "point software connectra r66.1",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "networks contact center manager server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 5650td-pwr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "5000"
          },
          {
            "_id": null,
            "model": "ios 12.4 yb",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 57",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp tablet pc edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "linux enterprise server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "windows server enterprise edition itanium sp1 beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20031"
          },
          {
            "_id": null,
            "model": "netscaler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "9.0"
          },
          {
            "_id": null,
            "model": "ios 12.4xj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1e",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4gc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "firepass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "ios 12.1yi",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "coat systems proxysg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "4.2.8.7"
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 4526gtx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "4500"
          },
          {
            "_id": null,
            "model": "rta50i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 119",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip psm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.4.5"
          },
          {
            "_id": null,
            "model": "ios 12.4xc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1az",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "11.0"
          },
          {
            "_id": null,
            "model": "ios 12.2da",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1 ea13",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista home basic 64-bit edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "0"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.5(5.3)"
          },
          {
            "_id": null,
            "model": "ios 12.2xi",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "point software vpn-1 power/utm r70.1",
            "scope": null,
            "trust": 0.3,
            "vendor": "check",
            "version": null
          },
          {
            "_id": null,
            "model": "point vpn-1 power vsx vsx-1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "0"
          },
          {
            "_id": null,
            "model": "stonegate ips sensor and analyzer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "4.2.2"
          },
          {
            "_id": null,
            "model": "coat systems proxysg 200-c",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "0"
          },
          {
            "_id": null,
            "model": "bigip webaccelerator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "10.1"
          },
          {
            "_id": null,
            "model": "stonegate high availability firewall and vpn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "4.3"
          },
          {
            "_id": null,
            "model": "bigip link controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "10.0.1"
          },
          {
            "_id": null,
            "model": "ios 12.2yu",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xs",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "cms server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "16.1"
          },
          {
            "_id": null,
            "model": "windows datacenter server sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 110",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip local traffic manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.6"
          },
          {
            "_id": null,
            "model": "ios 12.2sga",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(15)"
          },
          {
            "_id": null,
            "model": "windows datacenter server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "rt60w",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.1dc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server for itanium-based systems sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "networks switched firewall sfa-6600",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "enterprise manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "1.0"
          },
          {
            "_id": null,
            "model": "interactive response",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "ios 12.0sl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.2(2)"
          },
          {
            "_id": null,
            "model": "windows server itanium sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "windows server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "ios 12.2sxh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rt140p",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.2xk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 sm5",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip local traffic manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.4"
          },
          {
            "_id": null,
            "model": "ios 12.1eu",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 sw3",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "messaging application server mm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "1.1"
          },
          {
            "_id": null,
            "model": "ios 12.3jeb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip application security manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.3"
          },
          {
            "_id": null,
            "model": "windows vista ultimate",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server for 32-bit systems sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2008"
          },
          {
            "_id": null,
            "model": "networks secure network access switch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "-40700"
          },
          {
            "_id": null,
            "model": "ios 12.1xt",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks callpilot 201i",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 xy4",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2mc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0sy",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 yd",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 se",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista home premium",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "wanjet",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "linux enterprise desktop sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "coat systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "4.2.2.4"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.4(2)"
          },
          {
            "_id": null,
            "model": "enterprise manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "1.2"
          },
          {
            "_id": null,
            "model": "ios 12.2 sq2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rt105",
            "scope": null,
            "trust": 0.3,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "coat systems proxysg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "4.3"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 122",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1yh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 131",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 109",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(5)"
          },
          {
            "_id": null,
            "model": "netscaler build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "9.070.5"
          },
          {
            "_id": null,
            "model": "ios 12.0sz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.5(2)"
          },
          {
            "_id": null,
            "model": "ios 12.2 se5",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "point vpn-1 pro/express r65 ipso ga",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "6"
          },
          {
            "_id": null,
            "model": "ios 12.3yu",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks self-service mps",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "10000"
          },
          {
            "_id": null,
            "model": "ios 12.1ya",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "enterprise manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "1.8"
          },
          {
            "_id": null,
            "model": "bigip global traffic manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "10.0"
          },
          {
            "_id": null,
            "model": "ios 12.3xa",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0sc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(10)"
          },
          {
            "_id": null,
            "model": "point vpn-1 pro/express r65 hfa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "50"
          },
          {
            "_id": null,
            "model": "netscaler",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "8.1.68.7"
          },
          {
            "_id": null,
            "model": "ios 12.4xb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 102",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ey",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "solaris 9 sparc",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 02",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3eu",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista ultimate 64-bit edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2su",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "enterprise manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "1.4.1"
          },
          {
            "_id": null,
            "model": "point software connectra r62 hfa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "01"
          },
          {
            "_id": null,
            "model": "ios 12.4xw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sca",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows datacenter server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "ios 12.2sef",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ew",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0 sz10",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip local traffic manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.3.5"
          },
          {
            "_id": null,
            "model": "ios 12.1xz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4xm",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rt105e",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 80",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4sw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rt140f",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.2se",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip psm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "10.0.1"
          },
          {
            "_id": null,
            "model": "networks contact center administration",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.1eo",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 ya2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 104",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3yk",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "coat systems proxysg 8100-c",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.2yh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks callpilot 202i",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "windows professional sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "ios 12.3xu",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0w",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "10.1"
          },
          {
            "_id": null,
            "model": "rt56v",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "linux enterprise server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 38",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(19)"
          },
          {
            "_id": null,
            "model": "ios 12.2 ixh",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "linux enterprise server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "_id": null,
            "model": "ios 12.2yz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks callpilot 1002rp",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sxe",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 129",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(16)"
          },
          {
            "_id": null,
            "model": "ios 12.4 md2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "coat systems proxysg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "4.2.1.6"
          },
          {
            "_id": null,
            "model": "ios 12.2 se2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 jdd",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks contact center ncc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.5(1)"
          },
          {
            "_id": null,
            "model": "ios 12.2xt",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks contact center cct",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "ios 12.2scb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rtw65i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 4548gt-pwr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "4500"
          },
          {
            "_id": null,
            "model": "ios 12.1xc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 mr2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.2(0.65)"
          },
          {
            "_id": null,
            "model": "networks switched firewall sf-5109",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate ssl vpn engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "1.1"
          },
          {
            "_id": null,
            "model": "networks self-service peri ivr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.2zy",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip global traffic manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.4"
          },
          {
            "_id": null,
            "model": "bigip webaccelerator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "10.0.1"
          },
          {
            "_id": null,
            "model": "ios 12.2 srb5a",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "networks self-service wvads",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.2sve",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2irc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(1)"
          },
          {
            "_id": null,
            "model": "windows server web edition sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "ios 12.3 ym13",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 jx",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0 sy8",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yo",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ys",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4xq",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 84",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.3(2)"
          },
          {
            "_id": null,
            "model": "ios 12.2 sb14",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 sb13",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "messaging application server mm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "ios 12.2zj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate high availability firewall and vpn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "4.2.2"
          },
          {
            "_id": null,
            "model": "ios 12.2mb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "linux enterprise server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "ios 12.2ex",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp media center edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ew",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0wt",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0 s3",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 xr",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 98",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xnb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rta55i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.1ax",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 da14",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server datacenter edition itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 117",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "messaging application server mm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "ios 12.2yc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 58",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "networks contact center manager",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(7)"
          },
          {
            "_id": null,
            "model": "ios 12.2sv",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista home basic sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xh",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1ye",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip webaccelerator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.4"
          },
          {
            "_id": null,
            "model": "ios 12.2srd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip wan optimization module",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "10.0.1"
          },
          {
            "_id": null,
            "model": "ios 12.2sva",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks self-service speech server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "nexus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "50000"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 22",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "networks contact center tapi server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "ios 12.0 sy9a",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 81",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3xr",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate high availability firewall and vpn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "4.2.10"
          },
          {
            "_id": null,
            "model": "ios 12.2bz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip application security manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.4"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 103",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "coat systems proxysg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "ios 12.3xy",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sxi",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "linux enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "ios 12.2 sg",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ym",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks contact center multimedia \u0026 outbound",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.5(3)"
          },
          {
            "_id": null,
            "model": "ios 12.0t",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "linux enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "_id": null,
            "model": "rta52i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "ios 12.4ya",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4xf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "stonegate ips sensor and analyzer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "stonesoft",
            "version": "4.2"
          },
          {
            "_id": null,
            "model": "ios 12.2xq",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks ethernet routing switch 4526t",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "4500"
          },
          {
            "_id": null,
            "model": "rtx1200",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "networks secure network access identity engines ignition server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "nx-os",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "4.1(4)"
          },
          {
            "_id": null,
            "model": "windows vista enterprise",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ste",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server standard edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "ios 12.2cz",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1yb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1t",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4jl",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista ultimate sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yw",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xn",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sxd",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rtw65b",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "windows vista home premium 64-bit edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 zya1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "_id": null,
            "model": "ios 12.2xf",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 13",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "cms server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "16.2"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.1"
          },
          {
            "_id": null,
            "model": "access gateway enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "9.1"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 91",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 scb1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "10"
          },
          {
            "_id": null,
            "model": "ios 12.3tpc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yq",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2ya",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3jed",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 47",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "coat systems proxysg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "4.2.10"
          },
          {
            "_id": null,
            "model": "opensolaris build snv 64",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 irc",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "bigip link controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "10.0"
          },
          {
            "_id": null,
            "model": "ios 12.4 jda3",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 37",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 101",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows professional sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "ios 12.3 bc9",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 115",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3bc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zu",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.1xy",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "solaris 10 x86",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3ya",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2 src3",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks self service voicexml",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "0"
          },
          {
            "_id": null,
            "model": "windows vista enterprise sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4xy",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4xr",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2sg",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "rt140e",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.5(9)"
          },
          {
            "_id": null,
            "model": "ios 12.4 md",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows xp professional sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2srb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos 7.6",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10.3"
          },
          {
            "_id": null,
            "model": "ios 12.4 xr4",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista business 64-bit edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "8.2(2)"
          },
          {
            "_id": null,
            "model": "linux enterprise sdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "coat systems proxysg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "blue",
            "version": "0"
          },
          {
            "_id": null,
            "model": "solaris 9 x86",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2xb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows vista home premium 64-bit edition sp2",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2zb",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0db",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.0xs",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "point software vpn-1 power/utm r65 hfa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "check",
            "version": "50"
          },
          {
            "_id": null,
            "model": "ios 12.3 bc6",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "suse linux openexchange server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "ios 12.4 xq2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.6(8)"
          },
          {
            "_id": null,
            "model": "windows server datacenter edition sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "ios 12.0dc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.3 jec3",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "ios 12.2tpc",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.2yj",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "catos 8.7",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 116",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "ios 12.4 ye",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 127",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server datacenter edition itanium sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "_id": null,
            "model": "bigip link controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.3.1"
          },
          {
            "_id": null,
            "model": "networks secure network access identity engine guest manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "-0"
          },
          {
            "_id": null,
            "model": "ios 12.2 mc2m",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "networks contact center multimedia \u0026 outbound",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "ios 12.0sx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": "opensolaris build snv 86",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "windows server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#723308"
          },
          {
            "db": "BID",
            "id": "31545"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200810-307"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-002090"
          },
          {
            "db": "NVD",
            "id": "CVE-2008-4609"
          }
        ]
      },
      "configurations": {
        "_id": null,
        "data": [
          {
            "CVE_data_version": "4.0",
            "nodes": [
              {
                "cpe_match": [
                  {
                    "cpe22Uri": "cpe:/o:oracle:solaris",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:sun:opensolaris",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:sun:solaris",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:cisco:catos",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:cisco:ios",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:cisco:ios_xe",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:cisco:pix_asa",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:checkpoint:connectra",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:checkpoint:vpn-1_power_vsx",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:checkpoint:vpn-1_power_utm",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:checkpoint:vpn-1_pro_express",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:bluecoat:proxysg",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:bluecoat:sgos",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:microsoft:windows_2000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:microsoft:windows_server_2003",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:microsoft:windows_server_2008",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:microsoft:windows_vista",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:microsoft:windows_xp",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt100i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt102i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt103i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt105",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt107e",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt140",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt200i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt250i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt300i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt56v",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt57i_firmware",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt58i_firmware",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt60w",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt80i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rta50i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rta52i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rta54i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rta55i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtv700",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtw65b",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtw65i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtx1000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtx1100",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtx1200",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtx1500",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtx2000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtx3000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:srt100",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:furukawa_electric:fitelnet",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:furukawa_electric:fitelnet-f",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:furukawa_electric:mucho",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ip38x",
                    "vulnerable": true
                  }
                ],
                "operator": "OR"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-002090"
          }
        ]
      },
      "credits": {
        "_id": null,
        "data": "Robert E. Lee and Jack C. Lewis",
        "sources": [
          {
            "db": "BID",
            "id": "31545"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200810-307"
          }
        ],
        "trust": 0.9
      },
      "cve": "CVE-2008-4609",
      "cvss": {
        "_id": null,
        "data": [
          {
            "cvssV2": [
              {
                "accessComplexity": "MEDIUM",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "nvd@nist.gov",
                "availabilityImpact": "COMPLETE",
                "baseScore": 7.1,
                "confidentialityImpact": "NONE",
                "exploitabilityScore": 8.6,
                "id": "CVE-2008-4609",
                "impactScore": 6.9,
                "integrityImpact": "NONE",
                "severity": "HIGH",
                "trust": 1.9,
                "vectorString": "AV:N/AC:M/Au:N/C:N/I:N/A:C",
                "version": "2.0"
              },
              {
                "accessComplexity": "MEDIUM",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "VULHUB",
                "availabilityImpact": "COMPLETE",
                "baseScore": 7.1,
                "confidentialityImpact": "NONE",
                "exploitabilityScore": 8.6,
                "id": "VHN-34734",
                "impactScore": 6.9,
                "integrityImpact": "NONE",
                "severity": "HIGH",
                "trust": 0.1,
                "vectorString": "AV:N/AC:M/AU:N/C:N/I:N/A:C",
                "version": "2.0"
              }
            ],
            "cvssV3": [],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2008-4609",
                "trust": 1.0,
                "value": "HIGH"
              },
              {
                "author": "CARNEGIE MELLON",
                "id": "VU#723308",
                "trust": 0.8,
                "value": "15.59"
              },
              {
                "author": "NVD",
                "id": "CVE-2008-4609",
                "trust": 0.8,
                "value": "High"
              },
              {
                "author": "CNNVD",
                "id": "CNNVD-200810-307",
                "trust": 0.6,
                "value": "HIGH"
              },
              {
                "author": "VULHUB",
                "id": "VHN-34734",
                "trust": 0.1,
                "value": "HIGH"
              },
              {
                "author": "VULMON",
                "id": "CVE-2008-4609",
                "trust": 0.1,
                "value": "HIGH"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#723308"
          },
          {
            "db": "VULHUB",
            "id": "VHN-34734"
          },
          {
            "db": "VULMON",
            "id": "CVE-2008-4609"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200810-307"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-002090"
          },
          {
            "db": "NVD",
            "id": "CVE-2008-4609"
          }
        ]
      },
      "description": {
        "_id": null,
        "data": "The TCP implementation in (1) Linux, (2) platforms based on BSD Unix, (3) Microsoft Windows, (4) Cisco products, and probably other operating systems allows remote attackers to cause a denial of service (connection queue exhaustion) via multiple vectors that manipulate information in the TCP state table, as demonstrated by sockstress. Part of the Transmission Control Protocol (TCP) specification (RFC 1122) allows a receiver to advertise a zero byte window, instructing the sender to maintain the connection but not send additional TCP payload data. The sender should then probe the receiver to check if the receiver is ready to accept data. Narrow interpretation of this part of the specification can create a denial-of-service vulnerability. By advertising a zero receive window and acknowledging probes, a malicious receiver can cause a sender to consume resources (TCP state, buffers, and application memory), preventing the targeted service or system from handling legitimate connections. Transmission Control Protocol (TCP) Multiple implementations of service disruption (DoS) Vulnerabilities exist. RFC793 It is prescribed by Transmission Control Protocol (TCP) Implementation of service disruption due to misuse of available resources after connection establishment (DoS) Vulnerabilities exist.Service operation disrupted by a remote third party (DoS) There is a possibility of being attacked. The core TCP/IP protocol is prone to multiple remote denial-of-service vulnerabilities. \nThe issues are tracked by Cisco Bug IDs CSCsv04836, CSCsv07712, CSCsv66169, CSCsv02768, CSCsv08325, and CSCsv08579. \nThese issues are reported to affect multiple vendors\u0027 implementations of the TCP/IP stack. ----------------------------------------------------------------------\n\nDo you have VARM strategy implemented?\n\n(Vulnerability Assessment Remediation Management)  \n\nIf not, then implement it through the most reliable vulnerability\nintelligence source on the market. \n\nImplement it through Secunia. \n\nFor more information visit:\nhttp://secunia.com/advisories/business_solutions/\n\nAlternatively request a call from a Secunia representative today to\ndiscuss how we can help you with our capabilities contact us at:\nsales@secunia.com\n\n----------------------------------------------------------------------\n\nTITLE:\nWindows 2000 TCP/IP Window Size Denial of Service Vulnerabilities\n\nSECUNIA ADVISORY ID:\nSA36597\n\nVERIFY ADVISORY:\nhttp://secunia.com/advisories/36597/\n\nDESCRIPTION:\nTwo vulnerabilities have been reported in Microsoft Windows 2000,\nwhich can be exploited by malicious people to cause a DoS (Denial of\nService). \n\n1) An error in the TCP/IP processing can be exploited to cause a\nsystem to stop responding to new requests by flooding it using\nspecially crafted packets with a TCP receive window size set to a\nvery small value or zero. \n\n2) An error in the TCP/IP processing can be exploited to cause\nconnections to hang indefinitely in a FIN-WAIT-1 or FIN-WAIT-2 state. \nThis can be exploited to cause a system to stop responding to new\nrequests by flooding it using specially crafted packets with a TCP\nreceive window size set to a very small value or zero. \n\nSOLUTION:\nAccording to the vendor, no patches will be made available as it\nwould require re-architecting a significant amount of the OS. \n\nPROVIDED AND/OR DISCOVERED BY:\n1) The vendor credits Jack C. Louis, Outpost24. \n2) The vendor credits Felix Lindner, Recurity Labs. \n\nORIGINAL ADVISORY:\nMS09-048 (KB967723):\nhttp://www.microsoft.com/technet/security/Bulletin/MS09-048.mspx\n\n----------------------------------------------------------------------\n\nAbout:\nThis Advisory was delivered by Secunia as a free service to help\neverybody keeping their systems up to date against the latest\nvulnerabilities. \n\nSubscribe:\nhttp://secunia.com/advisories/secunia_security_advisories/\n\nDefinitions: (Criticality, Where etc.)\nhttp://secunia.com/advisories/about_secunia_advisories/\n\n\nPlease Note:\nSecunia recommends that you verify all advisories you receive by\nclicking the link. \nSecunia NEVER sends attached files with advisories. \nSecunia does not advise people to install third party patches, only\nuse those supplied by the vendor. \n\n----------------------------------------------------------------------\n\nUnsubscribe: Secunia Security Advisories\nhttp://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org\n\n----------------------------------------------------------------------\n\n\n. -----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA1\n\nSUPPORT COMMUNICATION - SECURITY BULLETIN\n\nDocument ID: c01923093\nVersion: 1\n\nHPSBMI02473 SSRT080138 rev.1 - Cisco Catalyst Blade Switch 3020/3120, Remote Denial of Service (DoS)\n\nNOTICE: The information in this Security Bulletin should be acted upon as soon as possible. \n\nRelease Date: 2009-11-17\nLast Updated: 2009-11-17\n\nPotential Security Impact: Remote execution of arbitrary code, Denial of Service (DoS)\n\nSource: Hewlett-Packard Company, HP Software Security Response Team\n\nVULNERABILITY SUMMARY\nA potential vulnerability has been identified with the Cisco Catalyst Blade Switch 3020/3021. The vulnerability could be exploited remotely to create a Denial of Service (DoS). \n\nReferences: CVE-2008-4609, Cisco Security Advisory: TCP State Manipulation Denial of Service Vulnerabilities in Multiple Cisco Products(cisco-sa-20090908-tcp24)\n\nSUPPORTED SOFTWARE VERSIONS*: ONLY impacted versions are listed. \nCisco Catalyst Blade Switch 3020 for c-Class BladeSystem running firmware earlier than v12.2(50)\nCisco Catalyst Blade Switch 3120G and Cisco Catalyst Blade Switch 3120X for HP running firmware earlier than v12.2(50)\n\nBACKGROUND\n\nCVSS 2.0 Base Metrics\n===========================================================\n  Reference              Base Vector             Base Score\nCVE-2008-4609    (AV:N/AC:M/Au:N/C:N/I:N/A:C)       7.1\n===========================================================\n             Information on CVSS is documented\n            in HP Customer Notice: HPSN-2008-002\n\nRESOLUTION\n\nHP has provided firmware updates to resolve this vulnerability. \n\nProduct\n Firmware Version\n\nCisco Catalyst Blade Switch 3020 for c-Class BladeSystem\n 12.2(50) SE1 or subsequent\n\nCisco Catalyst Blade Switch 3120G and Cisco Catalyst Blade Switch 3120X for HP\n 12.2(50) SE1 or subsequent\n\nTo Locate the Firmware Update\n\nBrowse to http://www.hp.com and do the following:\n\nSelect \"Support \u0026 Drivers\"\nIn Step 1 select \"Download drivers and software (and firmware)\"\nIn Step 2 enter \"Cisco Catalyst Blade Switch\"\nClick on \"Go\"\nSelect the desired product\nSelect the desired Windows operating system\nClick on \"Firmware - Blade Infrastructure\"\n\nPRODUCT SPECIFIC INFORMATION\nNone\n\nHISTORY\nVersion:1 (rev.1) - 17 November 2009 Initial release\n\nThird Party Security Patches: Third party security patches that are to be installed on systems running HP software products should be applied in accordance with the customer\u0027s patch management policy. \n\nSupport: For further information, contact normal HP Services support channel. \n\nReport: To report a potential security vulnerability with any HP supported product, send Email to: security-alert@hp.com\nIt is strongly recommended that security related information being communicated to HP be encrypted using PGP, especially exploit information. \nTo get the security-alert PGP key, please send an e-mail message as follows:\n  To: security-alert@hp.com\n  Subject: get key\nSubscribe: To initiate a subscription to receive future HP Security Bulletins via Email:\nhttp://h30046.www3.hp.com/driverAlertProfile.php?regioncode=NA\u0026langcode=USENG\u0026jumpid=in_SC-GEN__driverITRC\u0026topiccode=ITRC\nOn the web page: ITRC security bulletins and patch sign-up\nUnder Step1: your ITRC security bulletins and patches\n    -check ALL categories for which alerts are required and continue. \nUnder Step2: your ITRC operating systems\n    -verify your operating system selections are checked and save. \n\nTo update an existing subscription: http://h30046.www3.hp.com/subSignIn.php\nLog in on the web page: Subscriber\u0027s choice for Business: sign-in. \nOn the web page: Subscriber\u0027s Choice: your profile summary - use Edit Profile to update appropriate sections. \n\nTo review previously published Security Bulletins visit: http://www.itrc.hp.com/service/cki/secBullArchive.do\n\n* The Software Product Category that this Security Bulletin\nrelates to is represented by the 5th and 6th characters\nof the Bulletin number in the title:\n\nGN = HP General SW\nMA = HP Management Agents\nMI = Misc. 3rd Party SW\nMP = HP MPE/iX\nNS = HP NonStop Servers\nOV = HP OpenVMS\nPI = HP Printing \u0026 Imaging\nST = HP Storage SW\nTL = HP Trusted Linux\nTU = HP Tru64 UNIX\nUX = HP-UX\nVV = HP VirtualVault\n\nSystem management and security procedures must be reviewed frequently to maintain system integrity. HP is continually reviewing and enhancing the security features of software products to provide customers with current secure solutions. \n\n\"HP is broadly distributing this Security Bulletin in order to bring to the attention of users of the affected HP products the important security information contained in this Bulletin. HP recommends that all users determine the applicability of this information to their individual situations and take appropriate action. HP does not warrant that this information is necessarily accurate or complete for all user situations and, consequently, HP will not be responsible for any damages resulting from user\u0027s use or disregard of the information provided in this Bulletin. To the extent permitted by law, HP disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose, title and non-infringement.\"\n\nCopyright 2009 Hewlett-Packard Development Company, L.P. \nHewlett-Packard Company shall not be liable for technical or editorial errors or omissions contained herein. The information provided is provided \"as is\" without warranty of any kind. To the extent permitted by law, neither HP or its affiliates, subcontractors or suppliers will be liable for incidental,special or consequential damages including downtime cost; lost profits;damages relating to the procurement of substitute products or services; or damages for loss of data, or software restoration. The information in this document is subject to change without notice. Hewlett-Packard Company and the names of Hewlett-Packard products referenced herein are trademarks of Hewlett-Packard Company in the United States and other countries. Other product and company names mentioned herein may be trademarks of their respective owners. \n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1.4.10 (GNU/Linux)\n\niEYEARECAAYFAksEDAMACgkQ4B86/C0qfVm87gCgliWdpIKldzOKHRvJA5r9gR4Z\nge0AoMu3ueCbIB4y3HUmT/jReUzE4jym\n=uBei\n-----END PGP SIGNATURE-----\n",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2008-4609"
          },
          {
            "db": "CERT/CC",
            "id": "VU#723308"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-002090"
          },
          {
            "db": "BID",
            "id": "31545"
          },
          {
            "db": "VULHUB",
            "id": "VHN-34734"
          },
          {
            "db": "VULMON",
            "id": "CVE-2008-4609"
          },
          {
            "db": "PACKETSTORM",
            "id": "81054"
          },
          {
            "db": "PACKETSTORM",
            "id": "82772"
          }
        ],
        "trust": 2.97
      },
      "exploit_availability": {
        "_id": null,
        "data": [
          {
            "reference": "https://www.scap.org.cn/vuln/vhn-34734",
            "trust": 0.1,
            "type": "unknown"
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-34734"
          }
        ]
      },
      "external_ids": {
        "_id": null,
        "data": [
          {
            "db": "NVD",
            "id": "CVE-2008-4609",
            "trust": 3.0
          },
          {
            "db": "USCERT",
            "id": "TA09-251A",
            "trust": 2.6
          },
          {
            "db": "CERT/CC",
            "id": "VU#723308",
            "trust": 2.0
          },
          {
            "db": "BID",
            "id": "31545",
            "trust": 1.2
          },
          {
            "db": "SECUNIA",
            "id": "36597",
            "trust": 0.9
          },
          {
            "db": "VUPEN",
            "id": "ADV-2009-2954",
            "trust": 0.8
          },
          {
            "db": "VUPEN",
            "id": "ADV-2009-2567",
            "trust": 0.8
          },
          {
            "db": "SECUNIA",
            "id": "36802",
            "trust": 0.8
          },
          {
            "db": "SECUNIA",
            "id": "36602",
            "trust": 0.8
          },
          {
            "db": "SECUNIA",
            "id": "36603",
            "trust": 0.8
          },
          {
            "db": "SECUNIA",
            "id": "37044",
            "trust": 0.8
          },
          {
            "db": "USCERT",
            "id": "SA09-251A",
            "trust": 0.8
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-002090",
            "trust": 0.8
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200810-307",
            "trust": 0.6
          },
          {
            "db": "PACKETSTORM",
            "id": "82772",
            "trust": 0.2
          },
          {
            "db": "VULHUB",
            "id": "VHN-34734",
            "trust": 0.1
          },
          {
            "db": "VULMON",
            "id": "CVE-2008-4609",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "81054",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#723308"
          },
          {
            "db": "VULHUB",
            "id": "VHN-34734"
          },
          {
            "db": "VULMON",
            "id": "CVE-2008-4609"
          },
          {
            "db": "BID",
            "id": "31545"
          },
          {
            "db": "PACKETSTORM",
            "id": "81054"
          },
          {
            "db": "PACKETSTORM",
            "id": "82772"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200810-307"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-002090"
          },
          {
            "db": "NVD",
            "id": "CVE-2008-4609"
          }
        ]
      },
      "id": "VAR-200810-0010",
      "iot": {
        "_id": null,
        "data": true,
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-34734"
          }
        ],
        "trust": 0.7284717799999999
      },
      "last_update_date": "2026-03-09T22:39:06.400000Z",
      "patch": {
        "_id": null,
        "data": [
          {
            "title": "sk42723",
            "trust": 0.8,
            "url": "https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_dogoviewsolutiondetails=\u0026solutionid=sk42723"
          },
          {
            "title": "cisco-sa-20090908-tcp24",
            "trust": 0.8,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20090908-tcp24.shtml"
          },
          {
            "title": "20091009",
            "trust": 0.8,
            "url": "http://www.furukawa.co.jp/fitelnet/topic/vulnera_20091009.html"
          },
          {
            "title": "MS09-048",
            "trust": 0.8,
            "url": "http://www.microsoft.com/technet/security/bulletin/MS09-048.mspx"
          },
          {
            "title": "NV09-014",
            "trust": 0.8,
            "url": "http://www.nec.co.jp/security-info/secinfo/nv09-014.html"
          },
          {
            "title": "Text Form of Oracle Critical Patch Update - July 2012 Risk Matrices",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujul2012verbose-392736.html"
          },
          {
            "title": "Oracle Critical Patch Update Advisory - July 2012",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujul2012-392727.html"
          },
          {
            "title": "TCP\u306e\u5b9f\u88c5\u306b\u304a\u3051\u308b\u30b5\u30fc\u30d3\u30b9\u904b\u7528\u59a8\u5bb3(DoS)\u306e\u8106\u5f31\u6027\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.rtpro.yamaha.co.jp/RT/FAQ/Security/VU943657.html"
          },
          {
            "title": "SA41",
            "trust": 0.8,
            "url": "https://kb.bluecoat.com/index?page=content\u0026id=SA41"
          },
          {
            "title": "July 2012 Critical Patch Update Released",
            "trust": 0.8,
            "url": "https://blogs.oracle.com/security/entry/july_2012_critical_patch_update"
          },
          {
            "title": "TCP\u30bb\u30c3\u30b7\u30e7\u30f3\u51e6\u7406\u306b\u95a2\u3059\u308b\u8106\u5f31\u6027",
            "trust": 0.8,
            "url": "http://www.seil.jp/seilseries/security/2009/a00667.php"
          },
          {
            "title": "267088",
            "trust": 0.8,
            "url": "http://jp.sunsolve.sun.com/search/document.do?assetkey=1-66-267088-1"
          },
          {
            "title": "MS09-048",
            "trust": 0.8,
            "url": "http://www.microsoft.com/japan/technet/security/bulletin/ms09-048.mspx"
          },
          {
            "title": "MS09-048e",
            "trust": 0.8,
            "url": "http://www.microsoft.com/japan/security/bulletins/MS09-048e.mspx"
          },
          {
            "title": "JVNVU#943657",
            "trust": 0.8,
            "url": "http://software.fujitsu.com/jp/security/vulnerabilities/vu943657.html"
          },
          {
            "title": "TA09-251A",
            "trust": 0.8,
            "url": "http://software.fujitsu.com/jp/security/vulnerabilities/ta09-251a.html"
          },
          {
            "title": "Symantec Security Advisories: SA38: Blue Coat ProxyAV Advisory on Sockstress TCP Attacks",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=symantec_security_advisories\u0026qid=fb80a5c8f4ca8d75f9df074d6d82e182"
          },
          {
            "title": "Cisco: TCP State Manipulation Denial of Service Vulnerabilities in Multiple Cisco Products",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=cisco_security_advisories_and_alerts_ciscoproducts\u0026qid=cisco-sa-20090908-tcp24"
          },
          {
            "title": "Symantec Security Advisories: SA41 : Blue Coat ProxySG Advisory on Sockstress TCP Attacks (CVE-2008-4609)",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=symantec_security_advisories\u0026qid=d8370cc1d406e0cbe214c88e6d3d62d7"
          },
          {
            "title": "Symantec Security Advisories: SA34 : Blue Coat iShared Advisory on Sockstress TCP Attacks (CVE-2008-4609)",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=symantec_security_advisories\u0026qid=85b57218eec77ee0396becd56404d8f1"
          },
          {
            "title": "Symantec Security Advisories: SA35 : Blue Coat Director Advisory on Sockstress TCP Attacks",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=symantec_security_advisories\u0026qid=7d4c01e5a8411a8e49f47e52a356544c"
          },
          {
            "title": "Symantec Security Advisories: SA39 : Blue Coat PacketShaper Advisory on Sockstress TCP Attacks",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=symantec_security_advisories\u0026qid=1ace87e00398301b8248ba77512ee922"
          },
          {
            "title": "",
            "trust": 0.1,
            "url": "https://github.com/Live-Hack-CVE/CVE-2008-4609 "
          },
          {
            "title": "sockstress",
            "trust": 0.1,
            "url": "https://github.com/marcelki/sockstress "
          },
          {
            "title": "awesome-network-stuff",
            "trust": 0.1,
            "url": "https://github.com/alphaSeclab/awesome-network-stuff "
          },
          {
            "title": "awesome-network-stuff",
            "trust": 0.1,
            "url": "https://github.com/aniksarakash/awesome-network-stuff "
          },
          {
            "title": "",
            "trust": 0.1,
            "url": "https://github.com/CVEDB/PoC-List "
          }
        ],
        "sources": [
          {
            "db": "VULMON",
            "id": "CVE-2008-4609"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-002090"
          }
        ]
      },
      "problemtype_data": {
        "_id": null,
        "data": [
          {
            "problemtype": "CWE-16",
            "trust": 1.9
          },
          {
            "problemtype": "NVD-CWE-noinfo",
            "trust": 1.0
          },
          {
            "problemtype": "CWE-noinfo",
            "trust": 0.8
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-34734"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-002090"
          },
          {
            "db": "NVD",
            "id": "CVE-2008-4609"
          }
        ]
      },
      "references": {
        "_id": null,
        "data": [
          {
            "trust": 3.7,
            "url": "https://www.cert.fi/haavoittuvuudet/2008/tcp-vulnerabilities.html"
          },
          {
            "trust": 2.6,
            "url": "http://www.cpni.gov.uk/docs/tn-03-09-security-assessment-tcp.pdf"
          },
          {
            "trust": 2.6,
            "url": "http://www.us-cert.gov/cas/techalerts/ta09-251a.html"
          },
          {
            "trust": 2.1,
            "url": "http://blog.robertlee.name/2008/10/conjecture-speculation.html"
          },
          {
            "trust": 1.8,
            "url": "http://www.cisco.com/en/us/products/products_security_response09186a0080a15120.html"
          },
          {
            "trust": 1.8,
            "url": "http://www.cisco.com/en/us/products/products_security_advisory09186a0080af511d.shtml"
          },
          {
            "trust": 1.8,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujul2012-392727.html"
          },
          {
            "trust": 1.8,
            "url": "http://www.mandriva.com/security/advisories?name=mdvsa-2013:150"
          },
          {
            "trust": 1.8,
            "url": "http://insecure.org/stf/tcp-dos-attack-explained.html"
          },
          {
            "trust": 1.8,
            "url": "http://searchsecurity.techtarget.com.au/articles/27154-tcp-is-fundamentally-borked"
          },
          {
            "trust": 1.8,
            "url": "http://www.outpost24.com/news/news-2008-10-02.html"
          },
          {
            "trust": 1.8,
            "url": "http://lists.immunitysec.com/pipermail/dailydave/2008-october/005360.html"
          },
          {
            "trust": 1.8,
            "url": "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2009/ms09-048"
          },
          {
            "trust": 1.8,
            "url": "https://oval.cisecurity.org/repository/search/definition/oval%3aorg.mitre.oval%3adef%3a6340"
          },
          {
            "trust": 1.7,
            "url": "http://marc.info/?l=bugtraq\u0026m=125856010926699\u0026w=2"
          },
          {
            "trust": 1.6,
            "url": "http://tools.ietf.org/html/draft-ananth-tcpm-persist-01"
          },
          {
            "trust": 1.6,
            "url": "http://www.securityfocus.com/archive/1/507953"
          },
          {
            "trust": 1.2,
            "url": "http://www.microsoft.com/technet/security/bulletin/ms09-048.mspx"
          },
          {
            "trust": 1.2,
            "url": "http://www.kb.cert.org/vuls/id/723308"
          },
          {
            "trust": 1.1,
            "url": "http://sunsolve.sun.com/search/document.do?assetkey=1-66-267088-1"
          },
          {
            "trust": 0.8,
            "url": "http://tools.ietf.org/html/rfc1122#page-92"
          },
          {
            "trust": 0.8,
            "url": "http://tools.ietf.org/html/draft-mahesh-persist-timeout-02"
          },
          {
            "trust": 0.8,
            "url": "http://shlang.com/netkill/"
          },
          {
            "trust": 0.8,
            "url": "http://www.netasq.com/en/threats/sockstress.php"
          },
          {
            "trust": 0.8,
            "url": "http://www.phrack.org/issues.html?issue=66\u0026id=9#article"
          },
          {
            "trust": 0.8,
            "url": "http://isc.sans.org/diary.html?storyid=5104"
          },
          {
            "trust": 0.8,
            "url": "http://www.t2.fi/2008/08/27/jack-c-louis-and-robert-e-lee-to-talk-about-new-dos-attack-vectors/"
          },
          {
            "trust": 0.8,
            "url": "http://www.darkreading.com/blog.asp?blog_sectionid=403\u0026doc_id=164939\u0026wt.svl=tease2_2"
          },
          {
            "trust": 0.8,
            "url": "http://www.ietf.org/mail-archive/web/tcpm/current/msg04040.html"
          },
          {
            "trust": 0.8,
            "url": "http://www.ietf.org/mail-archive/web/tcpm/current/msg03826.html"
          },
          {
            "trust": 0.8,
            "url": "http://www.ietf.org/mail-archive/web/tcpm/current/msg03503.html"
          },
          {
            "trust": 0.8,
            "url": "http://www.ietf.org/mail-archive/web/tcpm/current/msg02870.html"
          },
          {
            "trust": 0.8,
            "url": "http://www.ietf.org/mail-archive/web/tcpm/current/msg02557.html"
          },
          {
            "trust": 0.8,
            "url": "http://www.ietf.org/mail-archive/web/tcpm/current/msg02189.html"
          },
          {
            "trust": 0.8,
            "url": "http://git.kernel.org/?p=linux/kernel/git/stable/linux-2.6.31.y.git;a=blob;f=net/ipv4/tcp_timer.c;h=b144a26359bcf34a4b0606e171f97dc709afdfbb;hb=120f68c426e746771e8c09736c0f753822ff3f52#l233"
          },
          {
            "trust": 0.8,
            "url": "http://sla.ckers.org/forum/read.php?14,27324"
          },
          {
            "trust": 0.8,
            "url": "http://www.checkpoint.com/defense/advisories/public/announcement/090809-tcpip-dos-sockstress.html"
          },
          {
            "trust": 0.8,
            "url": "http://www.securityfocus.com/archive/1/archive/1/506331/100/0/"
          },
          {
            "trust": 0.8,
            "url": "https://supportcenter.checkpoint.com/supportcenter/portal?eventsubmit_dogoviewsolutiondetails=\u0026solutionid=sk42725"
          },
          {
            "trust": 0.8,
            "url": "http://kbase.redhat.com/faq/docs/doc-21623"
          },
          {
            "trust": 0.8,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2008-4609"
          },
          {
            "trust": 0.8,
            "url": "http://www.cpni.gov.uk/products/technicalnotes/feb-09-security-assessment-tcp.aspx"
          },
          {
            "trust": 0.8,
            "url": "http://tools.ietf.org/html/rfc793"
          },
          {
            "trust": 0.8,
            "url": "http://www.ipa.go.jp/security/vuln/vuln_tcpip.html"
          },
          {
            "trust": 0.8,
            "url": "http://www.jpcert.or.jp/at/2009/at090019.txt"
          },
          {
            "trust": 0.8,
            "url": "http://www.jpcert.or.jp/at/2009/at090018.txt"
          },
          {
            "trust": 0.8,
            "url": "http://jvn.jp/cert/jvnvu943657/index.html"
          },
          {
            "trust": 0.8,
            "url": "http://jvn.jp/cert/jvnta09-251a/"
          },
          {
            "trust": 0.8,
            "url": "http://jvn.jp/tr/jvntr-2009-22"
          },
          {
            "trust": 0.8,
            "url": "http://web.nvd.nist.gov/view/vuln/detail?vulnid=cve-2008-4609"
          },
          {
            "trust": 0.8,
            "url": "http://secunia.com/advisories/36802"
          },
          {
            "trust": 0.8,
            "url": "http://secunia.com/advisories/37044/"
          },
          {
            "trust": 0.8,
            "url": "http://secunia.com/advisories/36597"
          },
          {
            "trust": 0.8,
            "url": "http://secunia.com/advisories/36603"
          },
          {
            "trust": 0.8,
            "url": "http://secunia.com/advisories/36602"
          },
          {
            "trust": 0.8,
            "url": "http://www.securityfocus.com/bid/31545"
          },
          {
            "trust": 0.8,
            "url": "http://www.us-cert.gov/cas/alerts/sa09-251a.html"
          },
          {
            "trust": 0.8,
            "url": "http://www.vupen.com/english/advisories/2009/2567"
          },
          {
            "trust": 0.8,
            "url": "http://www.vupen.com/english/advisories/2009/2954"
          },
          {
            "trust": 0.8,
            "url": "http://www.cyberpolice.go.jp/#topics"
          },
          {
            "trust": 0.3,
            "url": "http://blogs.technet.com/srd/archive/2009/09/08/assessing-the-risk-of-the-september-critical-security-bulletins.aspx"
          },
          {
            "trust": 0.3,
            "url": "http://blogs.technet.com/srd/archive/2009/09/08/ms09-048-tcp-ip-vulnerabilities.aspx"
          },
          {
            "trust": 0.3,
            "url": "/archive/1/504375"
          },
          {
            "trust": 0.3,
            "url": "http://support.nortel.com/go/main.jsp?cscat=bltndetail\u0026documentoid=971633\u0026poid="
          },
          {
            "trust": 0.3,
            "url": "http://www.rtpro.yamaha.co.jp/rt/faq/security/vu943657.html"
          },
          {
            "trust": 0.3,
            "url": "http://support.avaya.com/css/p8/documents/100065311"
          },
          {
            "trust": 0.3,
            "url": "http://support.avaya.com/css/p8/documents/100065799"
          },
          {
            "trust": 0.3,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20090908-tcp24.shtml"
          },
          {
            "trust": 0.3,
            "url": "http://www.cisco.com/warp/public/707/cisco-sr-20081017-tcp.shtml"
          },
          {
            "trust": 0.3,
            "url": "https://kc.mcafee.com/corporate/index?page=content\u0026id=kb66963"
          },
          {
            "trust": 0.3,
            "url": "http://support.citrix.com/article/ctx123649"
          },
          {
            "trust": 0.3,
            "url": "http://www11.itrc.hp.com/service/cki/docdisplay.do?doclocale=en\u0026docid=emr_na-c01923093-1"
          },
          {
            "trust": 0.3,
            "url": "http://support.nortel.com/go/main.jsp?cscat=bltndetail\u0026id=962027"
          },
          {
            "trust": 0.3,
            "url": "https://kb.bluecoat.com/index?page=content\u0026id=sa36"
          },
          {
            "trust": 0.3,
            "url": "https://kb.bluecoat.com/index?page=content\u0026id=sa37"
          },
          {
            "trust": 0.3,
            "url": "https://kb.bluecoat.com/index?page=content\u0026id=sa35"
          },
          {
            "trust": 0.3,
            "url": "https://supportcenter.checkpoint.com/supportcenter/portal?eventsubmit_dogoviewsolutiondetails=\u0026solutionid=sk42723"
          },
          {
            "trust": 0.3,
            "url": "https://support.f5.com/kb/en-us/solutions/public/10000/500/sol10509.html"
          },
          {
            "trust": 0.3,
            "url": "http://www.stonesoft.com/en/support/security_advisories/2009_17_09.html"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=125856010926699\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "https://cwe.mitre.org/data/definitions/16.html"
          },
          {
            "trust": 0.1,
            "url": "https://cwe.mitre.org/data/definitions/.html"
          },
          {
            "trust": 0.1,
            "url": "https://github.com/live-hack-cve/cve-2008-4609"
          },
          {
            "trust": 0.1,
            "url": "https://github.com/marcelki/sockstress"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov"
          },
          {
            "trust": 0.1,
            "url": "http://tools.cisco.com/security/center/content/ciscosecurityadvisory/cisco-sa-20090908-tcp24"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/secunia_security_advisories/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/business_solutions/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/36597/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/about_secunia_advisories/"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2008-4609"
          },
          {
            "trust": 0.1,
            "url": "http://www.itrc.hp.com/service/cki/secbullarchive.do"
          },
          {
            "trust": 0.1,
            "url": "http://www.hp.com"
          },
          {
            "trust": 0.1,
            "url": "http://h30046.www3.hp.com/driveralertprofile.php?regioncode=na\u0026langcode=useng\u0026jumpid=in_sc-gen__driveritrc\u0026topiccode=itrc"
          },
          {
            "trust": 0.1,
            "url": "http://h30046.www3.hp.com/subsignin.php"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#723308"
          },
          {
            "db": "VULHUB",
            "id": "VHN-34734"
          },
          {
            "db": "VULMON",
            "id": "CVE-2008-4609"
          },
          {
            "db": "BID",
            "id": "31545"
          },
          {
            "db": "PACKETSTORM",
            "id": "81054"
          },
          {
            "db": "PACKETSTORM",
            "id": "82772"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200810-307"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-002090"
          },
          {
            "db": "NVD",
            "id": "CVE-2008-4609"
          }
        ]
      },
      "sources": {
        "_id": null,
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#723308",
            "ident": null
          },
          {
            "db": "VULHUB",
            "id": "VHN-34734",
            "ident": null
          },
          {
            "db": "VULMON",
            "id": "CVE-2008-4609",
            "ident": null
          },
          {
            "db": "BID",
            "id": "31545",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "81054",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "82772",
            "ident": null
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200810-307",
            "ident": null
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-002090",
            "ident": null
          },
          {
            "db": "NVD",
            "id": "CVE-2008-4609",
            "ident": null
          }
        ]
      },
      "sources_release_date": {
        "_id": null,
        "data": [
          {
            "date": "2009-11-23T00:00:00",
            "db": "CERT/CC",
            "id": "VU#723308",
            "ident": null
          },
          {
            "date": "2008-10-20T00:00:00",
            "db": "VULHUB",
            "id": "VHN-34734",
            "ident": null
          },
          {
            "date": "2008-10-20T00:00:00",
            "db": "VULMON",
            "id": "CVE-2008-4609",
            "ident": null
          },
          {
            "date": "2008-10-02T00:00:00",
            "db": "BID",
            "id": "31545",
            "ident": null
          },
          {
            "date": "2009-09-09T16:34:28",
            "db": "PACKETSTORM",
            "id": "81054",
            "ident": null
          },
          {
            "date": "2009-11-18T16:25:02",
            "db": "PACKETSTORM",
            "id": "82772",
            "ident": null
          },
          {
            "date": "2008-10-20T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-200810-307",
            "ident": null
          },
          {
            "date": "2009-10-14T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2009-002090",
            "ident": null
          },
          {
            "date": "2008-10-20T17:59:26.163000",
            "db": "NVD",
            "id": "CVE-2008-4609",
            "ident": null
          }
        ]
      },
      "sources_update_date": {
        "_id": null,
        "data": [
          {
            "date": "2013-02-13T00:00:00",
            "db": "CERT/CC",
            "id": "VU#723308",
            "ident": null
          },
          {
            "date": "2022-12-14T00:00:00",
            "db": "VULHUB",
            "id": "VHN-34734",
            "ident": null
          },
          {
            "date": "2022-12-14T00:00:00",
            "db": "VULMON",
            "id": "CVE-2008-4609",
            "ident": null
          },
          {
            "date": "2012-07-30T20:21:00",
            "db": "BID",
            "id": "31545",
            "ident": null
          },
          {
            "date": "2019-05-05T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-200810-307",
            "ident": null
          },
          {
            "date": "2012-07-20T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2009-002090",
            "ident": null
          },
          {
            "date": "2025-04-09T00:30:58.490000",
            "db": "NVD",
            "id": "CVE-2008-4609",
            "ident": null
          }
        ]
      },
      "threat_type": {
        "_id": null,
        "data": "remote",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-200810-307"
          }
        ],
        "trust": 0.6
      },
      "title": {
        "_id": null,
        "data": "TCP may keep its offered receive window closed indefinitely (RFC 1122)",
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#723308"
          }
        ],
        "trust": 0.8
      },
      "type": {
        "_id": null,
        "data": "configuration error",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-200810-307"
          }
        ],
        "trust": 0.6
      }
    }

    VAR-200901-0466

    Vulnerability from variot - Updated: 2026-03-09 21:53

    The MD5 Message-Digest Algorithm is not collision resistant, which makes it easier for context-dependent attackers to conduct spoofing attacks, as demonstrated by attacks on the use of MD5 in the signature algorithm of an X.509 certificate. Weaknesses in the MD5 algorithm allow for collisions in output. As a result, attackers can generate cryptographic tokens or other data that illegitimately appear to be authentic. Is a one-way hash function MD5 Outputs a value called a fixed-length message digest from the input value. A secure hash function must be extremely difficult to find an input value that corresponds to a particular message digest. That the same message digest is output from different inputs. " collision " Call it. 1996 From the year MD5 Attack methods that exploit the lack of collision resistance of algorithms have been reported. After that, this attack technique X.509 It can be used to forge certificates, 2008 A year CA Based on a certificate signed by CA It was reported that the certificate was successfully forged. MD5 Products that use the algorithm are affected.MD5 There are various effects depending on the usage pattern. As an example, forged SSL Trusting a malicious website using a certificate may cause information leakage. Attackers may take advantage of this issue to generate pairs of different, valid X.509 certificates that share a common signature. An attacker is most likely to exploit this issue to conduct phishing attacks or to impersonate legitimate sites by taking advantage of malicious certificates. Other attacks are likely possible. - HPE iMC PLAT - Please refer to the RESOLUTION below for a list of impacted products. All product versions are impacted prior to the fixed version listed.

    • iMC PLAT - Version: IMC PLAT 7.2, E0403P10

      • JD125A HP IMC Std S/W Platform w/100-node
      • JD126A HP IMC Ent S/W Platform w/100-node
      • JD808A HP IMC Ent Platform w/100-node License
      • JD814A HP A-IMC Enterprise Edition Software DVD Media
      • JD815A HP IMC Std Platform w/100-node License
      • JD816A HP A-IMC Standard Edition Software DVD Media
      • JF288AAE HP Network Director to Intelligent Management Center Upgrade E-LTU
      • JF289AAE HP Enterprise Management System to Intelligent Management Center Upgrade E-LTU
      • JF377A HP IMC Std S/W Platform w/100-node Lic
      • JF377AAE HP IMC Std S/W Pltfrm w/100-node E-LTU
      • JF378A HP IMC Ent S/W Platform w/200-node Lic
      • JF378AAE HP IMC Ent S/W Pltfrm w/200-node E-LTU
      • JG546AAE HP IMC Basic SW Platform w/50-node E-LTU
      • JG548AAE HP PCM+ to IMC Bsc Upgr w/50-node E-LTU
      • JG549AAE HP PCM+ to IMC Std Upgr w/200-node E-LTU
      • JG747AAE HP IMC Std SW Plat w/ 50 Nodes E-LTU
      • JG748AAE HP IMC Ent SW Plat w/ 50 Nodes E-LTU
      • JG550AAE HPE PCM+ Mobility Manager to IMC Basic WLAN Platform Upgrade 50-node and 150-AP E-LTU
      • JG590AAE HPE IMC Basic WLAN Manager Software Platform 50 Access Point E-LTU
      • JG660AAE HP IMC Smart Connect with Wireless Manager Virtual Appliance Edition E-LTU
      • JG766AAE HP IMC Smart Connect Virtual Appliance Edition E-LTU
      • JG767AAE HP IMC Smart Connect with Wireless Manager Virtual Appliance Edition E-LTU
      • JG768AAE HPE PCM+ to IMC Standard Software Platform Upgrade with 200-node E-LTU

    Note: Please contact HPE Technical Support if any assistance is needed acquiring the software updates.

    HISTORY Version:1 (rev.1) - 26 September 2016 Initial release

    Third Party Security Patches: Third party security patches that are to be installed on systems running Hewlett Packard Enterprise (HPE) software products should be applied in accordance with the customer's patch management policy. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256

    Note: the current version of the following document is available here: https://h20564.www2.hpe.com/hpsc/doc/public/display?docId=emr_na-c05336888

    SUPPORT COMMUNICATION - SECURITY BULLETIN

    Document ID: c05336888 Version: 1

    HPSBHF03673 rev.1 - HPE Comware 5 and Comware 7 Network Products using SSL/TLS, Multiple Remote Vulnerabilities

    NOTICE: The information in this Security Bulletin should be acted upon as soon as possible.

    Release Date: 2016-11-18 Last Updated: 2016-11-18

    Potential Security Impact: Remote: Multiple Vulnerabilities

    Source: Hewlett Packard Enterprise, Product Security Response Team

    VULNERABILITY SUMMARY Security vulnerabilities in MD5 message digest algorithm and RC4 ciphersuite could potentially impact HPE Comware 5 and Comware 7 network products using SSL/TLS. These vulnerabilities could be exploited remotely to conduct spoofing attacks and plaintext recovery attacks resulting in disclosure of information.

    References:

    • CVE-2004-2761 - MD5 Hash Collision Vulnerability
    • CVE-2013-2566 - SSL/TLS RC4 algorithm vulnerability
    • CVE-2015-2808 - SSL/TLS RC4 stream vulnerability known as "Bar Mitzvah"

    SUPPORTED SOFTWARE VERSIONS*: ONLY impacted versions are listed.

    • Comware 5 (CW5) Products All versions
    • Comware 7 (CW7) Products All versions

    BACKGROUND

    CVSS Base Metrics ================= Reference, CVSS V3 Score/Vector, CVSS V2 Score/Vector

    CVE-2004-2761
      5.3 CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
      5.0 (AV:N/AC:L/Au:N/C:N/I:P/A:N)
    
    CVE-2013-2566
      5.3 CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
      4.3 (AV:N/AC:M/Au:N/C:P/I:N/A:N)
    
    CVE-2015-2808
      5.3 CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
      4.3 (AV:N/AC:M/Au:N/C:P/I:N/A:N)
    
    Information on CVSS is documented in
    HPE Customer Notice HPSN-2008-002 here:
    

    https://h20564.www2.hpe.com/hpsc/doc/public/display?docId=emr_na-c01345499

    RESOLUTION

    HPE has released the following mitigation information to resolve the vulnerabilities in HPE Comware 5 and Comware 7 network products.

    Note: Please contact HPE Technical Support for any assistance configuring the recommended settings.

    Mitigation for the hash collision vulnerability in the MD5 Algorithm:

    • For Comware V7, this issue only exists when the key-type is RSA and the public key length less than 1024 bits. Since the default length of the RSA key is 1024 bits, the length should only have to be set manually if necessary.

      Example command to set the RSA key length to 1024 bits:

        public-key rsa general name xxx length 1024
      
    • For Comware V5, this issue only exists when the key-type is RSA. HPE recommends using DSA and ECDSA keys and not an RSA key.

    Mitigation for the RC4 vulnerabilities:

    HPE recommends disabling RC2 and RC4 ciphers.

    • For Comware V7, remove the RC2/RC4 ciphers:

      • exp_rsa_rc2_md5
      • exp_rsa_rc4_md5
      • rsa_rc4_128_md5
      • rsa_rc4_128_sha

        Example using the ssl server-policy anamea ciphersuite command to omit the RC2/RC4 ciphers:

        ssl server-policy anamea ciphersuite { dhe_rsa_aes_128_cbc_sha |
        

        dhe_rsa_aes_256_cbc_sha | exp_rsa_des_cbc_sha | rsa_3des_ede_cbc_sha | rsa_aes_128_cbc_sha | rsa_aes_256_cbc_sha | rsa_des_cbc_sha }

        Example using the ssl client-policy anamea prefer-cipher command to omit the RC2/RC4 ciphers:

        ssl client-policy anamea prefer-cipher { dhe_rsa_aes_128_cbc_sha
        

        | dhe_rsa_aes_256_cbc_sha | exp_rsa_des_cbc_sha | rsa_3des_ede_cbc_sha | rsa_aes_128_cbc_sha | rsa_aes_256_cbc_sha | rsa_des_cbc_sha }

    • For Comware V5, remove the following RC4 ciphers:

      • rsa_rc4_128_md5
      • rsa_rc4_128_sha

        Example using the ssl server-policy anamea ciphersuite command to omit the RC4 ciphers:

        ssl server-policy anamea ciphersuite { rsa_3des_ede_cbc_sha |
        

        rsa_aes_128_cbc_sha | rsa_aes_256_cbc_sha| rsa_des_cbc_sha }

        Example using the ssl client-policy anamea prefer-cipher command to omit the RC4 ciphers:

        ssl client-policy anamea prefer-cipher { rsa_3des_ede_cbc_sha |
        

        rsa_aes_128_cbc_sha |rsa_aes_256_cbc_sha | rsa_des_cbc_sha }

    COMWARE 5 Products

    • HSR6602 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JC176A HP 6602 Router Chassis
      • JG353A HP HSR6602-G Router
      • JG354A HP HSR6602-XG Router
      • JG355A HP 6600 MCP-X1 Router Main Processing Unit
      • JG356A HP 6600 MCP-X2 Router Main Processing Unit
      • JG776A HP HSR6602-G TAA-compliant Router
      • JG777A HP HSR6602-XG TAA-compliant Router
      • JG778A HP 6600 MCP-X2 Router TAA-compliant Main Processing Unit
    • HSR6800 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG361A HP HSR6802 Router Chassis
      • JG361B HP HSR6802 Router Chassis
      • JG362A HP HSR6804 Router Chassis
      • JG362B HP HSR6804 Router Chassis
      • JG363A HP HSR6808 Router Chassis
      • JG363B HP HSR6808 Router Chassis
      • JG364A HP HSR6800 RSE-X2 Router Main Processing Unit
      • JG779A HP HSR6800 RSE-X2 Router TAA-compliant Main Processing Unit
    • MSR20 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD432A HP A-MSR20-21 Router
      • JD662A HP MSR20-20 Router
      • JD663A HP A-MSR20-21 Router
      • JD663B HP MSR20-21 Router
      • JD664A HP MSR20-40 Router
      • JF228A HP MSR20-40 Router
      • JF283A HP MSR20-20 Router
    • MSR20-1X (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD431A HP MSR20-10 Router
      • JD667A HP MSR20-15 IW Multi-Service Router
      • JD668A HP MSR20-13 Multi-Service Router
      • JD669A HP MSR20-13 W Multi-Service Router
      • JD670A HP MSR20-15 A Multi-Service Router
      • JD671A HP MSR20-15 AW Multi-Service Router
      • JD672A HP MSR20-15 I Multi-Service Router
      • JD673A HP MSR20-11 Multi-Service Router
      • JD674A HP MSR20-12 Multi-Service Router
      • JD675A HP MSR20-12 W Multi-Service Router
      • JD676A HP MSR20-12 T1 Multi-Service Router
      • JF236A HP MSR20-15-I Router
      • JF237A HP MSR20-15-A Router
      • JF238A HP MSR20-15-I-W Router
      • JF239A HP MSR20-11 Router
      • JF240A HP MSR20-13 Router
      • JF241A HP MSR20-12 Router
      • JF806A HP MSR20-12-T Router
      • JF807A HP MSR20-12-W Router
      • JF808A HP MSR20-13-W Router
      • JF809A HP MSR20-15-A-W Router
      • JF817A HP MSR20-15 Router
      • JG209A HP MSR20-12-T-W Router (NA)
      • JG210A HP MSR20-13-W Router (NA)
    • MSR 30 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD654A HP MSR30-60 POE Multi-Service Router
      • JD657A HP MSR30-40 Multi-Service Router
      • JD658A HP MSR30-60 Multi-Service Router
      • JD660A HP MSR30-20 POE Multi-Service Router
      • JD661A HP MSR30-40 POE Multi-Service Router
      • JD666A HP MSR30-20 Multi-Service Router
      • JF229A HP MSR30-40 Router
      • JF230A HP MSR30-60 Router
      • JF232A HP RTMSR3040-AC-OVSAS-H3
      • JF235A HP MSR30-20 DC Router
      • JF284A HP MSR30-20 Router
      • JF287A HP MSR30-40 DC Router
      • JF801A HP MSR30-60 DC Router
      • JF802A HP MSR30-20 PoE Router
      • JF803A HP MSR30-40 PoE Router
      • JF804A HP MSR30-60 PoE Router
      • JG728A HP MSR30-20 TAA-compliant DC Router
      • JG729A HP MSR30-20 TAA-compliant Router
    • MSR 30-16 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD659A HP MSR30-16 POE Multi-Service Router
      • JD665A HP MSR30-16 Multi-Service Router
      • JF233A HP MSR30-16 Router
      • JF234A HP MSR30-16 PoE Router
    • MSR 30-1X (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JF800A HP MSR30-11 Router
      • JF816A HP MSR30-10 2 FE /2 SIC /1 MIM MS Rtr
      • JG182A HP MSR30-11E Router
      • JG183A HP MSR30-11F Router
      • JG184A HP MSR30-10 DC Router
    • MSR 50 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD433A HP MSR50-40 Router
      • JD653A HP MSR50 Processor Module
      • JD655A HP MSR50-40 Multi-Service Router
      • JD656A HP MSR50-60 Multi-Service Router
      • JF231A HP MSR50-60 Router
      • JF285A HP MSR50-40 DC Router
      • JF640A HP MSR50-60 Rtr Chassis w DC PwrSupply
    • MSR 50-G2 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD429A HP MSR50 G2 Processor Module
      • JD429B HP MSR50 G2 Processor Module
    • MSR 9XX (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JF812A HP MSR900 Router
      • JF813A HP MSR920 Router
      • JF814A HP MSR900-W Router
      • JF815A HP MSR920 2FEWAN/8FELAN/.11 b/g Rtr
      • JG207A HP MSR900-W Router (NA)
      • JG208A HP MSR920-W Router (NA)
    • MSR 93X (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG511A HP MSR930 Router
      • JG511B HP MSR930 Router
      • JG512A HP MSR930 Wireless Router
      • JG513A HP MSR930 3G Router
      • JG513B HP MSR930 3G Router
      • JG514A HP MSR931 Router
      • JG514B HP MSR931 Router
      • JG515A HP MSR931 3G Router
      • JG516A HP MSR933 Router
      • JG517A HP MSR933 3G Router
      • JG518A HP MSR935 Router
      • JG518B HP MSR935 Router
      • JG519A HP MSR935 Wireless Router
      • JG520A HP MSR935 3G Router
      • JG531A HP MSR931 Dual 3G Router
      • JG531B HP MSR931 Dual 3G Router
      • JG596A HP MSR930 4G LTE/3G CDMA Router
      • JG597A HP MSR936 Wireless Router
      • JG665A HP MSR930 4G LTE/3G WCDMA Global Router
      • JG704A HP MSR930 4G LTE/3G WCDMA ATT Router
      • JH009A HP MSR931 Serial (TI) Router
      • JH010A HP MSR933 G.SHDSL (TI) Router
      • JH011A HP MSR935 ADSL2+ (TI) Router
      • JH012A HP MSR930 Wireless 802.11n (NA) Router
      • JH012B HP MSR930 Wireless 802.11n (NA) Router
      • JH013A HP MSR935 Wireless 802.11n (NA) Router
    • MSR1000 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG732A HP MSR1003-8 AC Router
    • 12500 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JC072B HP 12500 Main Processing Unit
      • JC085A HP A12518 Switch Chassis
      • JC086A HP A12508 Switch Chassis
      • JC652A HP 12508 DC Switch Chassis
      • JC653A HP 12518 DC Switch Chassis
      • JC654A HP 12504 AC Switch Chassis
      • JC655A HP 12504 DC Switch Chassis
      • JC808A HP 12500 TAA Main Processing Unit
      • JF430A HP A12518 Switch Chassis
      • JF430B HP 12518 Switch Chassis
      • JF430C HP 12518 AC Switch Chassis
      • JF431A HP A12508 Switch Chassis
      • JF431B HP 12508 Switch Chassis
      • JF431C HP 12508 AC Switch Chassis
    • 9500E (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JC124A HP A9508 Switch Chassis
      • JC124B HP 9505 Switch Chassis
      • JC125A HP A9512 Switch Chassis
      • JC125B HP 9512 Switch Chassis
      • JC474A HP A9508-V Switch Chassis
      • JC474B HP 9508-V Switch Chassis
    • 10500 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JC611A HP 10508-V Switch Chassis
      • JC612A HP 10508 Switch Chassis
      • JC613A HP 10504 Switch Chassis
      • JC614A HP 10500 Main Processing Unit
      • JC748A HP 10512 Switch Chassis
      • JG375A HP 10500 TAA-compliant Main Processing Unit
      • JG820A HP 10504 TAA-compliant Switch Chassis
      • JG821A HP 10508 TAA-compliant Switch Chassis
      • JG822A HP 10508-V TAA-compliant Switch Chassis
      • JG823A HP 10512 TAA-compliant Switch Chassis
    • 7500 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JC666A HP 7503-S 144Gbps Fabric/MPU with PoE Upgradable 20-port Gig-T/4-port GbE Combo
      • JC697A HP 7502 TAA-compliant Main Processing Unit
      • JC698A HP 7503-S 144Gbps TAA Fabric / MPU with 16 GbE SFP Ports and 8 GbE Combo Ports
      • JC699A HP 7500 384Gbps TAA-compliant Fabric / MPU with 2 10GbE XFP Ports
      • JC700A HP 7500 384Gbps TAA-compliant Fabric / Main Processing Unit
      • JC701A HP 7500 768Gbps TAA-compliant Fabric / Main Processing Unit
      • JD193A HP 7500 384Gbps Fabric Module with 2 XFP Ports
      • JD193B HP 7500 384Gbps Fabric Module with 2 XFP Ports
      • JD194A HP 7500 384Gbps Fabric Module
      • JD194B HP 7500 384Gbps Fabric Module
      • JD195A HP 7500 384Gbps Advanced Fabric Module
      • JD196A HP 7502 Fabric Module
      • JD220A HP 7500 768Gbps Fabric Module
      • JD224A HP 7500 384Gbps Fabric Module with 12 SFP Ports
      • JD238A HP 7510 Switch Chassis
      • JD238B HP 7510 Switch Chassis
      • JD239A HP 7506 Switch Chassis
      • JD239B HP 7506 Switch Chassis
      • JD240A HP 7503 Switch Chassis
      • JD240B HP 7503 Switch Chassis
      • JD241A HP 7506-V Switch Chassis
      • JD241B HP 7506-V Switch Chassis
      • JD242A HP 7502 Switch Chassis
      • JD242B HP 7502 Switch Chassis
      • JD243A HP 7503-S Switch Chassis with 1 Fabric Slot
      • JD243B HP 7503-S Switch Chassis with 1 Fabric Slot
      • JE164A HP E7902 Switch Chassis
      • JE165A HP E7903 Switch Chassis
      • JE166A HP E7903 1 Fabric Slot Switch Chassis
      • JE167A HP E7906 Switch Chassis
      • JE168A HP E7906 Vertical Switch Chassis
      • JE169A HP E7910 Switch Chassis
    • 6125G/XG Blade Switch - Version: See Mitigation
      • HP Network Products
      • 737220-B21 HP 6125G Blade Switch with TAA
      • 737226-B21 HP 6125G/XG Blade Switch with TAA
      • 658250-B21 HP 6125G/XG Blade Switch Opt Kit
      • 658247-B21 HP 6125G Blade Switch Opt Kit
    • 5830 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JC691A HP 5830AF-48G Switch with 1 Interface Slot
      • JC694A HP 5830AF-96G Switch
      • JG316A HP 5830AF-48G TAA-compliant Switch w/1 Interface Slot
      • JG374A HP 5830AF-96G TAA-compliant Switch
    • 5800 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JC099A HP 5800-24G-PoE Switch
      • JC099B HP 5800-24G-PoE+ Switch
      • JC100A HP 5800-24G Switch
      • JC100B HP 5800-24G Switch
      • JC101A HP 5800-48G Switch with 2 Slots
      • JC101B HP 5800-48G-PoE+ Switch with 2 Interface Slots
      • JC103A HP 5800-24G-SFP Switch
      • JC103B HP 5800-24G-SFP Switch with 1 Interface Slot
      • JC104A HP 5800-48G-PoE Switch
      • JC104B HP 5800-48G-PoE+ Switch with 1 Interface Slot
      • JC105A HP 5800-48G Switch
      • JC105B HP 5800-48G Switch with 1 Interface Slot
      • JG254A HP 5800-24G-PoE+ TAA-compliant Switch
      • JG254B HP 5800-24G-PoE+ TAA-compliant Switch
      • JG255A HP 5800-24G TAA-compliant Switch
      • JG255B HP 5800-24G TAA-compliant Switch
      • JG256A HP 5800-24G-SFP TAA-compliant Switch with 1 Interface Slot
      • JG256B HP 5800-24G-SFP TAA-compliant Switch with 1 Interface Slot
      • JG257A HP 5800-48G-PoE+ TAA-compliant Switch with 1 Interface Slot
      • JG257B HP 5800-48G-PoE+ TAA-compliant Switch with 1 Interface Slot
      • JG258A HP 5800-48G TAA-compliant Switch with 1 Interface Slot
      • JG258B HP 5800-48G TAA-compliant Switch with 1 Interface Slot
      • JG225A HP 5800AF-48G Switch
      • JG225B HP 5800AF-48G Switch
      • JG242A HP 5800-48G-PoE+ TAA-compliant Switch with 2 Interface Slots
      • JG242B HP 5800-48G-PoE+ TAA-compliant Switch with 2 Interface
      • JG243A HP 5820-24XG-SFP+ TAA-compliant Switch
      • JG243B HP 5820-24XG-SFP+ TAA-compliant Switch
      • JG259A HP 5820X-14XG-SFP+ TAA-compliant Switch with 2 Interface Slots & 1 OAA Slot
      • JG259B HP 5820-14XG-SFP+ TAA-compliant Switch with 2 Interface Slots and 1 OAA Slot
      • JC106A HP 5820-14XG-SFP+ Switch with 2 Slots
      • JC106B HP 5820-14XG-SFP+ Switch with 2 Interface Slots & 1 OAA Slot
      • JG219A HP 5820AF-24XG Switch
      • JG219B HP 5820AF-24XG Switch
      • JC102A HP 5820-24XG-SFP+ Switch
      • JC102B HP 5820-24XG-SFP+ Switch
    • 5500 HI (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG311A HP 5500-24G-4SFP HI Switch with 2 Interface Slots
      • JG312A HP 5500-48G-4SFP HI Switch with 2 Interface Slots
      • JG541A HP 5500-24G-PoE+-4SFP HI Switch with 2 Interface Slots
      • JG542A HP 5500-48G-PoE+-4SFP HI Switch with 2 Interface Slots
      • JG543A HP 5500-24G-SFP HI Switch with 2 Interface Slots
      • JG679A HP 5500-24G-PoE+-4SFP HI TAA-compliant Switch with 2 Interface Slots
      • JG680A HP 5500-48G-PoE+-4SFP HI TAA-compliant Switch with 2 Interface Slots
      • JG681A HP 5500-24G-SFP HI TAA-compliant Switch with 2 Interface Slots
    • 5500 EI (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD373A HP 5500-24G DC EI Switch
      • JD374A HP 5500-24G-SFP EI Switch
      • JD375A HP 5500-48G EI Switch
      • JD376A HP 5500-48G-PoE EI Switch
      • JD377A HP 5500-24G EI Switch
      • JD378A HP 5500-24G-PoE EI Switch
      • JD379A HP 5500-24G-SFP DC EI Switch
      • JG240A HP 5500-48G-PoE+ EI Switch with 2 Interface Slots
      • JG241A HP 5500-24G-PoE+ EI Switch with 2 Interface Slots
      • JG249A HP 5500-24G-SFP EI TAA-compliant Switch with 2 Interface
      • JG250A HP 5500-24G EI TAA-compliant Switch with 2 Interface Slots
      • JG251A HP 5500-48G EI TAA-compliant Switch with 2 Interface Slots
      • JG252A HP 5500-24G-PoE+ EI TAA-compliant Switch with 2 Interface Slots
      • JG253A HP 5500-48G-PoE+ EI TAA-compliant Switch with 2 Interface Slots
    • 4800G (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD007A HP 4800-24G Switch
      • JD008A HP 4800-24G-PoE Switch
      • JD009A HP 4800-24G-SFP Switch
      • JD010A HP 4800-48G Switch
      • JD011A HP 4800-48G-PoE Switch
    • 5500SI (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD369A HP 5500-24G SI Switch
      • JD370A HP 5500-48G SI Switch
      • JD371A HP 5500-24G-PoE SI Switch
      • JD372A HP 5500-48G-PoE SI Switch
      • JG238A HP 5500-24G-PoE+ SI Switch with 2 Interface Slots
      • JG239A HP 5500-48G-PoE+ SI Switch with 2 Interface Slots
    • 4500G (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JF428A HP 4510-48G Switch
      • JF847A HP 4510-24G Switch
    • 5120 EI (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JE066A HP 5120-24G EI Switch
      • JE067A HP 5120-48G EI Switch
      • JE068A HP 5120-24G EI Switch with 2 Interface Slots
      • JE069A HP 5120-48G EI Switch with 2 Interface Slots
      • JE070A HP 5120-24G-PoE EI 2-slot Switch
      • JE071A HP 5120-48G-PoE EI 2-slot Switch
      • JG236A HP 5120-24G-PoE+ EI Switch with 2 Interface Slots
      • JG237A HP 5120-48G-PoE+ EI Switch with 2 Interface Slots
      • JG245A HP 5120-24G EI TAA-compliant Switch with 2 Interface Slots
      • JG246A HP 5120-48G EI TAA-compliant Switch with 2 Interface Slots
      • JG247A HP 5120-24G-PoE+ EI TAA-compliant Switch with 2 Slots
      • JG248A HP 5120-48G-PoE+ EI TAA-compliant Switch with 2 Slots
    • 4210G (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JF844A HP 4210-24G Switch
      • JF845A HP 4210-48G Switch
      • JF846A HP 4210-24G-PoE Switch
    • 5120 SI (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JE072A HP 5120-48G SI Switch
      • JE072B HPE 5120 48G SI Switch
      • JE073A HP 5120-16G SI Switch
      • JE073B HPE 5120 16G SI Switch
      • JE074A HP 5120-24G SI Switch
      • JE074B HPE 5120 24G SI Switch
      • JG091A HP 5120-24G-PoE+ (370W) SI Switch
      • JG091B HPE 5120 24G PoE+ (370W) SI Switch
      • JG092A HP 5120-24G-PoE+ (170W) SI Switch
      • JG309B HPE 5120 8G PoE+ (180W) SI Switch
      • JG310B HPE 5120 8G PoE+ (65W) SI Switch
    • 3610 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD335A HP 3610-48 Switch
      • JD336A HP 3610-24-4G-SFP Switch
      • JD337A HP 3610-24-2G-2G-SFP Switch
      • JD338A HP 3610-24-SFP Switch
    • 3600V2 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG299A HP 3600-24 v2 EI Switch
      • JG299B HP 3600-24 v2 EI Switch
      • JG300A HP 3600-48 v2 EI Switch
      • JG300B HP 3600-48 v2 EI Switch
      • JG301A HP 3600-24-PoE+ v2 EI Switch
      • JG301B HP 3600-24-PoE+ v2 EI Switch
      • JG301C HP 3600-24-PoE+ v2 EI Switch
      • JG302A HP 3600-48-PoE+ v2 EI Switch
      • JG302B HP 3600-48-PoE+ v2 EI Switch
      • JG302C HP 3600-48-PoE+ v2 EI Switch
      • JG303A HP 3600-24-SFP v2 EI Switch
      • JG303B HP 3600-24-SFP v2 EI Switch
      • JG304A HP 3600-24 v2 SI Switch
      • JG304B HP 3600-24 v2 SI Switch
      • JG305A HP 3600-48 v2 SI Switch
      • JG305B HP 3600-48 v2 SI Switch
      • JG306A HP 3600-24-PoE+ v2 SI Switch
      • JG306B HP 3600-24-PoE+ v2 SI Switch
      • JG306C HP 3600-24-PoE+ v2 SI Switch
      • JG307A HP 3600-48-PoE+ v2 SI Switch
      • JG307B HP 3600-48-PoE+ v2 SI Switch
      • JG307C HP 3600-48-PoE+ v2 SI Switch
    • 3100V2-48 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG315A HP 3100-48 v2 Switch
      • JG315B HP 3100-48 v2 Switch
    • HP870 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG723A HP 870 Unified Wired-WLAN Appliance
      • JG725A HP 870 Unified Wired-WLAN TAA-compliant Appliance
    • HP850 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG722A HP 850 Unified Wired-WLAN Appliance
      • JG724A HP 850 Unified Wired-WLAN TAA-compliant Appliance
    • HP830 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG640A HP 830 24-Port PoE+ Unified Wired-WLAN Switch
      • JG641A HP 830 8-port PoE+ Unified Wired-WLAN Switch
      • JG646A HP 830 24-Port PoE+ Unified Wired-WLAN TAA-compliant Switch
      • JG647A HP 830 8-Port PoE+ Unified Wired-WLAN TAA-compliant
    • HP6000 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG639A HP 10500/7500 20G Unified Wired-WLAN Module
      • JG645A HP 10500/7500 20G Unified Wired-WLAN TAA-compliant Module
    • WX5004-EI (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD447B HP WX5002 Access Controller
      • JD448A HP WX5004 Access Controller
      • JD448B HP WX5004 Access Controller
      • JD469A HP WX5004 Access Controller
    • SecBlade FW (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JC635A HP 12500 VPN Firewall Module
      • JD245A HP 9500 VPN Firewall Module
      • JD249A HP 10500/7500 Advanced VPN Firewall Module
      • JD250A HP 6600 Firewall Processing Router Module
      • JD251A HP 8800 Firewall Processing Module
      • JD255A HP 5820 VPN Firewall Module
    • F1000-E (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD272A HP F1000-E VPN Firewall Appliance
    • F1000-A-EI (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG214A HP F1000-A-EI VPN Firewall Appliance
    • F1000-S-EI (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG213A HP F1000-S-EI VPN Firewall Appliance
    • F5000-A (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD259A HP A5000-A5 VPN Firewall Chassis
      • JG215A HP F5000 Firewall Main Processing Unit
      • JG216A HP F5000 Firewall Standalone Chassis
    • U200S and CS (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD273A HP U200-S UTM Appliance
    • U200A and M (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JD275A HP U200-A UTM Appliance
    • F5000-C/S (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG650A HP F5000-C VPN Firewall Appliance
      • JG370A HP F5000-S VPN Firewall Appliance
    • SecBlade III (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG371A HP 12500 20Gbps VPN Firewall Module
      • JG372A HP 10500/11900/7500 20Gbps VPN Firewall Module
    • 6600 RSE RU (Comware 5 Low Encryption SW) - Version: See Mitigation
      • HP Network Products
      • JC177A HP 6608 Router
      • JC177B HP 6608 Router Chassis
      • JC178A HP 6604 Router Chassis
      • JC178B HP 6604 Router Chassis
      • JC496A HP 6616 Router Chassis
      • JC566A HP 6600 RSE-X1 Router Main Processing Unit
      • JG780A HP 6600 RSE-X1 TAA-compliant Main Processing Unit
    • 6600 RPE RU (Comware 5 Low Encryption SW) - Version: See Mitigation
      • HP Network Products
      • JC165A HP 6600 RPE-X1 Router Module
      • JG781A HP 6600 RPE-X1 TAA-compliant Main Processing Unit
    • 6602 RU (Comware 5 Low Encryption SW) - Version: See Mitigation
      • HP Network Products
      • JC176A HP 6602 Router Chassis
    • HSR6602 RU (Comware 5 Low Encryption SW) - Version: See Mitigation
      • HP Network Products
      • JC177A HP 6608 Router
      • JC177B HP 6608 Router Chassis
      • JC178A HP 6604 Router Chassis
      • JC178B HP 6604 Router Chassis
      • JC496A HP 6616 Router Chassis
      • JG353A HP HSR6602-G Router
      • JG354A HP HSR6602-XG Router
      • JG355A HP 6600 MCP-X1 Router Main Processing Unit
      • JG356A HP 6600 MCP-X2 Router Main Processing Unit
      • JG776A HP HSR6602-G TAA-compliant Router
      • JG777A HP HSR6602-XG TAA-compliant Router
      • JG778A HP 6600 MCP-X2 Router TAA-compliant Main Processing Unit
    • HSR6800 RU (Comware 5 Low Encryption SW) - Version: See Mitigation
      • HP Network Products
      • JG361A HP HSR6802 Router Chassis
      • JG361B HP HSR6802 Router Chassis
      • JG362A HP HSR6804 Router Chassis
      • JG362B HP HSR6804 Router Chassis
      • JG363A HP HSR6808 Router Chassis
      • JG363B HP HSR6808 Router Chassis
      • JG364A HP HSR6800 RSE-X2 Router Main Processing Unit
      • JG779A HP HSR6800 RSE-X2 Router TAA-compliant Main Processing Unit
    • SMB1910 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG540A HP 1910-48 Switch
      • JG539A HP 1910-24-PoE+ Switch
      • JG538A HP 1910-24 Switch
      • JG537A HP 1910-8 -PoE+ Switch
      • JG536A HP 1910-8 Switch
    • SMB1920 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG928A HP 1920-48G-PoE+ (370W) Switch
      • JG927A HP 1920-48G Switch
      • JG926A HP 1920-24G-PoE+ (370W) Switch
      • JG925A HP 1920-24G-PoE+ (180W) Switch
      • JG924A HP 1920-24G Switch
      • JG923A HP 1920-16G Switch
      • JG922A HP 1920-8G-PoE+ (180W) Switch
      • JG921A HP 1920-8G-PoE+ (65W) Switch
      • JG920A HP 1920-8G Switch
    • V1910 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JE005A HP 1910-16G Switch
      • JE006A HP 1910-24G Switch
      • JE007A HP 1910-24G-PoE (365W) Switch
      • JE008A HP 1910-24G-PoE(170W) Switch
      • JE009A HP 1910-48G Switch
      • JG348A HP 1910-8G Switch
      • JG349A HP 1910-8G-PoE+ (65W) Switch
      • JG350A HP 1910-8G-PoE+ (180W) Switch
    • SMB 1620 (Comware 5) - Version: See Mitigation
      • HP Network Products
      • JG914A HP 1620-48G Switch
      • JG913A HP 1620-24G Switch
      • JG912A HP 1620-8G Switch

    COMWARE 7 Products

    • 12500 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JC072B HP 12500 Main Processing Unit
      • JC085A HP A12518 Switch Chassis
      • JC086A HP A12508 Switch Chassis
      • JC652A HP 12508 DC Switch Chassis
      • JC653A HP 12518 DC Switch Chassis
      • JC654A HP 12504 AC Switch Chassis
      • JC655A HP 12504 DC Switch Chassis
      • JF430A HP A12518 Switch Chassis
      • JF430B HP 12518 Switch Chassis
      • JF430C HP 12518 AC Switch Chassis
      • JF431A HP A12508 Switch Chassis
      • JF431B HP 12508 Switch Chassis
      • JF431C HP 12508 AC Switch Chassis
      • JG497A HP 12500 MPU w/Comware V7 OS
      • JG782A HP FF 12508E AC Switch Chassis
      • JG783A HP FF 12508E DC Switch Chassis
      • JG784A HP FF 12518E AC Switch Chassis
      • JG785A HP FF 12518E DC Switch Chassis
      • JG802A HP FF 12500E MPU
    • 10500 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JC611A HP 10508-V Switch Chassis
      • JC612A HP 10508 Switch Chassis
      • JC613A HP 10504 Switch Chassis
      • JC748A HP 10512 Switch Chassis
      • JG608A HP FlexFabric 11908-V Switch Chassis
      • JG609A HP FlexFabric 11900 Main Processing Unit
      • JG820A HP 10504 TAA Switch Chassis
      • JG821A HP 10508 TAA Switch Chassis
      • JG822A HP 10508-V TAA Switch Chassis
      • JG823A HP 10512 TAA Switch Chassis
      • JG496A HP 10500 Type A MPU w/Comware v7 OS
      • JH198A HP 10500 Type D Main Processing Unit with Comware v7 Operating System
      • JH206A HP 10500 Type D TAA-compliant with Comware v7 Operating System Main Processing Unit
    • 12900 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JG619A HP FlexFabric 12910 Switch AC Chassis
      • JG621A HP FlexFabric 12910 Main Processing Unit
      • JG632A HP FlexFabric 12916 Switch AC Chassis
      • JG634A HP FlexFabric 12916 Main Processing Unit
      • JH104A HP FlexFabric 12900E Main Processing Unit
      • JH114A HP FlexFabric 12910 TAA-compliant Main Processing Unit
      • JH263A HP FlexFabric 12904E Main Processing Unit
      • JH255A HP FlexFabric 12908E Switch Chassis
      • JH262A HP FlexFabric 12904E Switch Chassis
      • JH113A HP FlexFabric 12910 TAA-compliant Switch AC Chassis
      • JH103A HP FlexFabric 12916E Switch Chassis
    • 5900 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JC772A HP 5900AF-48XG-4QSFP+ Switch
      • JG296A HP 5920AF-24XG Switch
      • JG336A HP 5900AF-48XGT-4QSFP+ Switch
      • JG510A HP 5900AF-48G-4XG-2QSFP+ Switch
      • JG554A HP 5900AF-48XG-4QSFP+ TAA Switch
      • JG555A HP 5920AF-24XG TAA Switch
      • JG838A HP FF 5900CP-48XG-4QSFP+ Switch
      • JH036A HP FlexFabric 5900CP 48XG 4QSFP+ TAA-Compliant
      • JH037A HP 5900AF 48XGT 4QSFP+ TAA-Compliant Switch
      • JH038A HP 5900AF 48G 4XG 2QSFP+ TAA-Compliant
    • MSR1000 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JG875A HP MSR1002-4 AC Router
      • JH060A HP MSR1003-8S AC Router
    • MSR2000 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JG411A HP MSR2003 AC Router
      • JG734A HP MSR2004-24 AC Router
      • JG735A HP MSR2004-48 Router
      • JG866A HP MSR2003 TAA-compliant AC Router
    • MSR3000 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JG404A HP MSR3064 Router
      • JG405A HP MSR3044 Router
      • JG406A HP MSR3024 AC Router
      • JG407A HP MSR3024 DC Router
      • JG408A HP MSR3024 PoE Router
      • JG409A HP MSR3012 AC Router
      • JG410A HP MSR3012 DC Router
      • JG861A HP MSR3024 TAA-compliant AC Router
    • MSR4000 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JG402A HP MSR4080 Router Chassis
      • JG403A HP MSR4060 Router Chassis
      • JG412A HP MSR4000 MPU-100 Main Processing Unit
      • JG869A HP MSR4000 TAA-compliant MPU-100 Main Processing Unit
    • VSR (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JG810AAE HP VSR1001 Virtual Services Router 60 Day Evaluation Software
      • JG811AAE HP VSR1001 Comware 7 Virtual Services Router
      • JG812AAE HP VSR1004 Comware 7 Virtual Services Router
      • JG813AAE HP VSR1008 Comware 7 Virtual Services Router
    • 7900 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JG682A HP FlexFabric 7904 Switch Chassis
      • JG841A HP FlexFabric 7910 Switch Chassis
      • JG842A HP FlexFabric 7910 7.2Tbps Fabric / Main Processing Unit
      • JH001A HP FlexFabric 7910 2.4Tbps Fabric / Main Processing Unit
      • JH122A HP FlexFabric 7904 TAA-compliant Switch Chassis
      • JH123A HP FlexFabric 7910 TAA-compliant Switch Chassis
      • JH124A HP FlexFabric 7910 7.2Tbps TAA-compliant Fabric/Main Processing Unit
      • JH125A HP FlexFabric 7910 2.4Tbps TAA-compliant Fabric/Main Processing Unit
    • 5130 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JG932A HP 5130-24G-4SFP+ EI Switch
      • JG933A HP 5130-24G-SFP-4SFP+ EI Switch
      • JG934A HP 5130-48G-4SFP+ EI Switch
      • JG936A HP 5130-24G-PoE+-4SFP+ (370W) EI Switch
      • JG937A HP 5130-48G-PoE+-4SFP+ (370W) EI Switch
      • JG938A HP 5130-24G-2SFP+-2XGT EI Switch
      • JG939A HP 5130-48G-2SFP+-2XGT EI Switch
      • JG940A HP 5130-24G-PoE+-2SFP+-2XGT (370W) EI Switch
      • JG941A HP 5130-48G-PoE+-2SFP+-2XGT (370W) EI Switch
      • JG975A HP 5130-24G-4SFP+ EI Brazil Switch
      • JG976A HP 5130-48G-4SFP+ EI Brazil Switch
      • JG977A HP 5130-24G-PoE+-4SFP+ (370W) EI Brazil Switch
      • JG978A HP 5130-48G-PoE+-4SFP+ (370W) EI Brazil Switch
    • 6125XLG - Version: See Mitigation
      • HP Network Products
      • 711307-B21 HP 6125XLG Blade Switch
      • 737230-B21 HP 6125XLG Blade Switch with TAA
    • 6127XLG - Version: See Mitigation
      • HP Network Products
      • 787635 HP 6127XLG Blade Switch Opt Kit
    • Moonshot - Version: See Mitigation
      • HP Network Products
      • 786617-B21 - HP Moonshot-45Gc Switch Module
      • 704654-B21 - HP Moonshot-45XGc Switch Module
      • 786619-B21 - HP Moonshot-180XGc Switch Module
    • 5700 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JG894A HP FlexFabric 5700-48G-4XG-2QSFP+ Switch
      • JG895A HP FlexFabric 5700-48G-4XG-2QSFP+ TAA-compliant Switch
      • JG896A HP FlexFabric 5700-40XG-2QSFP+ Switch
      • JG897A HP FlexFabric 5700-40XG-2QSFP+ TAA-compliant Switch
      • JG898A HP FlexFabric 5700-32XGT-8XG-2QSFP+ Switch
      • JG899A HP FlexFabric 5700-32XGT-8XG-2QSFP+ TAA-compliant Switch
    • 5930 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JG726A HP FlexFabric 5930 32QSFP+ Switch
      • JG727A HP FlexFabric 5930 32QSFP+ TAA-compliant Switch
      • JH178A HP FlexFabric 5930 2QSFP+ 2-slot Switch
      • JH179A HP FlexFabric 5930 4-slot Switch
      • JH187A HP FlexFabric 5930 2QSFP+ 2-slot TAA-compliant Switch
      • JH188A HP FlexFabric 5930 4-slot TAA-compliant Switch
    • HSR6600 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JG353A HP HSR6602-G Router
      • JG354A HP HSR6602-XG Router
      • JG776A HP HSR6602-G TAA-compliant Router
      • JG777A HP HSR6602-XG TAA-compliant Router
    • HSR6800 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JG361A HP HSR6802 Router Chassis
      • JG361B HP HSR6802 Router Chassis
      • JG362A HP HSR6804 Router Chassis
      • JG362B HP HSR6804 Router Chassis
      • JG363A HP HSR6808 Router Chassis
      • JG363B HP HSR6808 Router Chassis
      • JG364A HP HSR6800 RSE-X2 Router Main Processing Unit
      • JG779A HP HSR6800 RSE-X2 Router TAA-compliant Main Processing
      • JH075A HP HSR6800 RSE-X3 Router Main Processing Unit
    • 1950 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JG960A HP 1950-24G-4XG Switch
      • JG961A HP 1950-48G-2SFP+-2XGT Switch
      • JG962A HP 1950-24G-2SFP+-2XGT-PoE+(370W) Switch
      • JG963A HP 1950-48G-2SFP+-2XGT-PoE+(370W) Switch
    • 7500 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JD238C HP 7510 Switch Chassis
      • JD239C HP 7506 Switch Chassis
      • JD240C HP 7503 Switch Chassis
      • JD242C HP 7502 Switch Chassis
      • JH207A HP 7500 1.2Tbps Fabric with 2-port 40GbE QSFP+ for IRF-Only Main Processing Unit
      • JH208A HP 7502 Main Processing Unit
      • JH209A HP 7500 2.4Tbps Fabric with 8-port 1/10GbE SFP+ and 2-port 40GbE QSFP+ Main Processing Unit
    • 5950 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JH321A HPE FlexFabric 5950 32QSFP28 Switch
    • 5940 (Comware 7) - Version: See Mitigation
      • HP Network Products
      • JH390A HPE FlexFabric 5940 48SFP+ 6QSFP28 Switch
      • JH391A HPE FlexFabric 5940 48XGT 6QSFP28 Switch
      • JH394A HPE FlexFabric 5940 48XGT 6QSFP+ Switch
      • JH395A HPE FlexFabric 5940 48SFP+ 6QSFP+ Switch
      • JH396A HPE FlexFabric 5940 32QSFP+ Switch
      • JH397A HPE FlexFabric 5940 2-slot Switch
      • JH398A HPE FlexFabric 5940 4-slot Switch

    HISTORY Version:1 (rev.1) - 18 November 2016 Initial release

    Third Party Security Patches: Third party security patches that are to be installed on systems running Hewlett Packard Enterprise (HPE) software products should be applied in accordance with the customer's patch management policy.

    Support: For issues about implementing the recommendations of this Security Bulletin, contact normal HPE Services support channel. For other issues about the content of this Security Bulletin, send e-mail to security-alert@hpe.com.

    Report: To report a potential security vulnerability for any HPE supported product: Web form: https://www.hpe.com/info/report-security-vulnerability Email: security-alert@hpe.com

    Subscribe: To initiate a subscription to receive future HPE Security Bulletin alerts via Email: http://www.hpe.com/support/Subscriber_Choice

    Security Bulletin Archive: A list of recently released Security Bulletins is available here: http://www.hpe.com/support/Security_Bulletin_Archive

    Software Product Category: The Software Product Category is represented in the title by the two characters following HPSB.

    3C = 3COM 3P = 3rd Party Software GN = HPE General Software HF = HPE Hardware and Firmware MU = Multi-Platform Software NS = NonStop Servers OV = OpenVMS PV = ProCurve ST = Storage Software UX = HP-UX

    Copyright 2016 Hewlett Packard Enterprise

    Hewlett Packard Enterprise shall not be liable for technical or editorial errors or omissions contained herein. The information provided is provided "as is" without warranty of any kind. To the extent permitted by law, neither HP or its affiliates, subcontractors or suppliers will be liable for incidental,special or consequential damages including downtime cost; lost profits; damages relating to the procurement of substitute products or services; or damages for loss of data, or software restoration. The information in this document is subject to change without notice. Hewlett Packard Enterprise and the names of Hewlett Packard Enterprise products referenced herein are trademarks of Hewlett Packard Enterprise in the United States and other countries. Other product and company names mentioned herein may be trademarks of their respective owners. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1

    iQEcBAEBCAAGBQJYLytTAAoJELXhAxt7SZaiMjYIAI4xgRNJCPqOZ40XLUNhxYrc HyqTd62PbcGOPTFya1qOo16V94eJ5id5oRHOtcrFjJKtDedDS6OoAe5HWYXvLEI3 0fEzCNjk9aHTcvuf2t17MGhS0Fk2JrZ0191RFONKuEkqgMmK0d44SGMrVXSA28Dj phW1dzm1HiJO0NPUOa+cYMhNt0+I7b+ulD6FdldNdqx4fNtlXiHvcRbF4Wffe2hD N2hlvx1Wu1iu2g75XPNPOPYhDRkyAm79P2HZGCUohQlhWsRgcJRnubojJBr7CMf9 2Ud7MwYL4jTKK/mFdim4ej/hwPn3SCb5ekhTUBFDlu2J2DjUYi2xDQgyQkhuUIg= =NGQO -----END PGP SIGNATURE----- . =========================================================== Ubuntu Security Notice USN-740-1 March 17, 2009 nss, firefox vulnerability CVE-2004-2761 ===========================================================

    A security issue affects the following Ubuntu releases:

    Ubuntu 6.06 LTS Ubuntu 7.10 Ubuntu 8.04 LTS Ubuntu 8.10

    This advisory also applies to the corresponding versions of Kubuntu, Edubuntu, and Xubuntu.

    The problem can be corrected by upgrading your system to the following package versions:

    Ubuntu 6.06 LTS: libnss3 1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2

    Ubuntu 7.10: libnss3-0d 3.11.5-3ubuntu0.7.10.2

    Ubuntu 8.04 LTS: libnss3-0d 3.12.0.3-0ubuntu0.8.04.5 libnss3-1d 3.12.0.3-0ubuntu0.8.04.5

    Ubuntu 8.10: libnss3-1d 3.12.0.3-0ubuntu5.8.10.1

    After a standard system upgrade you need to restart your session to effect the necessary changes. This update blacklists the proof of concept rogue certificate authority as discussed in http://www.win.tue.nl/hashclash/rogue-ca/.

    Updated packages for Ubuntu 6.06 LTS:

    Source archives:

    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2.diff.gz
      Size/MD5:   188837 84bf6c0e34576e50daab0284028533bb
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2.dsc
      Size/MD5:     2389 abbe8becc260777f55315eb565f8d732
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k.orig.tar.gz
      Size/MD5: 48504132 171958941a2ca0562039add097278245
    

    Architecture independent packages:

    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/mozilla-firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_all.deb
      Size/MD5:    53898 025eab1318c7a90e48fb0a927bbbd433
    http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/mozilla-firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_all.deb
      Size/MD5:    53014 87135a54ac04ea95a0a3c7dccb8a4d4e
    

    amd64 architecture (Athlon64, Opteron, EM64T Xeon):

    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb
      Size/MD5: 47681092 19a313089bf1da267950c8f5b8d2d2df
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb
      Size/MD5:  2859292 f6a4b48f0e0e3250d83f0bf4183836f7
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb
      Size/MD5:    86270 0bd3983f76c7474d37018f26eee721f4
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb
      Size/MD5:  9494334 91c75d6baf740531224bed258c6622b9
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb
      Size/MD5:   222572 2779237df4dc1c30d8d2c01623eef1e3
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr4_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb
      Size/MD5:   166118 862f4a02164840c1d94228a396c2688c
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb
      Size/MD5:   248116 183208d5e43c3ddc117d6cbefc54a472
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss3_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb
      Size/MD5:   826574 2ff813a52cac4b3392f056b145129821
    http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb
      Size/MD5:   218858 2fcc1d909f4fdafaced1b1f737f83bf1
    

    i386 architecture (x86 compatible Intel/AMD):

    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb
      Size/MD5: 44228668 5a244b5b731d0d703cb573e2db10b74b
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb
      Size/MD5:  2859256 274033babbff1131a391ca71c19a6e6b
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb
      Size/MD5:    78600 3e86ec8d1b73b8f7b822f12aaa56451a
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb
      Size/MD5:  7997718 56cb9f85d34aa86721dcc36414b8f0e9
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb
      Size/MD5:   222564 14edfb722d08b49930b901114b841c81
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr4_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb
      Size/MD5:   150606 fa56606c4d002559ee41e965299b523a
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb
      Size/MD5:   248106 58139d67e47359f9cb056ad29292d06d
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss3_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb
      Size/MD5:   717824 ce294179ee0e0fcdea589e751548f04e
    http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb
      Size/MD5:   212058 b3874b6f769aeafedce238b9a15e7b09
    

    powerpc architecture (Apple Macintosh G3/G4/G5):

    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb
      Size/MD5: 49085684 a4ea3920e8120e9dc7138cf8e8595aa4
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb
      Size/MD5:  2859352 dac458ed9e848ba8c64d0e18071149f8
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb
      Size/MD5:    81686 228d420fc876cb95b6edad70d58c2c48
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb
      Size/MD5:  9113232 7ba2b92dad312ca9d2186dac6380d638
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb
      Size/MD5:   222564 9e89e2cc261f1c1b43e0b765e140d3d5
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr4_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb
      Size/MD5:   163310 3ddb28abafbffe0943e25f48267df5f1
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb
      Size/MD5:   248128 94da18de9bba74798a5ae257e85d882b
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss3_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb
      Size/MD5:   817522 eb53d37dea9fce55780abda44b94ca89
    http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb
      Size/MD5:   215556 779f90ccb4534487d2274536ac9279dd
    

    sparc architecture (Sun SPARC/UltraSPARC):

    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb
      Size/MD5: 45629214 b30a5365e327c4366ae3ea2b393e1d78
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb
      Size/MD5:  2859296 c7f225dc39717d6156b9163c7a8ddda0
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb
      Size/MD5:    80180 51ca826844fa46702feb9bbeb5c6e999
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb
      Size/MD5:  8499070 ee1fd111aa113ac50e5ea42dc85e1e77
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb
      Size/MD5:   222590 6a5621015d57ffbd93f92a8552d98e54
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr4_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb
      Size/MD5:   153210 b7c4a9074a678fcaf70a4db7bcb8fd5d
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb
      Size/MD5:   248150 1273ab06f98bf861e4e66985add8685a
    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss3_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb
      Size/MD5:   728698 cd5ba0f693710a604274d327d4724c88
    http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb
      Size/MD5:   213030 fe7a017cd7f4a8a9064372e51f903263
    

    Updated packages for Ubuntu 7.10:

    Source archives:

    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.11.5-3ubuntu0.7.10.2.diff.gz
      Size/MD5:    23735 2c3b55fe3f316790d2174a56709723ad
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.11.5-3ubuntu0.7.10.2.dsc
      Size/MD5:     1925 9d9a2fa42ff8dcb452761d66e3238ef6
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.11.5.orig.tar.gz
      Size/MD5:  3696893 1add44e6a41dbf5091cfd000f19ad6b9
    

    amd64 architecture (Athlon64, Opteron, EM64T Xeon):

    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_amd64.deb
      Size/MD5:  3143890 dad0155f293aff8a59d42086cef022c3
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_amd64.deb
      Size/MD5:   799588 70d491944efd2ce20cb839da11030b0e
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_amd64.deb
      Size/MD5:   241342 567c357ea31e0e1729db4738822aa7b0
    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_amd64.deb
      Size/MD5:   656372 a6868f642b5c295236c7df01dbc3f2d9
    

    i386 architecture (x86 compatible Intel/AMD):

    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_i386.deb
      Size/MD5:  2995870 d4ea291de433c1768148f35a4f40e596
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_i386.deb
      Size/MD5:   723166 81b970c37e37b2bfe13bf8edf8b8c2df
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_i386.deb
      Size/MD5:   238436 a901d3b0431faa6bfd4d8b732fc6b8ed
    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_i386.deb
      Size/MD5:   605568 f7a02ba6c2e65c2e3644f81e2e5add33
    

    lpia architecture (Low Power Intel Architecture):

    http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_lpia.deb
      Size/MD5:  3213428 32f032e4c5ebc8383d334e2de5b1e0b5
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_lpia.deb
      Size/MD5:   709556 606d9ee62127ecad6620ce6ee2a351c1
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_lpia.deb
      Size/MD5:   237148 526eb9b27871cee224d480ce8483d015
    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_lpia.deb
      Size/MD5:   596394 35c4ef7f97a6934947760236b119d1f1
    

    powerpc architecture (Apple Macintosh G3/G4/G5):

    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_powerpc.deb
      Size/MD5:  3168400 13560d02da9c481147177504476a3f21
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_powerpc.deb
      Size/MD5:   807892 5a0232d184bb4d87811974d61a902e17
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_powerpc.deb
      Size/MD5:   240514 9cfb4b3bace2f033b7c55ba571d0c4a1
    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_powerpc.deb
      Size/MD5:   645362 ccd118c24941759b0c2e758ae60b4ba5
    

    sparc architecture (Sun SPARC/UltraSPARC):

    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_sparc.deb
      Size/MD5:  2834042 f884524281d9521e07b60c8bf9aa8074
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_sparc.deb
      Size/MD5:   718096 906896f0101a88bd6cb78ffdb103fe0e
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_sparc.deb
      Size/MD5:   235222 f679c8d076c15860a41c1e16b1d69ded
    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_sparc.deb
      Size/MD5:   576390 75811d5dc9ddd1eca108bc50ffe3e911
    

    Updated packages for Ubuntu 8.04 LTS:

    Source archives:

    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3-0ubuntu0.8.04.5.diff.gz
      Size/MD5:    38918 6fda80e067b0f84e323b3556b5f9dd18
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3-0ubuntu0.8.04.5.dsc
      Size/MD5:     2001 e9365c71192c0e568d5dd9891708e436
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3.orig.tar.gz
      Size/MD5:  5161407 9e96418400e073f982e83c235718c4e9
    

    amd64 architecture (Athlon64, Opteron, EM64T Xeon):

    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_amd64.deb
      Size/MD5:    17910 7933180f37ce55969719730463fef4cb
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_amd64.deb
      Size/MD5:  4511304 1a241985ee6673075b8610bbb2be2902
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_amd64.deb
      Size/MD5:  1135226 fcc9b7555aac5a0ef0260aa639b7421a
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_amd64.deb
      Size/MD5:   256738 992898a7cce94822e29a3e0d5d318e46
    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_amd64.deb
      Size/MD5:   813730 542b82a7837b4a43191fd5862a97699e
    

    i386 architecture (x86 compatible Intel/AMD):

    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_i386.deb
      Size/MD5:    17894 3ea3554784b1242ce89f96bb631d0c4d
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_i386.deb
      Size/MD5:  4294520 d7eb7d334bd821d887e24d76d8e2804f
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_i386.deb
      Size/MD5:  1017710 7afd17b32bc5ce80babf2405488997e8
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_i386.deb
      Size/MD5:   253724 f7f8ad3723f384a657907016b8476c35
    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_i386.deb
      Size/MD5:   741278 ed53c68732f059a90a35310b68c4be88
    

    lpia architecture (Low Power Intel Architecture):

    http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_lpia.deb
      Size/MD5:    17874 5e1a506010c923ba8a41129fef693344
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_lpia.deb
      Size/MD5:  4322188 cd5765f42aaffa32e20b0ac0510d9b6c
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_lpia.deb
      Size/MD5:   993934 313d088bd4a0a44fe05b762e33ef927d
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_lpia.deb
      Size/MD5:   252500 dcaf82868eaa0e3162a6a49fb6f512be
    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_lpia.deb
      Size/MD5:   719648 8e422c9ee3dd5a062f547d36d6e2725c
    

    powerpc architecture (Apple Macintosh G3/G4/G5):

    http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb
      Size/MD5:    20352 144b270c8fc23407e1da27112151c952
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb
      Size/MD5:  4440132 f89a7f34a199abd8e0d840bb011ca5bf
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb
      Size/MD5:  1115852 d88c0295406e468f7ac1c087edb661dd
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb
      Size/MD5:   255446 4eef63577fbaa5b611b0d9064c47ac6c
    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb
      Size/MD5:   777064 83ad19b301d2c1eceef6682cbad5a00d
    

    sparc architecture (Sun SPARC/UltraSPARC):

    http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_sparc.deb
      Size/MD5:    17976 c763ceebcc3bf6371477809a8589cebf
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_sparc.deb
      Size/MD5:  4038136 bbb4ff75f73844f33727fada2ca730b4
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_sparc.deb
      Size/MD5:   995598 2785d368bbb6665eee586ac3fc3e453e
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_sparc.deb
      Size/MD5:   250450 a972e1131466d149480a574a57537c37
    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_sparc.deb
      Size/MD5:   702432 d16a1353ba80d7104820f97c4f712334
    

    Updated packages for Ubuntu 8.10:

    Source archives:

    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3-0ubuntu5.8.10.1.diff.gz
      Size/MD5:    38881 8be9f8eb187a657a743e115f58dbb58b
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3-0ubuntu5.8.10.1.dsc
      Size/MD5:     2001 88381f73650cd5c2c369f387638ec40d
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3.orig.tar.gz
      Size/MD5:  5161407 9e96418400e073f982e83c235718c4e9
    

    amd64 architecture (Athlon64, Opteron, EM64T Xeon):

    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_amd64.deb
      Size/MD5:  4696732 5e2844909ee8896f71548c37f7ab711f
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_amd64.deb
      Size/MD5:  1182642 6f73554c7970e2c0e3da7dcddf8d4d7f
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_amd64.deb
      Size/MD5:   256520 808f5ff374081b1fd7f981699e267828
    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_amd64.deb
      Size/MD5:    17962 63411a0d50d9fa340f688c7a5cec33ae
    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_amd64.deb
      Size/MD5:   824382 367bbe2bf29f17c4fa5b085142e0bc8f
    

    i386 architecture (x86 compatible Intel/AMD):

    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_i386.deb
      Size/MD5:  4450042 bb8560c5208a6f4d2a121a93d7ff7bac
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_i386.deb
      Size/MD5:  1054914 1f7cbdc5e0776b8c2fc92241776bd96e
    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_i386.deb
      Size/MD5:   253554 c1cc8fff73ef7b34dadc6fea411bc7db
    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_i386.deb
      Size/MD5:    17940 b3577f334ed9f5a95c6fdbdd4de83ef4
    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_i386.deb
      Size/MD5:   752462 703f7bd356efc312f216e361209ef3a7
    

    lpia architecture (Low Power Intel Architecture):

    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_lpia.deb
      Size/MD5:  4482980 c27f13a5f5aba10c93b2dda917c1ba31
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_lpia.deb
      Size/MD5:  1029092 3b2805f79d61b595907187846da18a54
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_lpia.deb
      Size/MD5:   252140 06b18884a6e275a5fc9a73abd1464875
    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_lpia.deb
      Size/MD5:    17914 28d1eeaac6ba2f9c17da9a9a6ea35fdd
    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_lpia.deb
      Size/MD5:   730786 e1497e0cbdf8d7c3ac4c6e80e86837bf
    

    powerpc architecture (Apple Macintosh G3/G4/G5):

    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb
      Size/MD5:  4659468 ceb162226c93c950c71d2f0236b9d53e
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb
      Size/MD5:  1137358 f61287d145339ece156686d86a971480
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb
      Size/MD5:   255312 d7787174c0d6b25467b0f1262306be06
    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb
      Size/MD5:    20352 082622bc3e21161a1085695bd4f8f961
    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb
      Size/MD5:   775316 78ca70e113bd97d42f62e19e0ac8fdb1
    

    sparc architecture (Sun SPARC/UltraSPARC):

    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_sparc.deb
      Size/MD5:  4168250 b9f3c0b8eab76476c9bb057b43d9df40
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_sparc.deb
      Size/MD5:  1015340 5dd83c288df733b6a84247b48d945647
    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_sparc.deb
      Size/MD5:   250138 f6a1dd454cc44a4684ab288e9eadde56
    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_sparc.deb
      Size/MD5:    18068 27f0453909db6eda6d8ffd3ef35454c9
    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_sparc.deb
      Size/MD5:   703524 e87fca0b128626aebf5bce77473ee8e0
    

    Show details on source website

    {
      "affected_products": {
        "_id": null,
        "data": [
          {
            "_id": null,
            "model": "md5",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "ietf",
            "version": null
          },
          {
            "_id": null,
            "model": "rtx1500",
            "scope": null,
            "trust": 1.1,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rtx1100",
            "scope": null,
            "trust": 1.1,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rtx1000",
            "scope": null,
            "trust": 1.1,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rtv700",
            "scope": null,
            "trust": 1.1,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt300i",
            "scope": null,
            "trust": 1.1,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt105 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt107e",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt140 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt250i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt57i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt58i",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rtv01",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rtx1200",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rtx2000",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rtx3000",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "srt100",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "1000"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "105"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "107e"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "1100"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "1200"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "140"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "1500"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "2000"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "250i"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "3000"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "300i"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "57i"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "58i"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "sr100"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "v01"
          },
          {
            "_id": null,
            "model": "ip38x series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "v700"
          },
          {
            "_id": null,
            "model": "cosminexus http server",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "application server",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "application server for developers",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "infrastructure analytics advisor",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "web server",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "none"
          },
          {
            "_id": null,
            "model": "ucosminexus application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "(64)"
          },
          {
            "_id": null,
            "model": "ucosminexus application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "-r"
          },
          {
            "_id": null,
            "model": "ucosminexus application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "express"
          },
          {
            "_id": null,
            "model": "ucosminexus application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "standard-r"
          },
          {
            "_id": null,
            "model": "ucosminexus application server enterprise",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus application server smart edition",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus application server standard",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus developer",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "none"
          },
          {
            "_id": null,
            "model": "ucosminexus developer",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "01"
          },
          {
            "_id": null,
            "model": "ucosminexus developer",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "professional"
          },
          {
            "_id": null,
            "model": "ucosminexus developer",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "professional for plug-in"
          },
          {
            "_id": null,
            "model": "ucosminexus developer light",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus developer standard",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus primary server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "base"
          },
          {
            "_id": null,
            "model": "ucosminexus primary server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "base(64)"
          },
          {
            "_id": null,
            "model": "ucosminexus service architect",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "ucosminexus service platform",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "none"
          },
          {
            "_id": null,
            "model": "ucosminexus service platform",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "(64)"
          },
          {
            "_id": null,
            "model": "ucosminexus service platform",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "- messaging"
          },
          {
            "_id": null,
            "model": "srt100",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "rtx3000",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "rtx2000",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "rt107e",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "rt105",
            "scope": null,
            "trust": 0.3,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "rt104",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "yamaha",
            "version": "0"
          },
          {
            "_id": null,
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.10"
          },
          {
            "_id": null,
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.10"
          },
          {
            "_id": null,
            "model": "linux lpia",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.10"
          },
          {
            "_id": null,
            "model": "linux i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.10"
          },
          {
            "_id": null,
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.10"
          },
          {
            "_id": null,
            "model": "linux lts sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "_id": null,
            "model": "linux lts powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "_id": null,
            "model": "linux lts lpia",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "_id": null,
            "model": "linux lts i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "_id": null,
            "model": "linux lts amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "_id": null,
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "7.10"
          },
          {
            "_id": null,
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "7.10"
          },
          {
            "_id": null,
            "model": "linux lpia",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "7.10"
          },
          {
            "_id": null,
            "model": "linux i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "7.10"
          },
          {
            "_id": null,
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "7.10"
          },
          {
            "_id": null,
            "model": "linux lts sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "_id": null,
            "model": "linux lts powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "_id": null,
            "model": "linux lts i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "_id": null,
            "model": "linux lts amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "_id": null,
            "model": "certificate server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "7.3"
          },
          {
            "_id": null,
            "model": "trace file analyzer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "0"
          },
          {
            "_id": null,
            "model": "network security services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.11.3"
          },
          {
            "_id": null,
            "model": "network security services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.12"
          },
          {
            "_id": null,
            "model": "network security services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.11"
          },
          {
            "_id": null,
            "model": "rfc algorithms and identifiers for the inter",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "3279:0"
          },
          {
            "_id": null,
            "model": "vsr (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "7)0"
          },
          {
            "_id": null,
            "model": "u200s and cs (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "u200a and m (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "smb1920 (comware r1106",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)"
          },
          {
            "_id": null,
            "model": "smb1910 (comware r1108",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)"
          },
          {
            "_id": null,
            "model": "smb (comware r1105",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "16205)"
          },
          {
            "_id": null,
            "model": "secblade fw (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "msr4000 (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "7)0"
          },
          {
            "_id": null,
            "model": "msr3000 (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "7)0"
          },
          {
            "_id": null,
            "model": "msr2000 (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "7)0"
          },
          {
            "_id": null,
            "model": "msr20-1x (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "msr20 (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "msr1000 (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "7)0"
          },
          {
            "_id": null,
            "model": "msr1000 (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "msr (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9xx5)0"
          },
          {
            "_id": null,
            "model": "msr (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "93x5)0"
          },
          {
            "_id": null,
            "model": "msr 50-g2 (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "msr (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "30-1x5)0"
          },
          {
            "_id": null,
            "model": "msr (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "30-165)0"
          },
          {
            "_id": null,
            "model": "msr (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "305)0"
          },
          {
            "_id": null,
            "model": "moonshot",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jg768aae hp pcm+ to imc std upg w/ 200-node e-ltu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jg767aae hp imc smcnct wsm vrtl applnc sw e-ltu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jg766aae hp imc smcnct vrtl applnc sw e-ltu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jg748aae hp imc ent sw plat w/ nodes e-ltu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "500"
          },
          {
            "_id": null,
            "model": "jg747aae hp imc std sw plat w/ nodes e-ltu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "500"
          },
          {
            "_id": null,
            "model": "jg660aae hp imc smart connect w/wlm vae e-ltu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jg590aae hp imc bsc wlan mgr sw pltfm ap e-ltu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "500"
          },
          {
            "_id": null,
            "model": "jg550aae hp pmm to imc bsc wlm upgr w/150ap e-ltu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jg549aae hp pcm+ to imc std upgr w/200-node e-ltu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jg548aae hp pcm+ to imc bsc upgr w/50-node e-ltu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jg546aae hp imc basic sw platform w/50-node e-ltu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jf378aae hp imc ent s/w pltfrm w/200-node e-ltu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jf378a hp imc ent s/w platform w/200-node lic",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jf377aae hp imc std s/w pltfrm w/100-node e-ltu",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jf377a hp imc std s/w platform w/100-node lic",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jf289aae hp enterprise management system to intelligent manageme",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jf288aae hp network director to intelligent management center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jd816a hp a-imc standard edition software dvd media",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jd815a hp imc std platform w/100-node license",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jd814a hp a-imc enterprise edition software dvd media",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jd808a hp imc ent platform w/100-node license",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jd126a hp imc ent s/w platform w/100-node",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "jd125a hp imc std s/w platform w/100-node",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "hsr6800 (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "7)0"
          },
          {
            "_id": null,
            "model": "hsr6800 (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "hsr6602 (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "hp870 (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "hp850 (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "hp830 (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "f5000-c/s (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "f1000-e (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "f1000-a-ei (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "9500e (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "(comware r2122",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "79007)"
          },
          {
            "_id": null,
            "model": "(comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "75007)0"
          },
          {
            "_id": null,
            "model": "(comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "75005)0"
          },
          {
            "_id": null,
            "model": "rse ru r3303p18",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "66005"
          },
          {
            "_id": null,
            "model": "6127xlg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "6125xlg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "_id": null,
            "model": "(comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "59507)0"
          },
          {
            "_id": null,
            "model": "(comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "59407)0"
          },
          {
            "_id": null,
            "model": "(comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "59307)0"
          },
          {
            "_id": null,
            "model": "(comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "59207)0"
          },
          {
            "_id": null,
            "model": "(comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "59007)0"
          },
          {
            "_id": null,
            "model": "(comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "58305)0"
          },
          {
            "_id": null,
            "model": "(comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "58005)0"
          },
          {
            "_id": null,
            "model": "5500si (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "hi (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "55005)0"
          },
          {
            "_id": null,
            "model": "ei (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "55005)0"
          },
          {
            "_id": null,
            "model": "(comware r3108p03",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "51307)"
          },
          {
            "_id": null,
            "model": "si (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "51205)0"
          },
          {
            "_id": null,
            "model": "ei (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "51205)0"
          },
          {
            "_id": null,
            "model": "4800g (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "4500g (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "4210g (comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5)0"
          },
          {
            "_id": null,
            "model": "(comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "125007)0"
          },
          {
            "_id": null,
            "model": "(comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "125005)0"
          },
          {
            "_id": null,
            "model": "(comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "105007)0"
          },
          {
            "_id": null,
            "model": "(comware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "105005)0"
          },
          {
            "_id": null,
            "model": "arx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "6.4"
          },
          {
            "_id": null,
            "model": "arx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "6.3"
          },
          {
            "_id": null,
            "model": "arx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "6.2"
          },
          {
            "_id": null,
            "model": "arx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "6.1.1"
          },
          {
            "_id": null,
            "model": "arx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "arx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "ios ca",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "0"
          },
          {
            "_id": null,
            "model": "trace file analyzer",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "12.1.2.8.4"
          },
          {
            "_id": null,
            "model": "network security services",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.12.2"
          }
        ],
        "sources": [
          {
            "db": "BID",
            "id": "33065"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200901-025"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-001001"
          },
          {
            "db": "NVD",
            "id": "CVE-2004-2761"
          }
        ]
      },
      "configurations": {
        "_id": null,
        "data": [
          {
            "CVE_data_version": "4.0",
            "nodes": [
              {
                "cpe_match": [
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt105",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt107e",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt140",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt250i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt300i",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt57i_firmware",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt58i_firmware",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtv01",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtv700",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtx1000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtx1100",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtx1200",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtx1500",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtx2000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rtx3000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:srt100",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ip38x",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:cosminexus_http_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:hitachi_application_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:hitachi_application_server_for_developers",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:infrastructure_analytics_advisor",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:hitachi_web_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_application_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_application_server_enterprise",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_application_server_smart_edition",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_application_server_standard",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_developer",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_developer_light",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_developer_standard",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_primary_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_service_architect",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_service_platform",
                    "vulnerable": true
                  }
                ],
                "operator": "OR"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-001001"
          }
        ]
      },
      "credits": {
        "_id": null,
        "data": "Alexander Sotirov",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-200901-025"
          }
        ],
        "trust": 0.6
      },
      "cve": "CVE-2004-2761",
      "cvss": {
        "_id": null,
        "data": [
          {
            "cvssV2": [
              {
                "accessComplexity": "LOW",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "nvd@nist.gov",
                "availabilityImpact": "NONE",
                "baseScore": 5.0,
                "confidentialityImpact": "NONE",
                "exploitabilityScore": 10.0,
                "id": "CVE-2004-2761",
                "impactScore": 2.9,
                "integrityImpact": "PARTIAL",
                "severity": "MEDIUM",
                "trust": 1.9,
                "vectorString": "AV:N/AC:L/Au:N/C:N/I:P/A:N",
                "version": "2.0"
              }
            ],
            "cvssV3": [],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2004-2761",
                "trust": 1.0,
                "value": "MEDIUM"
              },
              {
                "author": "CARNEGIE MELLON",
                "id": "VU#836068",
                "trust": 0.8,
                "value": "18.00"
              },
              {
                "author": "NVD",
                "id": "CVE-2004-2761",
                "trust": 0.8,
                "value": "Medium"
              },
              {
                "author": "CNNVD",
                "id": "CNNVD-200901-025",
                "trust": 0.6,
                "value": "MEDIUM"
              },
              {
                "author": "VULMON",
                "id": "CVE-2004-2761",
                "trust": 0.1,
                "value": "MEDIUM"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#836068"
          },
          {
            "db": "VULMON",
            "id": "CVE-2004-2761"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200901-025"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-001001"
          },
          {
            "db": "NVD",
            "id": "CVE-2004-2761"
          }
        ]
      },
      "description": {
        "_id": null,
        "data": "The MD5 Message-Digest Algorithm is not collision resistant, which makes it easier for context-dependent attackers to conduct spoofing attacks, as demonstrated by attacks on the use of MD5 in the signature algorithm of an X.509 certificate. Weaknesses in the MD5 algorithm allow for collisions in output.  As a result, attackers can generate cryptographic tokens or other data that illegitimately appear to be authentic. Is a one-way hash function MD5 Outputs a value called a fixed-length message digest from the input value. A secure hash function must be extremely difficult to find an input value that corresponds to a particular message digest. That the same message digest is output from different inputs. \" collision \" Call it. 1996 From the year MD5 Attack methods that exploit the lack of collision resistance of algorithms have been reported. After that, this attack technique X.509 It can be used to forge certificates, 2008 A year CA Based on a certificate signed by CA It was reported that the certificate was successfully forged. MD5 Products that use the algorithm are affected.MD5 There are various effects depending on the usage pattern. As an example, forged SSL Trusting a malicious website using a certificate may cause information leakage. Attackers may take advantage of this issue to generate pairs of different, valid X.509 certificates that  share a common signature. \nAn attacker is most likely to exploit this issue to conduct phishing attacks or to impersonate legitimate sites by taking advantage of malicious certificates. Other attacks are likely possible. \n  - HPE iMC PLAT - Please refer to the RESOLUTION\n below for a list of impacted products. All product versions are impacted\nprior to the fixed version listed. \n\n  + **iMC PLAT - Version: IMC PLAT 7.2, E0403P10**\n\n      - JD125A  HP IMC Std S/W Platform w/100-node\n      - JD126A  HP IMC Ent S/W Platform w/100-node\n      - JD808A  HP IMC Ent Platform w/100-node License\n      - JD814A   HP A-IMC Enterprise Edition Software DVD Media\n      - JD815A  HP IMC Std Platform w/100-node License\n      - JD816A  HP A-IMC Standard Edition Software DVD Media\n      - JF288AAE  HP Network Director to Intelligent Management Center\nUpgrade E-LTU\n      - JF289AAE  HP Enterprise Management System to Intelligent Management\nCenter Upgrade E-LTU\n      - JF377A  HP IMC Std S/W Platform w/100-node Lic\n      - JF377AAE  HP IMC Std S/W Pltfrm w/100-node E-LTU\n      - JF378A  HP IMC Ent S/W Platform w/200-node Lic\n      - JF378AAE  HP IMC Ent S/W Pltfrm w/200-node E-LTU\n      - JG546AAE  HP IMC Basic SW Platform w/50-node E-LTU\n      - JG548AAE  HP PCM+ to IMC Bsc Upgr w/50-node E-LTU\n      - JG549AAE  HP PCM+ to IMC Std Upgr w/200-node E-LTU\n      - JG747AAE  HP IMC Std SW Plat w/ 50 Nodes E-LTU\n      - JG748AAE  HP IMC Ent SW Plat w/ 50 Nodes E-LTU\n      - JG550AAE HPE PCM+ Mobility Manager to IMC Basic WLAN Platform Upgrade\n50-node and 150-AP E-LTU\n      - JG590AAE HPE IMC Basic WLAN Manager Software Platform 50 Access Point\nE-LTU\n      - JG660AAE HP IMC Smart Connect with Wireless Manager Virtual Appliance\nEdition E-LTU\n      - JG766AAE HP IMC Smart Connect Virtual Appliance Edition E-LTU\n      - JG767AAE HP IMC Smart Connect with Wireless Manager Virtual Appliance\nEdition E-LTU\n      - JG768AAE HPE PCM+ to IMC Standard Software Platform Upgrade with\n200-node E-LTU\n\n**Note:** Please contact HPE Technical Support if any assistance is needed\nacquiring the software updates. \n\nHISTORY\nVersion:1 (rev.1) - 26 September 2016 Initial release\n\nThird Party Security Patches: Third party security patches that are to be\ninstalled on systems running Hewlett Packard Enterprise (HPE) software\nproducts should be applied in accordance with the customer\u0027s patch management\npolicy. -----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA256\n\nNote: the current version of the following document is available here:\nhttps://h20564.www2.hpe.com/hpsc/doc/public/display?docId=emr_na-c05336888\n\nSUPPORT COMMUNICATION - SECURITY BULLETIN\n\nDocument ID: c05336888\nVersion: 1\n\nHPSBHF03673 rev.1 - HPE Comware 5 and Comware 7 Network Products using\nSSL/TLS, Multiple Remote Vulnerabilities\n\nNOTICE: The information in this Security Bulletin should be acted upon as\nsoon as possible. \n\nRelease Date: 2016-11-18\nLast Updated: 2016-11-18\n\nPotential Security Impact: Remote: Multiple Vulnerabilities\n\nSource: Hewlett Packard Enterprise, Product Security Response Team\n\nVULNERABILITY SUMMARY\nSecurity vulnerabilities in MD5 message digest algorithm and RC4 ciphersuite\ncould potentially impact HPE Comware 5 and Comware 7 network products using\nSSL/TLS. These vulnerabilities could be exploited remotely to conduct\nspoofing attacks and plaintext recovery attacks resulting in disclosure of\ninformation. \n\nReferences:\n\n  - CVE-2004-2761 - MD5 Hash Collision Vulnerability\n  - CVE-2013-2566 - SSL/TLS RC4 algorithm vulnerability\n  - CVE-2015-2808 - SSL/TLS RC4 stream vulnerability known as \"Bar Mitzvah\"\n\nSUPPORTED SOFTWARE VERSIONS*: ONLY impacted versions are listed. \n\n  - Comware 5 (CW5) Products All versions\n  - Comware 7 (CW7) Products All versions\n\nBACKGROUND\n\n  CVSS Base Metrics\n  =================\n  Reference, CVSS V3 Score/Vector, CVSS V2 Score/Vector\n\n    CVE-2004-2761\n      5.3 CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N\n      5.0 (AV:N/AC:L/Au:N/C:N/I:P/A:N)\n\n    CVE-2013-2566\n      5.3 CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N\n      4.3 (AV:N/AC:M/Au:N/C:P/I:N/A:N)\n\n    CVE-2015-2808\n      5.3 CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N\n      4.3 (AV:N/AC:M/Au:N/C:P/I:N/A:N)\n\n    Information on CVSS is documented in\n    HPE Customer Notice HPSN-2008-002 here:\n\nhttps://h20564.www2.hpe.com/hpsc/doc/public/display?docId=emr_na-c01345499\n\nRESOLUTION\n\nHPE has released the following mitigation information to resolve the\nvulnerabilities in HPE Comware 5 and Comware 7 network products. \n\n  *Note:* Please contact HPE Technical Support for any assistance configuring\nthe recommended settings. \n\n**Mitigation for the hash collision vulnerability in the MD5 Algorithm:**\n\n  + For Comware V7, this issue only exists when the key-type is RSA and the\npublic key length less than 1024 bits. \n    Since the default length of the RSA key is 1024 bits, the length should\nonly have to be set manually if necessary. \n    \n      Example command to set the RSA key length to 1024 bits:\n      \n          public-key rsa general name xxx length 1024\n    \n  + For Comware V5, this issue only exists when the key-type is RSA. \n    HPE recommends using DSA and ECDSA keys and not an RSA key. \n\n**Mitigation for the RC4 vulnerabilities:**\n  \n  HPE recommends disabling RC2 and RC4 ciphers. \n  \n  + For Comware V7, remove the RC2/RC4 ciphers:\n        \n    - exp_rsa_rc2_md5\n    - exp_rsa_rc4_md5\n    - rsa_rc4_128_md5\n    - rsa_rc4_128_sha\n\n          Example using the *ssl server-policy anamea ciphersuite* command to\nomit the RC2/RC4 ciphers:\n        \n            ssl server-policy anamea ciphersuite { dhe_rsa_aes_128_cbc_sha |\ndhe_rsa_aes_256_cbc_sha | exp_rsa_des_cbc_sha | rsa_3des_ede_cbc_sha |\nrsa_aes_128_cbc_sha | rsa_aes_256_cbc_sha | rsa_des_cbc_sha }\n\n          Example using the *ssl client-policy anamea prefer-cipher* command\nto omit the RC2/RC4 ciphers:  \n\n            ssl client-policy anamea prefer-cipher { dhe_rsa_aes_128_cbc_sha\n| dhe_rsa_aes_256_cbc_sha | exp_rsa_des_cbc_sha | rsa_3des_ede_cbc_sha |\nrsa_aes_128_cbc_sha | rsa_aes_256_cbc_sha | rsa_des_cbc_sha }\n\n\n  + For Comware V5, remove the following RC4 ciphers:\n        \n    - rsa_rc4_128_md5\n    - rsa_rc4_128_sha\n\n          Example using the *ssl server-policy anamea ciphersuite* command to\nomit the RC4 ciphers:\n        \n            ssl server-policy anamea ciphersuite { rsa_3des_ede_cbc_sha |\nrsa_aes_128_cbc_sha | rsa_aes_256_cbc_sha| rsa_des_cbc_sha }\n\n          Example using the *ssl client-policy anamea prefer-cipher* command\nto omit the RC4 ciphers:  \n\n            ssl client-policy anamea prefer-cipher { rsa_3des_ede_cbc_sha |\nrsa_aes_128_cbc_sha |rsa_aes_256_cbc_sha | rsa_des_cbc_sha }\n\n\n**COMWARE 5 Products**\n\n  + **HSR6602 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JC176A HP 6602 Router Chassis\n      - JG353A HP HSR6602-G Router\n      - JG354A HP HSR6602-XG Router\n      - JG355A HP 6600 MCP-X1 Router Main Processing Unit\n      - JG356A HP 6600 MCP-X2 Router Main Processing Unit\n      - JG776A HP HSR6602-G TAA-compliant Router\n      - JG777A HP HSR6602-XG TAA-compliant Router\n      - JG778A HP 6600 MCP-X2 Router TAA-compliant Main Processing Unit\n  + **HSR6800 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG361A HP HSR6802 Router Chassis\n      - JG361B HP HSR6802 Router Chassis\n      - JG362A HP HSR6804 Router Chassis\n      - JG362B HP HSR6804 Router Chassis\n      - JG363A HP HSR6808 Router Chassis\n      - JG363B HP HSR6808 Router Chassis\n      - JG364A HP HSR6800 RSE-X2 Router Main Processing Unit\n      - JG779A HP HSR6800 RSE-X2 Router TAA-compliant Main Processing Unit\n  + **MSR20 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD432A HP A-MSR20-21 Router\n      - JD662A HP MSR20-20 Router\n      - JD663A HP A-MSR20-21 Router\n      - JD663B HP MSR20-21 Router\n      - JD664A HP MSR20-40 Router\n      - JF228A HP MSR20-40 Router\n      - JF283A HP MSR20-20 Router\n  + **MSR20-1X  (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD431A HP MSR20-10 Router\n      - JD667A HP MSR20-15 IW Multi-Service Router\n      - JD668A HP MSR20-13 Multi-Service Router\n      - JD669A HP MSR20-13 W Multi-Service Router\n      - JD670A HP MSR20-15 A Multi-Service Router\n      - JD671A HP MSR20-15 AW Multi-Service Router\n      - JD672A HP MSR20-15 I Multi-Service Router\n      - JD673A HP MSR20-11 Multi-Service Router\n      - JD674A HP MSR20-12 Multi-Service Router\n      - JD675A HP MSR20-12 W Multi-Service Router\n      - JD676A HP MSR20-12 T1 Multi-Service Router\n      - JF236A HP MSR20-15-I Router\n      - JF237A HP MSR20-15-A Router\n      - JF238A HP MSR20-15-I-W Router\n      - JF239A HP MSR20-11 Router\n      - JF240A HP MSR20-13 Router\n      - JF241A HP MSR20-12 Router\n      - JF806A HP MSR20-12-T Router\n      - JF807A HP MSR20-12-W Router\n      - JF808A HP MSR20-13-W Router\n      - JF809A HP MSR20-15-A-W Router\n      - JF817A HP MSR20-15 Router\n      - JG209A HP MSR20-12-T-W Router (NA)\n      - JG210A HP MSR20-13-W Router (NA)\n  + **MSR 30 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD654A HP MSR30-60 POE Multi-Service Router\n      - JD657A HP MSR30-40 Multi-Service Router\n      - JD658A HP MSR30-60 Multi-Service Router\n      - JD660A HP MSR30-20 POE Multi-Service Router\n      - JD661A HP MSR30-40 POE Multi-Service Router\n      - JD666A HP MSR30-20 Multi-Service Router\n      - JF229A HP MSR30-40 Router\n      - JF230A HP MSR30-60 Router\n      - JF232A HP RTMSR3040-AC-OVSAS-H3\n      - JF235A HP MSR30-20 DC Router\n      - JF284A HP MSR30-20 Router\n      - JF287A HP MSR30-40 DC Router\n      - JF801A HP MSR30-60 DC Router\n      - JF802A HP MSR30-20 PoE Router\n      - JF803A HP MSR30-40 PoE Router\n      - JF804A HP MSR30-60 PoE Router\n      - JG728A HP MSR30-20 TAA-compliant DC Router\n      - JG729A HP MSR30-20 TAA-compliant Router\n  + **MSR 30-16 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD659A HP MSR30-16 POE Multi-Service Router\n      - JD665A HP MSR30-16 Multi-Service Router\n      - JF233A HP MSR30-16 Router\n      - JF234A HP MSR30-16 PoE Router\n  + **MSR 30-1X (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JF800A HP MSR30-11 Router\n      - JF816A HP MSR30-10 2 FE /2 SIC /1 MIM MS Rtr\n      - JG182A HP MSR30-11E Router\n      - JG183A HP MSR30-11F Router\n      - JG184A HP MSR30-10 DC Router\n  + **MSR 50 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD433A HP MSR50-40 Router\n      - JD653A HP MSR50 Processor Module\n      - JD655A HP MSR50-40 Multi-Service Router\n      - JD656A HP MSR50-60 Multi-Service Router\n      - JF231A HP MSR50-60 Router\n      - JF285A HP MSR50-40 DC Router\n      - JF640A HP MSR50-60 Rtr Chassis w DC PwrSupply\n  + **MSR 50-G2 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD429A HP MSR50 G2 Processor Module\n      - JD429B HP MSR50 G2 Processor Module\n  + **MSR 9XX (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JF812A HP MSR900 Router\n      - JF813A HP MSR920 Router\n      - JF814A HP MSR900-W Router\n      - JF815A HP MSR920 2FEWAN/8FELAN/.11 b/g Rtr\n      - JG207A HP MSR900-W Router (NA)\n      - JG208A HP MSR920-W Router (NA)\n  + **MSR 93X (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG511A HP MSR930 Router\n      - JG511B HP MSR930 Router\n      - JG512A HP MSR930 Wireless Router\n      - JG513A HP MSR930 3G Router\n      - JG513B HP MSR930 3G Router\n      - JG514A HP MSR931 Router\n      - JG514B HP MSR931 Router\n      - JG515A HP MSR931 3G Router\n      - JG516A HP MSR933 Router\n      - JG517A HP MSR933 3G Router\n      - JG518A HP MSR935 Router\n      - JG518B HP MSR935 Router\n      - JG519A HP MSR935 Wireless Router\n      - JG520A HP MSR935 3G Router\n      - JG531A HP MSR931 Dual 3G Router\n      - JG531B HP MSR931 Dual 3G Router\n      - JG596A HP MSR930 4G LTE/3G CDMA Router\n      - JG597A HP MSR936 Wireless Router\n      - JG665A HP MSR930 4G LTE/3G WCDMA Global Router\n      - JG704A HP MSR930 4G LTE/3G WCDMA  ATT Router\n      - JH009A HP MSR931 Serial (TI) Router\n      - JH010A HP MSR933 G.SHDSL (TI) Router\n      - JH011A HP MSR935 ADSL2+ (TI) Router\n      - JH012A HP MSR930 Wireless 802.11n (NA) Router\n      - JH012B HP MSR930 Wireless 802.11n (NA) Router\n      - JH013A HP MSR935 Wireless 802.11n (NA) Router\n  + **MSR1000 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG732A HP MSR1003-8 AC Router\n  + **12500 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JC072B HP 12500 Main Processing Unit\n      - JC085A HP A12518 Switch Chassis\n      - JC086A HP A12508 Switch Chassis\n      - JC652A HP 12508 DC Switch Chassis\n      - JC653A HP 12518 DC Switch Chassis\n      - JC654A HP 12504 AC Switch Chassis\n      - JC655A HP 12504 DC Switch Chassis\n      - JC808A HP 12500 TAA Main Processing Unit\n      - JF430A HP A12518 Switch Chassis\n      - JF430B HP 12518 Switch Chassis\n      - JF430C HP 12518 AC Switch Chassis\n      - JF431A HP A12508 Switch Chassis\n      - JF431B HP 12508 Switch Chassis\n      - JF431C HP 12508 AC Switch Chassis\n  + **9500E (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JC124A HP A9508 Switch Chassis\n      - JC124B HP 9505 Switch Chassis\n      - JC125A HP A9512 Switch Chassis\n      - JC125B HP 9512 Switch Chassis\n      - JC474A HP A9508-V Switch Chassis\n      - JC474B HP 9508-V Switch Chassis\n  + **10500 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JC611A HP 10508-V Switch Chassis\n      - JC612A HP 10508 Switch Chassis\n      - JC613A HP 10504 Switch Chassis\n      - JC614A HP 10500 Main Processing Unit\n      - JC748A HP 10512 Switch Chassis\n      - JG375A HP 10500 TAA-compliant Main Processing Unit\n      - JG820A HP 10504 TAA-compliant Switch Chassis\n      - JG821A HP 10508 TAA-compliant Switch Chassis\n      - JG822A HP 10508-V TAA-compliant Switch Chassis\n      - JG823A HP 10512 TAA-compliant Switch Chassis\n  + **7500 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JC666A HP 7503-S 144Gbps Fabric/MPU with PoE Upgradable 20-port\nGig-T/4-port GbE Combo\n      - JC697A HP 7502 TAA-compliant Main Processing Unit\n      - JC698A HP 7503-S 144Gbps TAA Fabric / MPU with 16 GbE SFP Ports and 8\nGbE Combo Ports\n      - JC699A HP 7500 384Gbps TAA-compliant Fabric / MPU with 2 10GbE XFP\nPorts\n      - JC700A HP 7500 384Gbps TAA-compliant Fabric / Main Processing Unit\n      - JC701A HP 7500 768Gbps TAA-compliant Fabric / Main Processing Unit\n      - JD193A HP 7500 384Gbps Fabric Module with 2 XFP Ports\n      - JD193B HP 7500 384Gbps Fabric Module with 2 XFP Ports\n      - JD194A HP 7500 384Gbps Fabric Module\n      - JD194B HP 7500 384Gbps Fabric Module\n      - JD195A HP 7500 384Gbps Advanced Fabric Module\n      - JD196A HP 7502 Fabric Module\n      - JD220A HP 7500 768Gbps Fabric Module\n      - JD224A HP 7500 384Gbps Fabric Module with 12 SFP Ports\n      - JD238A HP 7510 Switch Chassis\n      - JD238B HP 7510 Switch Chassis\n      - JD239A HP 7506 Switch Chassis\n      - JD239B HP 7506 Switch Chassis\n      - JD240A HP 7503 Switch Chassis\n      - JD240B HP 7503 Switch Chassis\n      - JD241A HP 7506-V Switch Chassis\n      - JD241B HP 7506-V Switch Chassis\n      - JD242A HP 7502 Switch Chassis\n      - JD242B HP 7502 Switch Chassis\n      - JD243A HP 7503-S Switch Chassis with 1 Fabric Slot\n      - JD243B HP 7503-S Switch Chassis with 1 Fabric Slot\n      - JE164A HP E7902 Switch Chassis\n      - JE165A HP E7903 Switch Chassis\n      - JE166A HP E7903 1 Fabric Slot Switch Chassis\n      - JE167A HP E7906 Switch Chassis\n      - JE168A HP E7906 Vertical Switch Chassis\n      - JE169A HP E7910 Switch Chassis\n  + **6125G/XG Blade Switch - Version: See Mitigation**\n    * HP Network Products\n      - 737220-B21 HP 6125G Blade Switch with TAA\n      - 737226-B21 HP 6125G/XG Blade Switch with TAA\n      - 658250-B21 HP 6125G/XG Blade Switch Opt Kit\n      - 658247-B21 HP 6125G Blade Switch Opt Kit\n  + **5830 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JC691A HP 5830AF-48G Switch with 1 Interface Slot\n      - JC694A HP 5830AF-96G Switch\n      - JG316A HP 5830AF-48G TAA-compliant Switch w/1 Interface Slot\n      - JG374A HP 5830AF-96G TAA-compliant Switch\n  + **5800 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JC099A HP 5800-24G-PoE Switch\n      - JC099B HP 5800-24G-PoE+ Switch\n      - JC100A HP 5800-24G Switch\n      - JC100B HP 5800-24G Switch\n      - JC101A HP 5800-48G Switch with 2 Slots\n      - JC101B HP 5800-48G-PoE+ Switch with 2 Interface Slots\n      - JC103A HP 5800-24G-SFP Switch\n      - JC103B HP 5800-24G-SFP Switch with 1 Interface Slot\n      - JC104A HP 5800-48G-PoE Switch\n      - JC104B HP 5800-48G-PoE+ Switch with 1 Interface Slot\n      - JC105A HP 5800-48G Switch\n      - JC105B HP 5800-48G Switch with 1 Interface Slot\n      - JG254A HP 5800-24G-PoE+ TAA-compliant Switch\n      - JG254B HP 5800-24G-PoE+ TAA-compliant Switch\n      - JG255A HP 5800-24G TAA-compliant Switch\n      - JG255B HP 5800-24G TAA-compliant Switch\n      - JG256A HP 5800-24G-SFP TAA-compliant Switch with 1 Interface Slot\n      - JG256B HP 5800-24G-SFP TAA-compliant Switch with 1 Interface Slot\n      - JG257A HP 5800-48G-PoE+ TAA-compliant Switch with 1 Interface Slot\n      - JG257B HP 5800-48G-PoE+ TAA-compliant Switch with 1 Interface Slot\n      - JG258A HP 5800-48G TAA-compliant Switch with 1 Interface Slot\n      - JG258B HP 5800-48G TAA-compliant Switch with 1 Interface Slot\n      - JG225A HP 5800AF-48G Switch\n      - JG225B HP 5800AF-48G Switch\n      - JG242A HP 5800-48G-PoE+ TAA-compliant Switch with 2 Interface Slots\n      - JG242B HP 5800-48G-PoE+ TAA-compliant Switch with 2 Interface\n      - JG243A HP 5820-24XG-SFP+ TAA-compliant Switch\n      - JG243B HP 5820-24XG-SFP+ TAA-compliant Switch\n      - JG259A HP 5820X-14XG-SFP+ TAA-compliant Switch with 2 Interface Slots\n\u0026 1 OAA Slot\n      - JG259B HP 5820-14XG-SFP+ TAA-compliant Switch with 2 Interface Slots\nand 1 OAA Slot\n      - JC106A HP 5820-14XG-SFP+ Switch with 2 Slots\n      - JC106B HP 5820-14XG-SFP+ Switch with 2 Interface Slots \u0026 1 OAA Slot\n      - JG219A HP 5820AF-24XG Switch\n      - JG219B HP 5820AF-24XG Switch\n      - JC102A HP 5820-24XG-SFP+ Switch\n      - JC102B HP 5820-24XG-SFP+ Switch\n  + **5500 HI (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG311A HP 5500-24G-4SFP HI Switch with 2 Interface Slots\n      - JG312A HP 5500-48G-4SFP HI Switch with 2 Interface Slots\n      - JG541A HP 5500-24G-PoE+-4SFP HI Switch with 2 Interface Slots\n      - JG542A HP 5500-48G-PoE+-4SFP HI Switch with 2 Interface Slots\n      - JG543A HP 5500-24G-SFP HI Switch with 2 Interface Slots\n      - JG679A HP 5500-24G-PoE+-4SFP HI TAA-compliant Switch with 2 Interface\nSlots\n      - JG680A HP 5500-48G-PoE+-4SFP HI TAA-compliant Switch with 2 Interface\nSlots\n      - JG681A HP 5500-24G-SFP HI TAA-compliant Switch with 2 Interface Slots\n  + **5500 EI (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD373A HP 5500-24G DC EI Switch\n      - JD374A HP 5500-24G-SFP EI Switch\n      - JD375A HP 5500-48G EI Switch\n      - JD376A HP 5500-48G-PoE EI Switch\n      - JD377A HP 5500-24G EI Switch\n      - JD378A HP 5500-24G-PoE EI Switch\n      - JD379A HP 5500-24G-SFP DC EI Switch\n      - JG240A HP 5500-48G-PoE+ EI Switch with 2 Interface Slots\n      - JG241A HP 5500-24G-PoE+ EI Switch with 2 Interface Slots\n      - JG249A HP 5500-24G-SFP EI TAA-compliant Switch with 2 Interface\n      - JG250A HP 5500-24G EI TAA-compliant Switch with 2 Interface Slots\n      - JG251A HP 5500-48G EI TAA-compliant Switch with 2 Interface Slots\n      - JG252A HP 5500-24G-PoE+ EI TAA-compliant Switch with 2 Interface\nSlots\n      - JG253A HP 5500-48G-PoE+ EI TAA-compliant Switch with 2 Interface\nSlots\n  + **4800G (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD007A HP 4800-24G Switch\n      - JD008A HP 4800-24G-PoE Switch\n      - JD009A HP 4800-24G-SFP Switch\n      - JD010A HP 4800-48G Switch\n      - JD011A HP 4800-48G-PoE Switch\n  + **5500SI (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD369A HP 5500-24G SI Switch\n      - JD370A HP 5500-48G SI Switch\n      - JD371A HP 5500-24G-PoE SI Switch\n      - JD372A HP 5500-48G-PoE SI Switch\n      - JG238A HP 5500-24G-PoE+ SI Switch with 2 Interface Slots\n      - JG239A HP 5500-48G-PoE+ SI Switch with 2 Interface Slots\n  + **4500G (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JF428A HP 4510-48G Switch\n      - JF847A HP 4510-24G Switch\n  + **5120 EI (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JE066A HP 5120-24G EI Switch\n      - JE067A HP 5120-48G EI Switch\n      - JE068A HP 5120-24G EI Switch with 2 Interface Slots\n      - JE069A HP 5120-48G EI Switch with 2 Interface Slots\n      - JE070A HP 5120-24G-PoE EI 2-slot Switch\n      - JE071A HP 5120-48G-PoE EI 2-slot Switch\n      - JG236A HP 5120-24G-PoE+ EI Switch with 2 Interface Slots\n      - JG237A HP 5120-48G-PoE+ EI Switch with 2 Interface Slots\n      - JG245A HP 5120-24G EI TAA-compliant Switch with 2 Interface Slots\n      - JG246A HP 5120-48G EI TAA-compliant Switch with 2 Interface Slots\n      - JG247A HP 5120-24G-PoE+ EI TAA-compliant Switch with 2 Slots\n      - JG248A HP 5120-48G-PoE+ EI TAA-compliant Switch with 2 Slots\n  + **4210G (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JF844A HP 4210-24G Switch\n      - JF845A HP 4210-48G Switch\n      - JF846A HP 4210-24G-PoE Switch\n  + **5120 SI (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JE072A HP 5120-48G SI Switch\n      - JE072B HPE 5120 48G SI Switch\n      - JE073A HP 5120-16G SI Switch\n      - JE073B HPE 5120 16G SI Switch\n      - JE074A HP 5120-24G SI Switch\n      - JE074B HPE 5120 24G SI Switch\n      - JG091A HP 5120-24G-PoE+ (370W) SI Switch\n      - JG091B HPE 5120 24G PoE+ (370W) SI Switch\n      - JG092A HP 5120-24G-PoE+ (170W) SI Switch\n      - JG309B HPE 5120 8G PoE+ (180W) SI Switch\n      - JG310B HPE 5120 8G PoE+ (65W) SI Switch\n  + **3610 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD335A HP 3610-48 Switch\n      - JD336A HP 3610-24-4G-SFP Switch\n      - JD337A HP 3610-24-2G-2G-SFP Switch\n      - JD338A HP 3610-24-SFP Switch\n  + **3600V2 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG299A HP 3600-24 v2 EI Switch\n      - JG299B HP 3600-24 v2 EI Switch\n      - JG300A HP 3600-48 v2 EI Switch\n      - JG300B HP 3600-48 v2 EI Switch\n      - JG301A HP 3600-24-PoE+ v2 EI Switch\n      - JG301B HP 3600-24-PoE+ v2 EI Switch\n      - JG301C HP 3600-24-PoE+ v2 EI Switch\n      - JG302A HP 3600-48-PoE+ v2 EI Switch\n      - JG302B HP 3600-48-PoE+ v2 EI Switch\n      - JG302C HP 3600-48-PoE+ v2 EI Switch\n      - JG303A HP 3600-24-SFP v2 EI Switch\n      - JG303B HP 3600-24-SFP v2 EI Switch\n      - JG304A HP 3600-24 v2 SI Switch\n      - JG304B HP 3600-24 v2 SI Switch\n      - JG305A HP 3600-48 v2 SI Switch\n      - JG305B HP 3600-48 v2 SI Switch\n      - JG306A HP 3600-24-PoE+ v2 SI Switch\n      - JG306B HP 3600-24-PoE+ v2 SI Switch\n      - JG306C HP 3600-24-PoE+ v2 SI Switch\n      - JG307A HP 3600-48-PoE+ v2 SI Switch\n      - JG307B HP 3600-48-PoE+ v2 SI Switch\n      - JG307C HP 3600-48-PoE+ v2 SI Switch\n  + **3100V2-48 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG315A HP 3100-48 v2 Switch\n      - JG315B HP 3100-48 v2 Switch\n  + **HP870 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG723A HP 870 Unified Wired-WLAN Appliance\n      - JG725A HP 870 Unified Wired-WLAN TAA-compliant Appliance\n  + **HP850 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG722A HP 850 Unified Wired-WLAN Appliance\n      - JG724A HP 850 Unified Wired-WLAN TAA-compliant Appliance\n  + **HP830 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG640A HP 830 24-Port PoE+ Unified Wired-WLAN Switch\n      - JG641A HP 830 8-port PoE+ Unified Wired-WLAN Switch\n      - JG646A HP 830 24-Port PoE+ Unified Wired-WLAN TAA-compliant Switch\n      - JG647A HP 830 8-Port PoE+ Unified Wired-WLAN TAA-compliant\n  + **HP6000 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG639A HP 10500/7500 20G Unified Wired-WLAN Module\n      - JG645A HP 10500/7500 20G Unified Wired-WLAN TAA-compliant Module\n  + **WX5004-EI (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD447B HP WX5002 Access Controller\n      - JD448A HP WX5004 Access Controller\n      - JD448B HP WX5004 Access Controller\n      - JD469A HP WX5004 Access Controller\n  + **SecBlade FW (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JC635A HP 12500 VPN Firewall Module\n      - JD245A HP 9500 VPN Firewall Module\n      - JD249A HP 10500/7500 Advanced VPN Firewall Module\n      - JD250A HP 6600 Firewall Processing Router Module\n      - JD251A HP 8800 Firewall Processing Module\n      - JD255A HP 5820 VPN Firewall Module\n  + **F1000-E (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD272A HP F1000-E VPN Firewall Appliance\n  + **F1000-A-EI (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG214A HP F1000-A-EI VPN Firewall Appliance\n  + **F1000-S-EI (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG213A HP F1000-S-EI VPN Firewall Appliance\n  + **F5000-A (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD259A HP A5000-A5 VPN Firewall Chassis\n      - JG215A HP F5000 Firewall Main Processing Unit\n      - JG216A HP F5000 Firewall Standalone Chassis\n  + **U200S and CS (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD273A HP U200-S UTM Appliance\n  + **U200A and M (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JD275A HP U200-A UTM Appliance\n  + **F5000-C/S (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG650A HP F5000-C VPN Firewall Appliance\n      - JG370A HP F5000-S VPN Firewall Appliance\n  + **SecBlade III (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG371A HP 12500 20Gbps VPN Firewall Module\n      - JG372A HP 10500/11900/7500 20Gbps VPN Firewall Module\n  + **6600 RSE RU (Comware 5 Low Encryption SW) - Version: See Mitigation**\n    * HP Network Products\n      - JC177A HP 6608 Router\n      - JC177B HP 6608 Router Chassis\n      - JC178A HP 6604 Router Chassis\n      - JC178B HP 6604 Router Chassis\n      - JC496A HP 6616 Router Chassis\n      - JC566A HP 6600 RSE-X1 Router Main Processing Unit\n      - JG780A HP 6600 RSE-X1 TAA-compliant Main Processing Unit\n  + **6600 RPE RU (Comware 5 Low Encryption SW) - Version: See Mitigation**\n    * HP Network Products\n      - JC165A HP 6600 RPE-X1 Router Module\n      - JG781A HP 6600 RPE-X1 TAA-compliant Main Processing Unit\n  + **6602 RU (Comware 5 Low Encryption SW) - Version: See Mitigation**\n    * HP Network Products\n      - JC176A HP 6602 Router Chassis\n  + **HSR6602 RU (Comware 5 Low Encryption SW) - Version: See Mitigation**\n    * HP Network Products\n      - JC177A HP 6608 Router\n      - JC177B HP 6608 Router Chassis\n      - JC178A HP 6604 Router Chassis\n      - JC178B HP 6604 Router Chassis\n      - JC496A HP 6616 Router Chassis\n      - JG353A HP HSR6602-G Router\n      - JG354A HP HSR6602-XG Router\n      - JG355A HP 6600 MCP-X1 Router Main Processing Unit\n      - JG356A HP 6600 MCP-X2 Router Main Processing Unit\n      - JG776A HP HSR6602-G TAA-compliant Router\n      - JG777A HP HSR6602-XG TAA-compliant Router\n      - JG778A HP 6600 MCP-X2 Router TAA-compliant Main Processing Unit\n  + **HSR6800 RU (Comware 5 Low Encryption SW) - Version: See Mitigation**\n    * HP Network Products\n      - JG361A HP HSR6802 Router Chassis\n      - JG361B HP HSR6802 Router Chassis\n      - JG362A HP HSR6804 Router Chassis\n      - JG362B HP HSR6804 Router Chassis\n      - JG363A HP HSR6808 Router Chassis\n      - JG363B HP HSR6808 Router Chassis\n      - JG364A HP HSR6800 RSE-X2 Router Main Processing Unit\n      - JG779A HP HSR6800 RSE-X2 Router TAA-compliant Main Processing Unit\n  + **SMB1910 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG540A HP 1910-48 Switch\n      - JG539A HP 1910-24-PoE+ Switch\n      - JG538A HP 1910-24 Switch\n      - JG537A HP 1910-8 -PoE+ Switch\n      - JG536A HP 1910-8 Switch\n  + **SMB1920 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG928A HP 1920-48G-PoE+ (370W) Switch\n      - JG927A HP 1920-48G Switch\n      - JG926A HP 1920-24G-PoE+ (370W) Switch\n      - JG925A HP 1920-24G-PoE+ (180W) Switch\n      - JG924A HP 1920-24G Switch\n      - JG923A HP 1920-16G Switch\n      - JG922A HP 1920-8G-PoE+ (180W) Switch\n      - JG921A HP 1920-8G-PoE+ (65W) Switch\n      - JG920A HP 1920-8G Switch\n  + **V1910 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JE005A HP 1910-16G Switch\n      - JE006A HP 1910-24G Switch\n      - JE007A HP 1910-24G-PoE (365W) Switch\n      - JE008A HP 1910-24G-PoE(170W) Switch\n      - JE009A HP 1910-48G Switch\n      - JG348A HP 1910-8G Switch\n      - JG349A HP 1910-8G-PoE+ (65W) Switch\n      - JG350A HP 1910-8G-PoE+ (180W) Switch\n  + **SMB 1620 (Comware 5) - Version: See Mitigation**\n    * HP Network Products\n      - JG914A HP 1620-48G Switch\n      - JG913A HP 1620-24G Switch\n      - JG912A HP 1620-8G Switch\n\n\n**COMWARE 7 Products**\n\n  + **12500 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JC072B HP 12500 Main Processing Unit\n      - JC085A HP A12518 Switch Chassis\n      - JC086A HP A12508 Switch Chassis\n      - JC652A HP 12508 DC Switch Chassis\n      - JC653A HP 12518 DC Switch Chassis\n      - JC654A HP 12504 AC Switch Chassis\n      - JC655A HP 12504 DC Switch Chassis\n      - JF430A HP A12518 Switch Chassis\n      - JF430B HP 12518 Switch Chassis\n      - JF430C HP 12518 AC Switch Chassis\n      - JF431A HP A12508 Switch Chassis\n      - JF431B HP 12508 Switch Chassis\n      - JF431C HP 12508 AC Switch Chassis\n      - JG497A HP 12500 MPU w/Comware V7 OS\n      - JG782A HP FF 12508E AC Switch Chassis\n      - JG783A HP FF 12508E DC Switch Chassis\n      - JG784A HP FF 12518E AC Switch Chassis\n      - JG785A HP FF 12518E DC Switch Chassis\n      - JG802A HP FF 12500E MPU\n  + **10500 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JC611A HP 10508-V Switch Chassis\n      - JC612A HP 10508 Switch Chassis\n      - JC613A HP 10504 Switch Chassis\n      - JC748A HP 10512 Switch Chassis\n      - JG608A HP FlexFabric 11908-V Switch Chassis\n      - JG609A HP FlexFabric 11900 Main Processing Unit\n      - JG820A HP 10504 TAA Switch Chassis\n      - JG821A HP 10508 TAA Switch Chassis\n      - JG822A HP 10508-V TAA Switch Chassis\n      - JG823A HP 10512 TAA Switch Chassis\n      - JG496A HP 10500 Type A MPU w/Comware v7 OS\n      - JH198A HP 10500 Type D Main Processing Unit with Comware v7 Operating\nSystem\n      - JH206A HP 10500 Type D TAA-compliant with Comware v7 Operating System\nMain Processing Unit\n  + **12900 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JG619A HP FlexFabric 12910 Switch AC Chassis\n      - JG621A HP FlexFabric 12910 Main Processing Unit\n      - JG632A HP FlexFabric 12916 Switch AC Chassis\n      - JG634A HP FlexFabric 12916 Main Processing Unit\n      - JH104A HP FlexFabric 12900E Main Processing Unit\n      - JH114A HP FlexFabric 12910 TAA-compliant Main Processing Unit\n      - JH263A HP FlexFabric 12904E Main Processing Unit\n      - JH255A HP FlexFabric 12908E Switch Chassis\n      - JH262A HP FlexFabric 12904E Switch Chassis\n      - JH113A HP FlexFabric 12910 TAA-compliant Switch AC Chassis\n      - JH103A HP FlexFabric 12916E Switch Chassis\n  + **5900 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JC772A HP 5900AF-48XG-4QSFP+ Switch\n      - JG296A HP 5920AF-24XG Switch\n      - JG336A HP 5900AF-48XGT-4QSFP+ Switch\n      - JG510A HP 5900AF-48G-4XG-2QSFP+ Switch\n      - JG554A HP 5900AF-48XG-4QSFP+ TAA Switch\n      - JG555A HP 5920AF-24XG TAA Switch\n      - JG838A HP FF 5900CP-48XG-4QSFP+ Switch\n      - JH036A HP FlexFabric 5900CP 48XG 4QSFP+ TAA-Compliant\n      - JH037A HP 5900AF 48XGT 4QSFP+ TAA-Compliant Switch\n      - JH038A HP 5900AF 48G 4XG 2QSFP+ TAA-Compliant\n  + **MSR1000 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JG875A HP MSR1002-4 AC Router\n      - JH060A HP MSR1003-8S AC Router\n  + **MSR2000 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JG411A HP MSR2003 AC Router\n      - JG734A HP MSR2004-24 AC Router\n      - JG735A HP MSR2004-48 Router\n      - JG866A HP MSR2003 TAA-compliant AC Router\n  + **MSR3000 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JG404A HP MSR3064 Router\n      - JG405A HP MSR3044 Router\n      - JG406A HP MSR3024 AC Router\n      - JG407A HP MSR3024 DC Router\n      - JG408A HP MSR3024 PoE Router\n      - JG409A HP MSR3012 AC Router\n      - JG410A HP MSR3012 DC Router\n      - JG861A HP MSR3024 TAA-compliant AC Router\n  + **MSR4000 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JG402A HP MSR4080 Router Chassis\n      - JG403A HP MSR4060 Router Chassis\n      - JG412A HP MSR4000 MPU-100 Main Processing Unit\n      - JG869A HP MSR4000 TAA-compliant MPU-100 Main Processing Unit\n  + **VSR (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JG810AAE HP VSR1001 Virtual Services Router 60 Day Evaluation\nSoftware\n      - JG811AAE HP VSR1001 Comware 7 Virtual Services Router\n      - JG812AAE HP VSR1004 Comware 7 Virtual Services Router\n      - JG813AAE HP VSR1008 Comware 7 Virtual Services Router\n  + **7900 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JG682A HP FlexFabric 7904 Switch Chassis\n      - JG841A HP FlexFabric 7910 Switch Chassis\n      - JG842A HP FlexFabric 7910 7.2Tbps Fabric / Main Processing Unit\n      - JH001A HP FlexFabric 7910 2.4Tbps Fabric / Main Processing Unit\n      - JH122A HP FlexFabric 7904 TAA-compliant Switch Chassis\n      - JH123A HP FlexFabric 7910 TAA-compliant Switch Chassis\n      - JH124A HP FlexFabric 7910 7.2Tbps TAA-compliant Fabric/Main\nProcessing Unit\n      - JH125A HP FlexFabric 7910 2.4Tbps TAA-compliant Fabric/Main\nProcessing Unit\n  + **5130 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JG932A HP 5130-24G-4SFP+ EI Switch\n      - JG933A HP 5130-24G-SFP-4SFP+ EI Switch\n      - JG934A HP 5130-48G-4SFP+ EI Switch\n      - JG936A HP 5130-24G-PoE+-4SFP+ (370W) EI Switch\n      - JG937A HP 5130-48G-PoE+-4SFP+ (370W) EI Switch\n      - JG938A HP 5130-24G-2SFP+-2XGT EI Switch\n      - JG939A HP 5130-48G-2SFP+-2XGT EI Switch\n      - JG940A HP 5130-24G-PoE+-2SFP+-2XGT (370W) EI Switch\n      - JG941A HP 5130-48G-PoE+-2SFP+-2XGT (370W) EI Switch\n      - JG975A HP 5130-24G-4SFP+ EI Brazil Switch\n      - JG976A HP 5130-48G-4SFP+ EI Brazil Switch\n      - JG977A HP 5130-24G-PoE+-4SFP+ (370W) EI Brazil Switch\n      - JG978A HP 5130-48G-PoE+-4SFP+ (370W) EI Brazil Switch\n  + **6125XLG - Version: See Mitigation**\n    * HP Network Products\n      - 711307-B21 HP 6125XLG Blade Switch\n      - 737230-B21 HP 6125XLG Blade Switch with TAA\n  + **6127XLG - Version: See Mitigation**\n    * HP Network Products\n      - 787635 HP 6127XLG Blade Switch Opt Kit\n  + **Moonshot - Version: See Mitigation**\n    * HP Network Products\n      - 786617-B21 - HP Moonshot-45Gc Switch Module\n      - 704654-B21 - HP Moonshot-45XGc Switch Module\n      - 786619-B21 - HP Moonshot-180XGc Switch Module\n  + **5700 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JG894A HP FlexFabric 5700-48G-4XG-2QSFP+ Switch\n      - JG895A HP FlexFabric 5700-48G-4XG-2QSFP+ TAA-compliant Switch\n      - JG896A HP FlexFabric 5700-40XG-2QSFP+ Switch\n      - JG897A HP FlexFabric 5700-40XG-2QSFP+ TAA-compliant Switch\n      - JG898A HP FlexFabric 5700-32XGT-8XG-2QSFP+ Switch\n      - JG899A HP FlexFabric 5700-32XGT-8XG-2QSFP+ TAA-compliant Switch\n  + **5930 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JG726A HP FlexFabric 5930 32QSFP+ Switch\n      - JG727A HP FlexFabric 5930 32QSFP+ TAA-compliant Switch\n      - JH178A HP FlexFabric 5930 2QSFP+ 2-slot Switch\n      - JH179A HP FlexFabric 5930 4-slot Switch\n      - JH187A HP FlexFabric 5930 2QSFP+ 2-slot TAA-compliant Switch\n      - JH188A HP FlexFabric 5930 4-slot TAA-compliant Switch\n  + **HSR6600 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JG353A HP HSR6602-G Router\n      - JG354A HP HSR6602-XG Router\n      - JG776A HP HSR6602-G TAA-compliant Router\n      - JG777A HP HSR6602-XG TAA-compliant Router\n  + **HSR6800 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JG361A HP HSR6802 Router Chassis\n      - JG361B HP HSR6802 Router Chassis\n      - JG362A HP HSR6804 Router Chassis\n      - JG362B HP HSR6804 Router Chassis\n      - JG363A HP HSR6808 Router Chassis\n      - JG363B HP HSR6808 Router Chassis\n      - JG364A HP HSR6800 RSE-X2 Router Main Processing Unit\n      - JG779A HP HSR6800 RSE-X2 Router TAA-compliant Main Processing\n      - JH075A HP HSR6800 RSE-X3 Router Main Processing Unit\n  + **1950 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JG960A HP 1950-24G-4XG Switch\n      - JG961A HP 1950-48G-2SFP+-2XGT Switch\n      - JG962A HP 1950-24G-2SFP+-2XGT-PoE+(370W) Switch\n      - JG963A HP 1950-48G-2SFP+-2XGT-PoE+(370W) Switch\n  + **7500 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JD238C HP 7510 Switch Chassis\n      - JD239C HP 7506 Switch Chassis\n      - JD240C HP 7503 Switch Chassis\n      - JD242C HP 7502 Switch Chassis\n      - JH207A HP 7500 1.2Tbps Fabric with 2-port 40GbE QSFP+ for IRF-Only\nMain Processing Unit\n      - JH208A HP 7502 Main Processing Unit\n      - JH209A HP 7500 2.4Tbps Fabric with 8-port 1/10GbE SFP+ and 2-port\n40GbE QSFP+ Main Processing Unit\n  + **5950 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JH321A HPE FlexFabric 5950 32QSFP28 Switch\n  + **5940 (Comware 7) - Version: See Mitigation**\n    * HP Network Products\n      - JH390A HPE FlexFabric 5940 48SFP+ 6QSFP28 Switch\n      - JH391A HPE FlexFabric 5940 48XGT 6QSFP28 Switch\n      - JH394A HPE FlexFabric 5940 48XGT 6QSFP+ Switch\n      - JH395A HPE FlexFabric 5940 48SFP+ 6QSFP+ Switch\n      - JH396A HPE FlexFabric 5940 32QSFP+ Switch\n      - JH397A HPE FlexFabric 5940 2-slot Switch\n      - JH398A HPE FlexFabric 5940 4-slot Switch\n\nHISTORY\nVersion:1 (rev.1) - 18 November 2016 Initial release\n\nThird Party Security Patches: Third party security patches that are to be\ninstalled on systems running Hewlett Packard Enterprise (HPE) software\nproducts should be applied in accordance with the customer\u0027s patch management\npolicy. \n\nSupport: For issues about implementing the recommendations of this Security\nBulletin, contact normal HPE Services support channel. For other issues about\nthe content of this Security Bulletin, send e-mail to security-alert@hpe.com. \n\nReport: To report a potential security vulnerability for any HPE supported\nproduct:\n  Web form: https://www.hpe.com/info/report-security-vulnerability\n  Email: security-alert@hpe.com\n\nSubscribe: To initiate a subscription to receive future HPE Security Bulletin\nalerts via Email: http://www.hpe.com/support/Subscriber_Choice\n\nSecurity Bulletin Archive: A list of recently released Security Bulletins is\navailable here: http://www.hpe.com/support/Security_Bulletin_Archive\n\nSoftware Product Category: The Software Product Category is represented in\nthe title by the two characters following HPSB. \n\n3C = 3COM\n3P = 3rd Party Software\nGN = HPE General Software\nHF = HPE Hardware and Firmware\nMU = Multi-Platform Software\nNS = NonStop Servers\nOV = OpenVMS\nPV = ProCurve\nST = Storage Software\nUX = HP-UX\n\nCopyright 2016 Hewlett Packard Enterprise\n\nHewlett Packard Enterprise shall not be liable for technical or editorial\nerrors or omissions contained herein. The information provided is provided\n\"as is\" without warranty of any kind. To the extent permitted by law, neither\nHP or its affiliates, subcontractors or suppliers will be liable for\nincidental,special or consequential damages including downtime cost; lost\nprofits; damages relating to the procurement of substitute products or\nservices; or damages for loss of data, or software restoration. The\ninformation in this document is subject to change without notice. Hewlett\nPackard Enterprise and the names of Hewlett Packard Enterprise products\nreferenced herein are trademarks of Hewlett Packard Enterprise in the United\nStates and other countries. Other product and company names mentioned herein\nmay be trademarks of their respective owners. \n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1\n\niQEcBAEBCAAGBQJYLytTAAoJELXhAxt7SZaiMjYIAI4xgRNJCPqOZ40XLUNhxYrc\nHyqTd62PbcGOPTFya1qOo16V94eJ5id5oRHOtcrFjJKtDedDS6OoAe5HWYXvLEI3\n0fEzCNjk9aHTcvuf2t17MGhS0Fk2JrZ0191RFONKuEkqgMmK0d44SGMrVXSA28Dj\nphW1dzm1HiJO0NPUOa+cYMhNt0+I7b+ulD6FdldNdqx4fNtlXiHvcRbF4Wffe2hD\nN2hlvx1Wu1iu2g75XPNPOPYhDRkyAm79P2HZGCUohQlhWsRgcJRnubojJBr7CMf9\n2Ud7MwYL4jTKK/mFdim4ej/hwPn3SCb5ekhTUBFDlu2J2DjUYi2xDQgyQkhuUIg=\n=NGQO\n-----END PGP SIGNATURE-----\n. ===========================================================\nUbuntu Security Notice USN-740-1             March 17, 2009\nnss, firefox vulnerability\nCVE-2004-2761\n===========================================================\n\nA security issue affects the following Ubuntu releases:\n\nUbuntu 6.06 LTS\nUbuntu 7.10\nUbuntu 8.04 LTS\nUbuntu 8.10\n\nThis advisory also applies to the corresponding versions of\nKubuntu, Edubuntu, and Xubuntu. \n\nThe problem can be corrected by upgrading your system to the\nfollowing package versions:\n\nUbuntu 6.06 LTS:\n  libnss3                         1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2\n\nUbuntu 7.10:\n  libnss3-0d                      3.11.5-3ubuntu0.7.10.2\n\nUbuntu 8.04 LTS:\n  libnss3-0d                      3.12.0.3-0ubuntu0.8.04.5\n  libnss3-1d                      3.12.0.3-0ubuntu0.8.04.5\n\nUbuntu 8.10:\n  libnss3-1d                      3.12.0.3-0ubuntu5.8.10.1\n\nAfter a standard system upgrade you need to restart your session to\neffect the necessary changes. This update\nblacklists the proof of concept rogue certificate authority as discussed\nin http://www.win.tue.nl/hashclash/rogue-ca/. \n\n\nUpdated packages for Ubuntu 6.06 LTS:\n\n  Source archives:\n\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2.diff.gz\n      Size/MD5:   188837 84bf6c0e34576e50daab0284028533bb\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2.dsc\n      Size/MD5:     2389 abbe8becc260777f55315eb565f8d732\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k.orig.tar.gz\n      Size/MD5: 48504132 171958941a2ca0562039add097278245\n\n  Architecture independent packages:\n\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/mozilla-firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_all.deb\n      Size/MD5:    53898 025eab1318c7a90e48fb0a927bbbd433\n    http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/mozilla-firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_all.deb\n      Size/MD5:    53014 87135a54ac04ea95a0a3c7dccb8a4d4e\n\n  amd64 architecture (Athlon64, Opteron, EM64T Xeon):\n\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb\n      Size/MD5: 47681092 19a313089bf1da267950c8f5b8d2d2df\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb\n      Size/MD5:  2859292 f6a4b48f0e0e3250d83f0bf4183836f7\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb\n      Size/MD5:    86270 0bd3983f76c7474d37018f26eee721f4\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb\n      Size/MD5:  9494334 91c75d6baf740531224bed258c6622b9\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb\n      Size/MD5:   222572 2779237df4dc1c30d8d2c01623eef1e3\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr4_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb\n      Size/MD5:   166118 862f4a02164840c1d94228a396c2688c\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb\n      Size/MD5:   248116 183208d5e43c3ddc117d6cbefc54a472\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss3_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb\n      Size/MD5:   826574 2ff813a52cac4b3392f056b145129821\n    http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb\n      Size/MD5:   218858 2fcc1d909f4fdafaced1b1f737f83bf1\n\n  i386 architecture (x86 compatible Intel/AMD):\n\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb\n      Size/MD5: 44228668 5a244b5b731d0d703cb573e2db10b74b\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb\n      Size/MD5:  2859256 274033babbff1131a391ca71c19a6e6b\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb\n      Size/MD5:    78600 3e86ec8d1b73b8f7b822f12aaa56451a\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb\n      Size/MD5:  7997718 56cb9f85d34aa86721dcc36414b8f0e9\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb\n      Size/MD5:   222564 14edfb722d08b49930b901114b841c81\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr4_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb\n      Size/MD5:   150606 fa56606c4d002559ee41e965299b523a\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb\n      Size/MD5:   248106 58139d67e47359f9cb056ad29292d06d\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss3_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb\n      Size/MD5:   717824 ce294179ee0e0fcdea589e751548f04e\n    http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb\n      Size/MD5:   212058 b3874b6f769aeafedce238b9a15e7b09\n\n  powerpc architecture (Apple Macintosh G3/G4/G5):\n\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb\n      Size/MD5: 49085684 a4ea3920e8120e9dc7138cf8e8595aa4\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb\n      Size/MD5:  2859352 dac458ed9e848ba8c64d0e18071149f8\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb\n      Size/MD5:    81686 228d420fc876cb95b6edad70d58c2c48\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb\n      Size/MD5:  9113232 7ba2b92dad312ca9d2186dac6380d638\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb\n      Size/MD5:   222564 9e89e2cc261f1c1b43e0b765e140d3d5\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr4_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb\n      Size/MD5:   163310 3ddb28abafbffe0943e25f48267df5f1\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb\n      Size/MD5:   248128 94da18de9bba74798a5ae257e85d882b\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss3_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb\n      Size/MD5:   817522 eb53d37dea9fce55780abda44b94ca89\n    http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb\n      Size/MD5:   215556 779f90ccb4534487d2274536ac9279dd\n\n  sparc architecture (Sun SPARC/UltraSPARC):\n\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb\n      Size/MD5: 45629214 b30a5365e327c4366ae3ea2b393e1d78\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb\n      Size/MD5:  2859296 c7f225dc39717d6156b9163c7a8ddda0\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb\n      Size/MD5:    80180 51ca826844fa46702feb9bbeb5c6e999\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb\n      Size/MD5:  8499070 ee1fd111aa113ac50e5ea42dc85e1e77\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb\n      Size/MD5:   222590 6a5621015d57ffbd93f92a8552d98e54\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr4_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb\n      Size/MD5:   153210 b7c4a9074a678fcaf70a4db7bcb8fd5d\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb\n      Size/MD5:   248150 1273ab06f98bf861e4e66985add8685a\n    http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss3_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb\n      Size/MD5:   728698 cd5ba0f693710a604274d327d4724c88\n    http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb\n      Size/MD5:   213030 fe7a017cd7f4a8a9064372e51f903263\n\nUpdated packages for Ubuntu 7.10:\n\n  Source archives:\n\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.11.5-3ubuntu0.7.10.2.diff.gz\n      Size/MD5:    23735 2c3b55fe3f316790d2174a56709723ad\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.11.5-3ubuntu0.7.10.2.dsc\n      Size/MD5:     1925 9d9a2fa42ff8dcb452761d66e3238ef6\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.11.5.orig.tar.gz\n      Size/MD5:  3696893 1add44e6a41dbf5091cfd000f19ad6b9\n\n  amd64 architecture (Athlon64, Opteron, EM64T Xeon):\n\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_amd64.deb\n      Size/MD5:  3143890 dad0155f293aff8a59d42086cef022c3\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_amd64.deb\n      Size/MD5:   799588 70d491944efd2ce20cb839da11030b0e\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_amd64.deb\n      Size/MD5:   241342 567c357ea31e0e1729db4738822aa7b0\n    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_amd64.deb\n      Size/MD5:   656372 a6868f642b5c295236c7df01dbc3f2d9\n\n  i386 architecture (x86 compatible Intel/AMD):\n\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_i386.deb\n      Size/MD5:  2995870 d4ea291de433c1768148f35a4f40e596\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_i386.deb\n      Size/MD5:   723166 81b970c37e37b2bfe13bf8edf8b8c2df\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_i386.deb\n      Size/MD5:   238436 a901d3b0431faa6bfd4d8b732fc6b8ed\n    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_i386.deb\n      Size/MD5:   605568 f7a02ba6c2e65c2e3644f81e2e5add33\n\n  lpia architecture (Low Power Intel Architecture):\n\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_lpia.deb\n      Size/MD5:  3213428 32f032e4c5ebc8383d334e2de5b1e0b5\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_lpia.deb\n      Size/MD5:   709556 606d9ee62127ecad6620ce6ee2a351c1\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_lpia.deb\n      Size/MD5:   237148 526eb9b27871cee224d480ce8483d015\n    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_lpia.deb\n      Size/MD5:   596394 35c4ef7f97a6934947760236b119d1f1\n\n  powerpc architecture (Apple Macintosh G3/G4/G5):\n\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_powerpc.deb\n      Size/MD5:  3168400 13560d02da9c481147177504476a3f21\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_powerpc.deb\n      Size/MD5:   807892 5a0232d184bb4d87811974d61a902e17\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_powerpc.deb\n      Size/MD5:   240514 9cfb4b3bace2f033b7c55ba571d0c4a1\n    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_powerpc.deb\n      Size/MD5:   645362 ccd118c24941759b0c2e758ae60b4ba5\n\n  sparc architecture (Sun SPARC/UltraSPARC):\n\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_sparc.deb\n      Size/MD5:  2834042 f884524281d9521e07b60c8bf9aa8074\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_sparc.deb\n      Size/MD5:   718096 906896f0101a88bd6cb78ffdb103fe0e\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_sparc.deb\n      Size/MD5:   235222 f679c8d076c15860a41c1e16b1d69ded\n    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_sparc.deb\n      Size/MD5:   576390 75811d5dc9ddd1eca108bc50ffe3e911\n\nUpdated packages for Ubuntu 8.04 LTS:\n\n  Source archives:\n\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3-0ubuntu0.8.04.5.diff.gz\n      Size/MD5:    38918 6fda80e067b0f84e323b3556b5f9dd18\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3-0ubuntu0.8.04.5.dsc\n      Size/MD5:     2001 e9365c71192c0e568d5dd9891708e436\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3.orig.tar.gz\n      Size/MD5:  5161407 9e96418400e073f982e83c235718c4e9\n\n  amd64 architecture (Athlon64, Opteron, EM64T Xeon):\n\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_amd64.deb\n      Size/MD5:    17910 7933180f37ce55969719730463fef4cb\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_amd64.deb\n      Size/MD5:  4511304 1a241985ee6673075b8610bbb2be2902\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_amd64.deb\n      Size/MD5:  1135226 fcc9b7555aac5a0ef0260aa639b7421a\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_amd64.deb\n      Size/MD5:   256738 992898a7cce94822e29a3e0d5d318e46\n    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_amd64.deb\n      Size/MD5:   813730 542b82a7837b4a43191fd5862a97699e\n\n  i386 architecture (x86 compatible Intel/AMD):\n\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_i386.deb\n      Size/MD5:    17894 3ea3554784b1242ce89f96bb631d0c4d\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_i386.deb\n      Size/MD5:  4294520 d7eb7d334bd821d887e24d76d8e2804f\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_i386.deb\n      Size/MD5:  1017710 7afd17b32bc5ce80babf2405488997e8\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_i386.deb\n      Size/MD5:   253724 f7f8ad3723f384a657907016b8476c35\n    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_i386.deb\n      Size/MD5:   741278 ed53c68732f059a90a35310b68c4be88\n\n  lpia architecture (Low Power Intel Architecture):\n\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_lpia.deb\n      Size/MD5:    17874 5e1a506010c923ba8a41129fef693344\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_lpia.deb\n      Size/MD5:  4322188 cd5765f42aaffa32e20b0ac0510d9b6c\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_lpia.deb\n      Size/MD5:   993934 313d088bd4a0a44fe05b762e33ef927d\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_lpia.deb\n      Size/MD5:   252500 dcaf82868eaa0e3162a6a49fb6f512be\n    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_lpia.deb\n      Size/MD5:   719648 8e422c9ee3dd5a062f547d36d6e2725c\n\n  powerpc architecture (Apple Macintosh G3/G4/G5):\n\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb\n      Size/MD5:    20352 144b270c8fc23407e1da27112151c952\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb\n      Size/MD5:  4440132 f89a7f34a199abd8e0d840bb011ca5bf\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb\n      Size/MD5:  1115852 d88c0295406e468f7ac1c087edb661dd\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb\n      Size/MD5:   255446 4eef63577fbaa5b611b0d9064c47ac6c\n    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb\n      Size/MD5:   777064 83ad19b301d2c1eceef6682cbad5a00d\n\n  sparc architecture (Sun SPARC/UltraSPARC):\n\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_sparc.deb\n      Size/MD5:    17976 c763ceebcc3bf6371477809a8589cebf\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_sparc.deb\n      Size/MD5:  4038136 bbb4ff75f73844f33727fada2ca730b4\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_sparc.deb\n      Size/MD5:   995598 2785d368bbb6665eee586ac3fc3e453e\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_sparc.deb\n      Size/MD5:   250450 a972e1131466d149480a574a57537c37\n    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_sparc.deb\n      Size/MD5:   702432 d16a1353ba80d7104820f97c4f712334\n\nUpdated packages for Ubuntu 8.10:\n\n  Source archives:\n\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3-0ubuntu5.8.10.1.diff.gz\n      Size/MD5:    38881 8be9f8eb187a657a743e115f58dbb58b\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3-0ubuntu5.8.10.1.dsc\n      Size/MD5:     2001 88381f73650cd5c2c369f387638ec40d\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3.orig.tar.gz\n      Size/MD5:  5161407 9e96418400e073f982e83c235718c4e9\n\n  amd64 architecture (Athlon64, Opteron, EM64T Xeon):\n\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_amd64.deb\n      Size/MD5:  4696732 5e2844909ee8896f71548c37f7ab711f\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_amd64.deb\n      Size/MD5:  1182642 6f73554c7970e2c0e3da7dcddf8d4d7f\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_amd64.deb\n      Size/MD5:   256520 808f5ff374081b1fd7f981699e267828\n    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_amd64.deb\n      Size/MD5:    17962 63411a0d50d9fa340f688c7a5cec33ae\n    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_amd64.deb\n      Size/MD5:   824382 367bbe2bf29f17c4fa5b085142e0bc8f\n\n  i386 architecture (x86 compatible Intel/AMD):\n\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_i386.deb\n      Size/MD5:  4450042 bb8560c5208a6f4d2a121a93d7ff7bac\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_i386.deb\n      Size/MD5:  1054914 1f7cbdc5e0776b8c2fc92241776bd96e\n    http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_i386.deb\n      Size/MD5:   253554 c1cc8fff73ef7b34dadc6fea411bc7db\n    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_i386.deb\n      Size/MD5:    17940 b3577f334ed9f5a95c6fdbdd4de83ef4\n    http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_i386.deb\n      Size/MD5:   752462 703f7bd356efc312f216e361209ef3a7\n\n  lpia architecture (Low Power Intel Architecture):\n\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_lpia.deb\n      Size/MD5:  4482980 c27f13a5f5aba10c93b2dda917c1ba31\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_lpia.deb\n      Size/MD5:  1029092 3b2805f79d61b595907187846da18a54\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_lpia.deb\n      Size/MD5:   252140 06b18884a6e275a5fc9a73abd1464875\n    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_lpia.deb\n      Size/MD5:    17914 28d1eeaac6ba2f9c17da9a9a6ea35fdd\n    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_lpia.deb\n      Size/MD5:   730786 e1497e0cbdf8d7c3ac4c6e80e86837bf\n\n  powerpc architecture (Apple Macintosh G3/G4/G5):\n\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb\n      Size/MD5:  4659468 ceb162226c93c950c71d2f0236b9d53e\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb\n      Size/MD5:  1137358 f61287d145339ece156686d86a971480\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb\n      Size/MD5:   255312 d7787174c0d6b25467b0f1262306be06\n    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb\n      Size/MD5:    20352 082622bc3e21161a1085695bd4f8f961\n    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb\n      Size/MD5:   775316 78ca70e113bd97d42f62e19e0ac8fdb1\n\n  sparc architecture (Sun SPARC/UltraSPARC):\n\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_sparc.deb\n      Size/MD5:  4168250 b9f3c0b8eab76476c9bb057b43d9df40\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_sparc.deb\n      Size/MD5:  1015340 5dd83c288df733b6a84247b48d945647\n    http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_sparc.deb\n      Size/MD5:   250138 f6a1dd454cc44a4684ab288e9eadde56\n    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_sparc.deb\n      Size/MD5:    18068 27f0453909db6eda6d8ffd3ef35454c9\n    http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_sparc.deb\n      Size/MD5:   703524 e87fca0b128626aebf5bce77473ee8e0\n\n\n",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2004-2761"
          },
          {
            "db": "CERT/CC",
            "id": "VU#836068"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-001001"
          },
          {
            "db": "BID",
            "id": "33065"
          },
          {
            "db": "VULMON",
            "id": "CVE-2004-2761"
          },
          {
            "db": "PACKETSTORM",
            "id": "138866"
          },
          {
            "db": "PACKETSTORM",
            "id": "139894"
          },
          {
            "db": "PACKETSTORM",
            "id": "146157"
          },
          {
            "db": "PACKETSTORM",
            "id": "75815"
          }
        ],
        "trust": 3.06
      },
      "exploit_availability": {
        "_id": null,
        "data": [
          {
            "reference": "https://vulmon.com/exploitdetails?qidtp=exploitdb\u0026qid=24807",
            "trust": 0.1,
            "type": "exploit"
          }
        ],
        "sources": [
          {
            "db": "VULMON",
            "id": "CVE-2004-2761"
          }
        ]
      },
      "external_ids": {
        "_id": null,
        "data": [
          {
            "db": "NVD",
            "id": "CVE-2004-2761",
            "trust": 3.2
          },
          {
            "db": "CERT/CC",
            "id": "VU#836068",
            "trust": 3.0
          },
          {
            "db": "BID",
            "id": "33065",
            "trust": 2.8
          },
          {
            "db": "ICS CERT",
            "id": "ICSMA-18-058-02",
            "trust": 1.9
          },
          {
            "db": "SREASON",
            "id": "4866",
            "trust": 1.7
          },
          {
            "db": "SECUNIA",
            "id": "34281",
            "trust": 1.7
          },
          {
            "db": "SECUNIA",
            "id": "33826",
            "trust": 1.7
          },
          {
            "db": "SECTRACK",
            "id": "1024697",
            "trust": 1.1
          },
          {
            "db": "SECUNIA",
            "id": "42181",
            "trust": 1.1
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-001001",
            "trust": 0.8
          },
          {
            "db": "BUGTRAQ",
            "id": "20081230 MD5 CONSIDERED HARMFUL TODAY: CREATING A ROGUE CA CERTIFICATE",
            "trust": 0.6
          },
          {
            "db": "CISCO",
            "id": "20090115 MD5 HASHES MAY ALLOW FOR CERTIFICATE SPOOFING",
            "trust": 0.6
          },
          {
            "db": "UBUNTU",
            "id": "USN-740-1",
            "trust": 0.6
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200901-025",
            "trust": 0.6
          },
          {
            "db": "EXPLOIT-DB",
            "id": "24807",
            "trust": 0.1
          },
          {
            "db": "VULMON",
            "id": "CVE-2004-2761",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "138866",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "139894",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "146157",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "75815",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#836068"
          },
          {
            "db": "VULMON",
            "id": "CVE-2004-2761"
          },
          {
            "db": "BID",
            "id": "33065"
          },
          {
            "db": "PACKETSTORM",
            "id": "138866"
          },
          {
            "db": "PACKETSTORM",
            "id": "139894"
          },
          {
            "db": "PACKETSTORM",
            "id": "146157"
          },
          {
            "db": "PACKETSTORM",
            "id": "75815"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200901-025"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-001001"
          },
          {
            "db": "NVD",
            "id": "CVE-2004-2761"
          }
        ]
      },
      "id": "VAR-200901-0466",
      "iot": {
        "_id": null,
        "data": true,
        "sources": [
          {
            "db": "VARIoT devices database",
            "id": null
          }
        ],
        "trust": 0.475
      },
      "last_update_date": "2026-03-09T21:53:48.687000Z",
      "patch": {
        "_id": null,
        "data": [
          {
            "title": "cisco-sr-20090115-md5",
            "trust": 0.8,
            "url": "http://www.cisco.com/warp/public/707/cisco-sr-20090115-md5.shtml"
          },
          {
            "title": "hitachi-sec-2017-102",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/soft1/global/security/info/vuls/hitachi-sec-2017-102/index.html"
          },
          {
            "title": "hitachi-sec-2017-119",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/soft1/global/security/info/vuls/hitachi-sec-2017-119/index.html"
          },
          {
            "title": "961509",
            "trust": 0.8,
            "url": "http://www.microsoft.com/technet/security/advisory/961509.mspx"
          },
          {
            "title": "MD5 Weaknesses Could Lead to Certificate Forgery",
            "trust": 0.8,
            "url": "http://blog.mozilla.com/security/2008/12/30/md5-weaknesses-could-lead-to-certificate-forgery/"
          },
          {
            "title": "NV09-002",
            "trust": 0.8,
            "url": "http://www.nec.co.jp/security-info/secinfo/nv09-002.html"
          },
          {
            "title": "MD5\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u306e\u8106\u5f31\u6027\u306b\u3064\u3044\u3066 ",
            "trust": 0.8,
            "url": "http://www.rtpro.yamaha.co.jp/RT/FAQ/Security/VU836068.html"
          },
          {
            "title": "This morning\u2019s MD5 attack - resolved",
            "trust": 0.8,
            "url": "https://blogs.verisign.com/ssl-blog/2008/12/on_md5_vulnerabilities_and_mit.php"
          },
          {
            "title": "hitachi-sec-2017-119",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/soft1/security/info/vuls/hitachi-sec-2017-119/index.html"
          },
          {
            "title": "hitachi-sec-2017-102",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/soft1/security/info/vuls/hitachi-sec-2017-102/index.html"
          },
          {
            "title": "961509",
            "trust": 0.8,
            "url": "http://www.microsoft.com/japan/technet/security/advisory/961509.mspx"
          },
          {
            "title": "MD5\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u3078\u306e\u885d\u7a81\u653b\u6483\u306b\u3088\u308bSSL\u30b5\u30fc\u30d0\u8a3c\u660e\u66f8\u306e\u507d\u9020\u306b\u95a2\u3059\u308b\u5831\u9053\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "https://www.verisign.co.jp/ssl/about/20090106.html"
          },
          {
            "title": "Ubuntu Security Notice: nss, firefox vulnerability",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=ubuntu_security_notice\u0026qid=USN-740-1"
          },
          {
            "title": "Oracle: Oracle Critical Patch Update Advisory - April 2017",
            "trust": 0.1,
            "url": "https://vulmon.com/vendoradvisory?qidtp=oracle_advisories\u0026qid=143b3fb255063c81571469eaa3cf0a87"
          }
        ],
        "sources": [
          {
            "db": "VULMON",
            "id": "CVE-2004-2761"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-001001"
          }
        ]
      },
      "problemtype_data": {
        "_id": null,
        "data": [
          {
            "problemtype": "CWE-310",
            "trust": 1.8
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-001001"
          },
          {
            "db": "NVD",
            "id": "CVE-2004-2761"
          }
        ]
      },
      "references": {
        "_id": null,
        "data": [
          {
            "trust": 2.8,
            "url": "http://www.win.tue.nl/hashclash/rogue-ca/"
          },
          {
            "trust": 2.8,
            "url": "http://www.microsoft.com/technet/security/advisory/961509.mspx"
          },
          {
            "trust": 2.8,
            "url": "http://www.phreedom.org/research/rogue-ca/"
          },
          {
            "trust": 2.5,
            "url": "http://www.securityfocus.com/bid/33065"
          },
          {
            "trust": 2.2,
            "url": "https://blogs.verisign.com/ssl-blog/2008/12/on_md5_vulnerabilities_and_mit.php"
          },
          {
            "trust": 2.2,
            "url": "http://www.kb.cert.org/vuls/id/836068"
          },
          {
            "trust": 2.0,
            "url": "http://blog.mozilla.com/security/2008/12/30/md5-weaknesses-could-lead-to-certificate-forgery/"
          },
          {
            "trust": 2.0,
            "url": "http://blogs.technet.com/swi/archive/2008/12/30/information-regarding-md5-collisions-problem.aspx"
          },
          {
            "trust": 2.0,
            "url": "http://www.cisco.com/en/us/products/products_security_response09186a0080a5d24a.html"
          },
          {
            "trust": 1.7,
            "url": "http://www.doxpara.com/research/md5/md5_someday.pdf"
          },
          {
            "trust": 1.7,
            "url": "http://www.win.tue.nl/hashclash/softintcodesign/"
          },
          {
            "trust": 1.7,
            "url": "http://securityreason.com/securityalert/4866"
          },
          {
            "trust": 1.7,
            "url": "http://secunia.com/advisories/33826"
          },
          {
            "trust": 1.7,
            "url": "http://www.ubuntu.com/usn/usn-740-1"
          },
          {
            "trust": 1.7,
            "url": "http://secunia.com/advisories/34281"
          },
          {
            "trust": 1.2,
            "url": "https://ics-cert.us-cert.gov/advisories/icsma-18-058-02"
          },
          {
            "trust": 1.1,
            "url": "https://www.redhat.com/archives/fedora-package-announce/2009-february/msg00096.html"
          },
          {
            "trust": 1.1,
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=648886"
          },
          {
            "trust": 1.1,
            "url": "http://securitytracker.com/id?1024697"
          },
          {
            "trust": 1.1,
            "url": "https://rhn.redhat.com/errata/rhsa-2010-0838.html"
          },
          {
            "trust": 1.1,
            "url": "https://rhn.redhat.com/errata/rhsa-2010-0837.html"
          },
          {
            "trust": 1.1,
            "url": "http://secunia.com/advisories/42181"
          },
          {
            "trust": 1.1,
            "url": "https://h20566.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c05289935"
          },
          {
            "trust": 1.1,
            "url": "https://h20566.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c05336888"
          },
          {
            "trust": 1.1,
            "url": "https://support.hpe.com/hpsc/doc/public/display?doclocale=en_us\u0026docid=emr_na-hpesbhf03814en_us"
          },
          {
            "trust": 1.1,
            "url": "http://www.securityfocus.com/archive/1/499685/100/0/threaded"
          },
          {
            "trust": 0.8,
            "url": "http://tools.ietf.org/html/rfc1321"
          },
          {
            "trust": 0.8,
            "url": "http://www.coresecurity.com/content/md5-harmful"
          },
          {
            "trust": 0.8,
            "url": "http://www.cs.cmu.edu/~perspectives/"
          },
          {
            "trust": 0.8,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2004-2761"
          },
          {
            "trust": 0.8,
            "url": "https://www.us-cert.gov/ics/advisories/icsma-18-058-02"
          },
          {
            "trust": 0.8,
            "url": "http://www.jpcert.or.jp/wr/2009/wr090101.html#5"
          },
          {
            "trust": 0.8,
            "url": "http://jvn.jp/cert/jvnvu836068/index.html"
          },
          {
            "trust": 0.8,
            "url": "http://web.nvd.nist.gov/view/vuln/detail?vulnid=cve-2004-2761"
          },
          {
            "trust": 0.6,
            "url": "http://www.securityfocus.com/archive/1/archive/1/499685/100/0/threaded"
          },
          {
            "trust": 0.4,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c05289935"
          },
          {
            "trust": 0.4,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c05336888"
          },
          {
            "trust": 0.4,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2004-2761"
          },
          {
            "trust": 0.3,
            "url": "http://www.mozilla.org/projects/security/pki/nss/"
          },
          {
            "trust": 0.3,
            "url": "http://tools.ietf.org/html/rfc3279"
          },
          {
            "trust": 0.3,
            "url": "http://www.rtpro.yamaha.co.jp/rt/faq/security/vu836068.html"
          },
          {
            "trust": 0.3,
            "url": "http://www.trustcenter.de/media/tc_response_to_md5_vulnerability_paper.pdf"
          },
          {
            "trust": 0.3,
            "url": "http://tools.cisco.com/security/center/viewalert.x?alertid=17341"
          },
          {
            "trust": 0.3,
            "url": "http://www.oracle.com/technetwork/security-advisory/cpuapr2017-3236618.html"
          },
          {
            "trust": 0.3,
            "url": "http://support.f5.com/kb/en-us/solutions/public/15000/500/sol15578.html?ref=rss"
          },
          {
            "trust": 0.3,
            "url": "http://www.entrust.net/knowledge-base/technote.cfm?tn=7690"
          },
          {
            "trust": 0.3,
            "url": "http://www.hpe.com/support/security_bulletin_archive"
          },
          {
            "trust": 0.3,
            "url": "https://www.hpe.com/info/report-security-vulnerability"
          },
          {
            "trust": 0.3,
            "url": "http://www.hpe.com/support/subscriber_choice"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c01345499"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2013-2566"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2808"
          },
          {
            "trust": 0.1,
            "url": "https://cwe.mitre.org/data/definitions/310.html"
          },
          {
            "trust": 0.1,
            "url": "https://usn.ubuntu.com/740-1/"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov"
          },
          {
            "trust": 0.1,
            "url": "https://www.exploit-db.com/exploits/24807/"
          },
          {
            "trust": 0.1,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-hpesbhf03814en_us"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3.orig.tar.gz"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr4_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/mozilla-firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_all.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr4_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3-0ubuntu0.8.04.5.dsc"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3-0ubuntu5.8.10.1.diff.gz"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss3_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.11.5.orig.tar.gz"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr4_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss3_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/mozilla-firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_all.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2.dsc"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr4_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.11.5-3ubuntu0.7.10.2.diff.gz"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss3_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2.diff.gz"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.11.5-3ubuntu0.7.10.2.dsc"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d-dbg_3.11.5-3ubuntu0.7.10.2_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k.orig.tar.gz"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu0.8.04.5_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu0.8.04.5_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.11.5-3ubuntu0.7.10.2_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dev_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d_3.12.0.3-0ubuntu5.8.10.1_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://www.win.tue.nl/hashclash/rogue-ca/."
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.11.5-3ubuntu0.7.10.2_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu0.8.04.5_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu5.8.10.1_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-1d-dbg_3.12.0.3-0ubuntu5.8.10.1_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_lpia.deb"
          },
          {
            "trust": 0.1,
            "url": "http://ports.ubuntu.com/pool/main/n/nss/libnss3-0d_3.12.0.3-0ubuntu0.8.04.5_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnspr-dev_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-0d_3.11.5-3ubuntu0.7.10.2_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-dev_3.12.0.3-0ubuntu5.8.10.1_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3-0ubuntu0.8.04.5.diff.gz"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/f/firefox/libnss3_1.firefox1.5.dfsg+1.5.0.15~prepatch080614k-0ubuntu2_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/n/nss/nss_3.12.0.3-0ubuntu5.8.10.1.dsc"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-0d_3.12.0.3-0ubuntu5.8.10.1_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.12.0.3-0ubuntu0.8.04.5_amd64.deb"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#836068"
          },
          {
            "db": "VULMON",
            "id": "CVE-2004-2761"
          },
          {
            "db": "BID",
            "id": "33065"
          },
          {
            "db": "PACKETSTORM",
            "id": "138866"
          },
          {
            "db": "PACKETSTORM",
            "id": "139894"
          },
          {
            "db": "PACKETSTORM",
            "id": "146157"
          },
          {
            "db": "PACKETSTORM",
            "id": "75815"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200901-025"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-001001"
          },
          {
            "db": "NVD",
            "id": "CVE-2004-2761"
          }
        ]
      },
      "sources": {
        "_id": null,
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#836068",
            "ident": null
          },
          {
            "db": "VULMON",
            "id": "CVE-2004-2761",
            "ident": null
          },
          {
            "db": "BID",
            "id": "33065",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "138866",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "139894",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "146157",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "75815",
            "ident": null
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200901-025",
            "ident": null
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2009-001001",
            "ident": null
          },
          {
            "db": "NVD",
            "id": "CVE-2004-2761",
            "ident": null
          }
        ]
      },
      "sources_release_date": {
        "_id": null,
        "data": [
          {
            "date": "2008-12-31T00:00:00",
            "db": "CERT/CC",
            "id": "VU#836068",
            "ident": null
          },
          {
            "date": "2009-01-05T00:00:00",
            "db": "VULMON",
            "id": "CVE-2004-2761",
            "ident": null
          },
          {
            "date": "2008-12-30T00:00:00",
            "db": "BID",
            "id": "33065",
            "ident": null
          },
          {
            "date": "2016-09-27T13:59:31",
            "db": "PACKETSTORM",
            "id": "138866",
            "ident": null
          },
          {
            "date": "2016-11-24T11:11:00",
            "db": "PACKETSTORM",
            "id": "139894",
            "ident": null
          },
          {
            "date": "2018-01-29T15:59:00",
            "db": "PACKETSTORM",
            "id": "146157",
            "ident": null
          },
          {
            "date": "2009-03-18T01:54:16",
            "db": "PACKETSTORM",
            "id": "75815",
            "ident": null
          },
          {
            "date": "2008-12-30T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-200901-025",
            "ident": null
          },
          {
            "date": "2009-02-10T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2009-001001",
            "ident": null
          },
          {
            "date": "2009-01-05T20:30:02.140000",
            "db": "NVD",
            "id": "CVE-2004-2761",
            "ident": null
          }
        ]
      },
      "sources_update_date": {
        "_id": null,
        "data": [
          {
            "date": "2009-01-21T00:00:00",
            "db": "CERT/CC",
            "id": "VU#836068",
            "ident": null
          },
          {
            "date": "2018-10-19T00:00:00",
            "db": "VULMON",
            "id": "CVE-2004-2761",
            "ident": null
          },
          {
            "date": "2017-05-02T03:05:00",
            "db": "BID",
            "id": "33065",
            "ident": null
          },
          {
            "date": "2009-03-20T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-200901-025",
            "ident": null
          },
          {
            "date": "2019-07-10T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2009-001001",
            "ident": null
          },
          {
            "date": "2025-04-09T00:30:58.490000",
            "db": "NVD",
            "id": "CVE-2004-2761",
            "ident": null
          }
        ]
      },
      "threat_type": {
        "_id": null,
        "data": "remote",
        "sources": [
          {
            "db": "PACKETSTORM",
            "id": "146157"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200901-025"
          }
        ],
        "trust": 0.7
      },
      "title": {
        "_id": null,
        "data": "MD5 vulnerable to collision attacks",
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#836068"
          }
        ],
        "trust": 0.8
      },
      "type": {
        "_id": null,
        "data": "encryption problem",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-200901-025"
          }
        ],
        "trust": 0.6
      }
    }

    VAR-200704-0740

    Vulnerability from variot - Updated: 2026-03-09 20:39

    The IPv6 protocol allows remote attackers to cause a denial of service via crafted IPv6 type 0 route headers (IPV6_RTHDR_TYPE_0) that create network amplification between two routers. This vulnerability may allow an attacker to cause a denial-of-service condition. IPv6 Type 0 Routing header contains service disruption (DoS) There is a problem. IPv6 specification (RFC2460) So as an extension header Type 0 Specifies the routing header. this is IPv4 In loose source routing Is similar to IPv6 Nodes are required to process packets with this extension header. But using this feature DoS The possibility of attack is pointed out.Service operation interruption by a third party (DoS) An attack may be carried out. For example, it can be assumed that this attack consumes communication bandwidth. IPv6 protocol implementations are prone to a denial-of-service vulnerability due to a design error. This issue is related to the issue discussed in BID 22210 (Cisco IOS IPv6 Source Routing Remote Memory Corruption Vulnerability). -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1

    ============================================================================= FreeBSD-SA-07:03.ipv6 Security Advisory The FreeBSD Project

    Topic: IPv6 Routing Header 0 is dangerous

    Category: core Module: ipv6 Announced: 2007-04-26 Credits: Philippe Biondi, Arnaud Ebalard, Jun-ichiro itojun Hagino Affects: All FreeBSD releases. Corrected: 2007-04-24 11:42:42 UTC (RELENG_6, 6.2-STABLE) 2007-04-26 23:42:23 UTC (RELENG_6_2, 6.2-RELEASE-p4) 2007-04-26 23:41:59 UTC (RELENG_6_1, 6.1-RELEASE-p16) 2007-04-24 11:44:23 UTC (RELENG_5, 5.5-STABLE) 2007-04-26 23:41:27 UTC (RELENG_5_5, 5.5-RELEASE-p12) CVE Name: CVE-2007-2242

    I.

    II.

    III.

    An attacker can use vulnerable hosts to "concentrate" a denial of service attack against a victim host or network; that is, a set of packets sent over a period of 30 seconds or more could be constructed such that they all arrive at the victim within a period of 1 second or less.

    Other attacks may also be possible.

    IV. Workaround

    No workaround is available.

    V.

    Perform one of the following:

    1) Upgrade your vulnerable system to 5-STABLE, or 6-STABLE, or to the RELENG_6_2, RELENG_6_1, or RELENG_5_5 security branch dated after the correction date.

    2) To patch your present system:

    The following patches have been verified to apply to FreeBSD 5.5, 6.1, and 6.2 systems.

    a) Download the relevant patch from the location below, and verify the detached PGP signature using your PGP utility.

    fetch http://security.FreeBSD.org/patches/SA-07:03/ipv6.patch

    fetch http://security.FreeBSD.org/patches/SA-07:03/ipv6.patch.asc

    b) Apply the patch.

    cd /usr/src

    patch < /path/to/patch

    c) Recompile your kernel as described in and reboot the system.

    VI. Correction details

    The following list contains the revision numbers of each file that was corrected in FreeBSD.

    Branch Revision Path


    RELENG_5 src/sys/netinet6/in6.h 1.35.2.5 src/sys/netinet6/in6_proto.c 1.29.2.5 src/sys/netinet6/route6.c 1.10.4.2 RELENG_5_5 src/UPDATING 1.342.2.35.2.12 src/sys/conf/newvers.sh 1.62.2.21.2.14 src/sys/netinet6/in6.h 1.35.2.3.2.1 src/sys/netinet6/in6_proto.c 1.29.2.4.2.1 src/sys/netinet6/route6.c 1.10.4.1.4.1 RELENG_6 src/sys/netinet6/in6.h 1.36.2.8 src/sys/netinet6/in6_proto.c 1.32.2.6 src/sys/netinet6/route6.c 1.11.2.2 RELENG_6_2 src/UPDATING 1.416.2.29.2.7 src/sys/conf/newvers.sh 1.69.2.13.2.7 src/sys/netinet6/in6.h 1.36.2.7.2.1 src/sys/netinet6/in6_proto.c 1.32.2.5.2.1 src/sys/netinet6/route6.c 1.11.2.1.4.1 RELENG_6_1 src/UPDATING 1.416.2.22.2.18 src/sys/conf/newvers.sh 1.69.2.11.2.18 src/sys/netinet6/in6.h 1.36.2.6.2.1 src/sys/netinet6/in6_proto.c 1.32.2.4.2.1 src/sys/netinet6/route6.c 1.11.2.1.2.1


    VII. References

    http://www.secdev.org/conf/IPv6_RH_security-csw07.pdf

    http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2242

    The latest revision of this advisory is available at http://security.FreeBSD.org/advisories/FreeBSD-SA-07:03.ipv6.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD)

    iD4DBQFGMTlvFdaIBMps37IRApu3AJYsifWIDLcyxNcMdnkvw4nBqXFoAJ43+IzB M5sIdCmLQABByFlbMB2BjQ== =OrNf -----END PGP SIGNATURE----- . =========================================================== Ubuntu Security Notice USN-486-1 July 17, 2007 linux-source-2.6.17 vulnerabilities CVE-2006-7203, CVE-2007-0005, CVE-2007-1000, CVE-2007-1353, CVE-2007-1861, CVE-2007-2242, CVE-2007-2453, CVE-2007-2525, CVE-2007-2875, CVE-2007-2876, CVE-2007-2878 ===========================================================

    A security issue affects the following Ubuntu releases:

    Ubuntu 6.10

    This advisory also applies to the corresponding versions of Kubuntu, Edubuntu, and Xubuntu.

    The problem can be corrected by upgrading your system to the following package versions:

    Ubuntu 6.10: linux-image-2.6.17-12-386 2.6.17.1-12.39 linux-image-2.6.17-12-generic 2.6.17.1-12.39 linux-image-2.6.17-12-hppa32 2.6.17.1-12.39 linux-image-2.6.17-12-hppa64 2.6.17.1-12.39 linux-image-2.6.17-12-itanium 2.6.17.1-12.39 linux-image-2.6.17-12-mckinley 2.6.17.1-12.39 linux-image-2.6.17-12-powerpc 2.6.17.1-12.39 linux-image-2.6.17-12-powerpc-smp 2.6.17.1-12.39 linux-image-2.6.17-12-powerpc64-smp 2.6.17.1-12.39 linux-image-2.6.17-12-server 2.6.17.1-12.39 linux-image-2.6.17-12-server-bigiron 2.6.17.1-12.39 linux-image-2.6.17-12-sparc64 2.6.17.1-12.39 linux-image-2.6.17-12-sparc64-smp 2.6.17.1-12.39

    After a standard system upgrade you need to reboot your computer to effect the necessary changes.

    ATTENTION: Due to an unavoidable ABI change the Ubuntu 6.10 kernel updates have been given a new version number, which requires you to recompile and reinstall all third party kernel modules you might have installed. If you use linux-restricted-modules, you have to update that package as well to get modules which work with the new kernel version. Unless you manually uninstalled the standard kernel metapackages (linux-386, linux-powerpc, linux-amd64-generic, etc), a standard system upgrade will automatically perform this as well.

    Details follow:

    The compat_sys_mount function allowed local users to cause a denial of service when mounting a smbfs filesystem in compatibility mode. (CVE-2006-7203)

    The Omnikey CardMan 4040 driver (cm4040_cs) did not limit the size of buffers passed to read() and write(). A local attacker could exploit this to execute arbitrary code with kernel privileges. (CVE-2007-0005)

    Due to a variable handling flaw in the ipv6_getsockopt_sticky() function a local attacker could exploit the getsockopt() calls to read arbitrary kernel memory. This could disclose sensitive data. (CVE-2007-1000)

    Ilja van Sprundel discovered that Bluetooth setsockopt calls could leak kernel memory contents via an uninitialized stack buffer. A local attacker could exploit this flaw to view sensitive kernel information. (CVE-2007-1353)

    A flaw was discovered in the handling of netlink messages. Local attackers could cause infinite recursion leading to a denial of service. (CVE-2007-2242)

    The random number generator was hashing a subset of the available entropy, leading to slightly less random numbers. Additionally, systems without an entropy source would be seeded with the same inputs at boot time, leading to a repeatable series of random numbers. (CVE-2007-2453)

    A flaw was discovered in the PPP over Ethernet implementation. Local attackers could manipulate ioctls and cause kernel memory consumption leading to a denial of service. (CVE-2007-2525)

    An integer underflow was discovered in the cpuset filesystem. If mounted, local attackers could obtain kernel memory using large file offsets while reading the tasks file. This could disclose sensitive data. (CVE-2007-2875)

    Vilmos Nebehaj discovered that the SCTP netfilter code did not correctly validate certain states. A remote attacker could send a specially crafted packet causing a denial of service. (CVE-2007-2876)

    Luca Tettamanti discovered a flaw in the VFAT compat ioctls on 64-bit systems. A local attacker could corrupt a kernel_dirent struct and cause a denial of service. (CVE-2007-2878)

    Updated packages for Ubuntu 6.10:

    Source archives:

    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-source-2.6.17_2.6.17.1-12.39.diff.gz
      Size/MD5:  2086047 d07f76ec226f706d89a66e0ba3d34d44
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-source-2.6.17_2.6.17.1-12.39.dsc
      Size/MD5:     2321 af3e3fecf1d80a7aca131bde9a871966
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-source-2.6.17_2.6.17.1.orig.tar.gz
      Size/MD5: 59339565 2e5451201e38e865cbc7b0717fa124a1
    

    Architecture independent packages:

    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-doc-2.6.17_2.6.17.1-12.39_all.deb
      Size/MD5:  4506664 f3307a7a1115f8a279a7ad52d09b251f
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-kernel-devel_2.6.17.1-12.39_all.deb
      Size/MD5:  1097522 5d80796fb704894d1e083d7a4ea4dfa8
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-source-2.6.17_2.6.17.1-12.39_all.deb
      Size/MD5: 46079376 a53f61537b12be4c1886f2578daad04d
    

    amd64 architecture (Athlon64, Opteron, EM64T Xeon)

    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/acpi-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    28612 0b1c6e3ab9284311bfb96e1dcb812fba
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    50502 074faf23893f63cef2aaae18f0bf1bc8
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:     2450 56e11b173c9c8dad3a233777d1c412f6
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    40800 c3f23e9745643e33945c50afcd3d1a51
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:   113554 98ace1d3b7e9409e5273daaa7b28495c
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    44000 323e5cc16b63fd99d133539ddfa2e573
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    54026 2c1a7a6a9036ef0d9d16b82f78e56daa
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:   189518 10a6605cfc28a6aefd355f1ef716d599
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    40036 41ffb86ffa5d8e12c82c857a1d960b77
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:   167756 fc36e453103ee9429469260e56697ac5
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    60450 9672dfd9f1976cca1db9d9057027c025
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:   154560 94fa3f8b54017625b2856e0399450b36
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:   314682 64afdc80508ad9123b636165fe5ada0e
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:   105986 b9f5813e5daec7a7369e86273902a33e
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:  1904480 b352f8bcf7f21620ef27b7ac745bd089
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-generic_2.6.17.1-12.39_amd64.deb
      Size/MD5:   907094 ffde52fea07954ed03bbc4b151a634ef
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-server_2.6.17.1-12.39_amd64.deb
      Size/MD5:   913466 19b6851ea5c16833ac07e737d1637591
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12_2.6.17.1-12.39_amd64.deb
      Size/MD5:  7429356 31cf4ff7a0b942b456abb41effb01e83
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-generic_2.6.17.1-12.39_amd64.deb
      Size/MD5: 23872310 671651c6b5237c4b4f9ce0fd87322f81
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-server_2.6.17.1-12.39_amd64.deb
      Size/MD5: 24446348 54c63b9888616e3dc5181235faec4f7b
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-generic_2.6.17.1-12.39_amd64.deb
      Size/MD5:  2339902 6456d0226e101c5ca46568c0ac07dbc4
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-server_2.6.17.1-12.39_amd64.deb
      Size/MD5:  2338992 4c5a331da5de8f7bd6e901f40d3065cc
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-libc-dev_2.6.17.1-12.39_amd64.deb
      Size/MD5:  1771236 c3dda7fd5856dedfadb6aeb86b1ee26b
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    16792 f4e8db0d007fbf12243bfb4f73e11f54
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:   279160 31ace8b9fd8a5783c00432e80ba83e9b
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:   256924 6c0102de5f392c6255b42d13f36eae6c
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:  1048458 e85815750204baa4e5121565a05b67e6
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:  2103870 3956e33e4d012431810b6bd043175b06
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:   164430 02411ba7631f36224cc35f8e1467bcd5
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    10506 7e32828a1b360eefa21a2900a1ec07f8
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    93362 c0689220349c25b4d18561451af090db
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ntfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    52572 91e1eaf7bc0a1a95deb1e20aa31ee356
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/parport-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    39814 be7f95804371cf80449ab00ab2b09ef7
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    79812 8a5c2917c8e41d88fe4988be3fdf350f
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:     6336 44fad8c6ef38c0f4054a89482c23b8b1
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/plip-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:     9374 e0be83662c3f41cd923cf04523dec121
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    62718 d582dc41e8dc6f9b4264457c40211e8d
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:   138620 e8b5351aed98cdf9973ad93d132b7905
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:   115700 450d8ca2ed5957a321d6c009f3e24847
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    90612 1dc5df5c43ec890f05354ed688cdeb2e
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:  1286170 5615ec4ce076886b2a0b801c97742102
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    80594 1e611e34d769a2a9311e45b3854f4640
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    13480 4d84bc980757d03a15a41394b1f9a3f1
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    76264 1de9fdeda144490e5950d96c8d6288a4
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    36064 0e24439c0e8bc55dd9535faab3ec3b24
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:   151824 4ef6ee14338003c6bb10427c78c31214
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:    53548 374272c14cf4d906d005a3e607970e58
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb
      Size/MD5:   323418 51ef4685d9324c266635c8a11ebb59ea
    

    i386 architecture (x86 compatible Intel/AMD)

    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/acpi-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    21210 7da843c5002c8ea327ccac6e532e8447
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/acpi-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    23806 1a35e88cc19994aacb7a6b717c639c4f
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    43876 0f8440080102c2a8a9f5c0f79c6bcdc4
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    44474 2572438a66d363fcd09cbfa20bb87a6d
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   104794 3edc3cc7b75daa93b9fa2a1dd0832b4b
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    49408 902b83472a56965fd23558b65848286a
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:     2362 40d930bb1dd7fcdc88531537ac867601
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:     2388 35cbbb51e8258c121b3976abaf028ed3
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    35308 396422cb15b83177dcc6940df3503a6e
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    36728 2382993640cdc93dcecb8aa07cb9bb83
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    98292 fc5ac72df3f19c0fac45c647e64e6759
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   103506 da1c50087cc38d9e618e0abc50c177c4
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    38470 9cb694eacd4f35d8428806874930d804
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    39222 8f4f537c7bdf54734b573486d3793928
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    44262 f2558cf0898e04a3fea19c0e89c4ce85
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    44668 62ba6d29e30a08e397bc711c3714c81a
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   172752 24357036194451f6e58fa166d5971eeb
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   175190 88d8a49796dc3a7c55614825470c64ad
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    33750 6700b5682e3fe81736b8304b1c71189f
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    34712 e7634d20ac3160d0571c2488e9ecd96f
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   140556 2a6634cb2d87c0cce91f516441361147
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   143830 4cb625ed09c696bbbd7e4c8ab3e1a0de
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    51758 fc9f6eaf17a82cb10fef0e946e5e8c69
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    53182 68791aae59f996a1b63d370455564243
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   131598 c83d5b2c8672d64225664c0dfa59bf05
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   139174 7e4ca011696d4606795423eaef77a801
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   288316 5ad389052046deb622f8a4ecc06acc1e
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   290684 7a44cec77a36726791bd95cc9c3d61da
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   103540 84f9dd4e0da64b60d505ff32213de564
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   106734 30e33868fef929c1ae9ada34a904612a
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:  1737886 bb16ec7525631c14034ab29a062ef924
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:  1803410 fa07a7b1af1f688576600e39a77d118b
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-386_2.6.17.1-12.39_i386.deb
      Size/MD5:   912538 58e42b87cdb686e3b1a001a5c9d00266
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-generic_2.6.17.1-12.39_i386.deb
      Size/MD5:   917330 2a79321df3ffa0421730b1d13fdcb2e0
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-server-bigiron_2.6.17.1-12.39_i386.deb
      Size/MD5:   921050 cd0b834735573718dc588e33771fc69e
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-server_2.6.17.1-12.39_i386.deb
      Size/MD5:   917220 00bf54643d92b3126916e1389b62b9a8
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12_2.6.17.1-12.39_i386.deb
      Size/MD5:  7424710 152c4c37eeea537c091d3fbaa6ff1a19
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-386_2.6.17.1-12.39_i386.deb
      Size/MD5: 22850908 896bff490260d2a0a2d1c63587573776
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-generic_2.6.17.1-12.39_i386.deb
      Size/MD5: 22987088 7532ee46289f43572de6af13d76c8122
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-server-bigiron_2.6.17.1-12.39_i386.deb
      Size/MD5: 23794716 399fc0c6f4d45108ad848dee3aeb8526
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-server_2.6.17.1-12.39_i386.deb
      Size/MD5: 23294984 54c7e00442278882a2b5a27a9fc8a4e1
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-386_2.6.17.1-12.39_i386.deb
      Size/MD5:  1961664 54e96b54c3d01492e0defd53212da69c
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-generic_2.6.17.1-12.39_i386.deb
      Size/MD5:  2029428 dc8fd23f7eacf60b79458d980c0be8ce
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-server-bigiron_2.6.17.1-12.39_i386.deb
      Size/MD5:  2067220 8d62edb94a89bb94b9c3ae0c678afdfe
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-server_2.6.17.1-12.39_i386.deb
      Size/MD5:  2029160 deca25a0d751c2907ec756efed4e818f
    http://security.ubuntu.com/ubuntu/pool/universe/l/linux-source-2.6.17/linux-image-kdump_2.6.17.1-12.39_i386.deb
      Size/MD5: 21530894 3b57d3f94af90d5f1c1a3cc26910922b
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-libc-dev_2.6.17.1-12.39_i386.deb
      Size/MD5:  1771222 71c763e96fa18da947dc6eee6273f996
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    15370 10cfc18907f69359d1bdbf2f78d26d08
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    15736 35362bfbf692db23fa6ce4701fec17f0
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   253308 26b726d039e835abbd7b1b7f2505b15b
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   263850 5dab11c3c728f078b7af1a07db1bee55
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   220370 f17526b4a1d385552171a60962087c12
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   227608 d7e47e9512916d938c43e591b43b0ace
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:  1048352 6c6c9c78e73ec9f7971fe63cf49b8c16
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:  1048472 d07c2b1c54c9edac2e5a975832e1276b
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:  2092200 94b08a57d9befd744d4a7dd984c46832
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:  2142860 1823a89cdaa80f133c3042ef6027906d
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   156874 8252c3c9f39252cee290205f86f3eac5
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   152152 3445e3338b9c17bcb43bb4a910f56948
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:     9180 b266fb5d5b4f747c79c34543d2edcbde
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:     9658 e855025e195c2f8f173fae055a249a3f
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    79224 b9faa2fe32fb6615b36cb5d771d195fb
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    81764 22a1775183f30e2af51c6422d7b0ffd7
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ntfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    55084 f8b386e3cf4128da93fdc168172b931d
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ntfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    56734 4642732b2d53ec2974622eab1be5b036
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/parport-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    34484 ae3b8321a6c2e72ce1d73aaeb51a290b
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/parport-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    35412 5a130ce6dd2a832191ecb3c06a936fda
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    85866 9a4364e45eb252c42c8467b5aac3238f
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    87432 b52be9db245f990905b0d9ebc6dd57c7
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:     6084 dcf193961a372c692a2eae91b3f632f9
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:     6096 99a48360f55afe690f9473e34b6f1799
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/plip-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:     8608 9ec3749db2fb4fe85b772cb565ad04ee
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/plip-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:     8902 5cf288f11f076cf4493acb3462185a19
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    52684 b9d4b121f3ae3f4e9a59e8ef6db2cdb6
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    55112 72dba23de6f18debf662694afd1c86ca
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   129982 3cf698040f21e94ef38da5245d398564
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   132968 6da10555d56c7a4e80b59b90af9829ee
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    99866 7f593b5372383a266557d38d6ef879d8
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   101174 3b572152c1463d1515c31a73f990d2a3
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    79568 d5b9488f8e66089a93368f970d7c9aea
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    80934 ba31c0d5c7ee98e076e9e3044dd8dac3
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:  1394930 8f0491b599a89d26ae8fdda93cf47535
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:  1398114 9f7edf4e56a5a5363458792fbe1832e2
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    69148 7be68924e4c4e55ffc329ba1b30e7482
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    71082 3e9618027770b0bcc5ad955e3809081c
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    11422 450542ce7fbcd5144c8ee376fc9d38ec
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    11980 f2779c8454730ccb72358ccca660e0d6
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    62478 51c02138465bcc89c68c9701b275c5dd
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    63808 eeaf8f81dfe946df62111a7ea8cbdc9e
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    36008 ef4b454375feece71b44259e2a20d752
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    36522 194f8344fe8660a789069cfbb99b4369
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   127288 4eb7f58f56d296423a57d6f7a562bf96
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   131320 cca3b2c3fcb5bc7f991af37e1a7f7a1d
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    46806 9f859879ca4e693a42f4da083661ba0c
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:    47566 6fc3e9a1e7766bbca3bc5489258d56e4
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   311902 3f6da4553365c0d510f4556510396b72
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb
      Size/MD5:   318658 d5c418b0d20538a0cd7aafb8ec1aa0b2
    

    powerpc architecture (Apple Macintosh G3/G4/G5)

    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/affs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    23240 66f5bf514de994d84915d882d5a611f8
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/affs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    26082 6be2f4d3f90adba4e6d98973677b2190
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    48586 53fd8c1845bfdcbb7e5e29b107a276c0
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    52034 603d87b3bbd90eba2f634ab2a9618972
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:     2320 e219fa60c226159fc90d6df2804347f4
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:     2514 e1a6b95c138f84b6a50230c459e371eb
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    39142 8a31b03d64d142dc174f29ddfd6469e8
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    43164 c6812e8fc74cc275abbf1ad8923cd95f
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   111464 7687c500326dd4c20331762277160582
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   122272 b554f0b20dcd0ebfce5ca985dd15a52e
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    40406 f65f76d5ff504a1e7126489858150a81
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    46878 9c14a66ff520fb173f2ec3541627f65b
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    28064 8c8f4414d68106d96c0cb147375beac4
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    29046 7528aa197e90533bc51c5a2faac3188d
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   209724 a8697532cb81b2eb1601bcb57f398109
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   225682 0d1c7a72f611eec4e336faac7dd9893d
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    44588 8ee2bf4db312823e9e19fc0701170839
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    40180 af520f3f82ae6373ecf050f6a0515bc6
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fs-common-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:     1960 430d783ddeaa411aa03723cb931f03a0
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fs-common-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:     2232 a4ada90e401800c697cc60b0e396e932
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/hfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    79296 02e167b7c3776269d66103ca8e2d62d6
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/hfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    86612 82fb17eba860416a510aa5d7b050c784
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   110262 c7dc1577ba7760981d7db9598a40137d
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   127800 53fbdb953cb85dede0a7e264330927cc
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    55672 be221f80a184537ce3a0f2fa02b6824a
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    61924 0ea661a0734d702381f0903e4296c237
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   141124 47ad113d4a43d19a08b81576ad604089
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   158556 5202300b269311ce4714754eff59efad
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   314556 391adbaa26d02a6890c6b28aef0020fd
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   289916 4f5665cc6d901f0d2d7fd35f3db4e615
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   113204 86bd467218a4316dde6d8e2960f4ca9d
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   116436 2b0ea85fd8ec23b7d8a7b626e7347d27
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:  2052172 da6d033827867bd628c714edff14a8b9
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:  2771818 3c384239bea32e48f696d7d30f847746
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-powerpc-smp_2.6.17.1-12.39_powerpc.deb
      Size/MD5:   915864 d03bcf64df6e31149bd4b019ed60deb2
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-powerpc64-smp_2.6.17.1-12.39_powerpc.deb
      Size/MD5:   920336 2162b15d8aea5ee373c22c874a22526b
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-powerpc_2.6.17.1-12.39_powerpc.deb
      Size/MD5:   917858 516bcad3769297d3eef7f6d607bf35a5
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12_2.6.17.1-12.39_powerpc.deb
      Size/MD5:  7445094 549c0326666219ba0086efade9610992
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-powerpc-smp_2.6.17.1-12.39_powerpc.deb
      Size/MD5: 22719040 66394a300073c7ba74ef5c80d8bb65d0
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-powerpc64-smp_2.6.17.1-12.39_powerpc.deb
      Size/MD5: 24606070 ec3fa905f30188ea9e833087c913f7af
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-powerpc_2.6.17.1-12.39_powerpc.deb
      Size/MD5: 22427416 80377ed086d753ab3c77f7a402fea432
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-powerpc-smp_2.6.17.1-12.39_powerpc.deb
      Size/MD5:  2042736 accb89985e59b51a14a26a2bbf0c2beb
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-powerpc64-smp_2.6.17.1-12.39_powerpc.deb
      Size/MD5:  2589636 3113e56b1500407f0395c4997cbb2fc0
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-powerpc_2.6.17.1-12.39_powerpc.deb
      Size/MD5:  1969034 689cc515c3fe9b9dd65c6340fb7122ea
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-libc-dev_2.6.17.1-12.39_powerpc.deb
      Size/MD5:  1729872 c6ee6d64e4fcdc422c24a20f756140a5
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    17430 091a6b837b4f03a4e01d085d382aa5b0
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    17360 d81498196e5cc7ec40c6fcae5e0f8b57
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   258062 7cdc8ec029091506a1b39475c252e4dc
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   297904 bbb079ce725c0f5b5db736c2e034ac9a
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   239038 6144f028649a23faf13a4b4611c811e9
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   266536 19c8662f8f7ee669e3f618cbc68b4fd5
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:  1048448 2d219f4cc488a3a5de3534fcc003b4c3
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:  1048588 65293d6fcac990bda20e84635efa96aa
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:  2098394 4fecae0ee0d1ad474f2e9b440bb50c76
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:  2331766 fe68e08970accf65a0d5106e639f87ea
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   233858 fbd8ae40c9e092e8f6ef3ef89b5fa034
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   214704 d1c180af3cee5d80a0c6e045ab7cca66
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    12696 46e06747d49b64cce513633b79b00111
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    13316 61b3b6a0c84695365661f6ea8697d7f0
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    83240 0dc567f9c97d271aebe807ec017454a4
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    97162 85d44740ed633723dac4810b60a4941a
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    71160 cc8f7ddf940a1dc28540b951d600494a
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    84188 7c3bcdb3c9f430a83fe217c3f608e987
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:     6346 501b4f81087de783cb047beccd821e16
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:     6890 3fc743c702743c64626afb149611772e
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    57002 13f8831879808c97eff7bd30fac4ffd9
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    69202 ab86b925064cd257a09f4c0b18ecfcc5
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   128618 15deac4a700effc177eb788d2ab7a483
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   156242 50b0643e2ed32e9155272f20acd92379
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   109764 5e9925bddb96efdb84a8c719c4815495
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   133040 aecf93580b62a1b25e346595c0a232e0
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    86612 20f2a685e18d0ad56f8d34d0343d921e
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    94826 01743e049cfef3843e781189aa3d1497
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:  1511478 4660787ea1a93756c0c0dd869c221023
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:  1521588 d70e9fa47808f171ac95c169c6e29177
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   101306 c55cc8f4ff26c9e82f2f3ebf3b81388c
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   115560 37bdd2239d7c633267fe0441ed93f988
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    12206 36f00173ddd7427b7540f81a56503c1d
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    14294 c4c8a72bc8944313aac2200cc04e97ae
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    84678 1dd8aa1c4555a8459dae275aaac03aa9
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    87956 19bca79086e039ba65e5a72d8d359f75
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    37278 c2bd19dca9c56862aa93460ccb8751ae
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    40252 1483517a7607b74fa6fcbcc22ab5fdd6
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   139996 26c86dc67c3a654d8f1ec87ffa2fca28
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   161492 ebe28ec47f8f488e2235d7913a02d046
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    49996 ec1ed33de95bdb1c37aa9a9bd34bd69f
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:    54876 7e9284172eac7124fa71724d66d1b636
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   308218 7f86cf616bb7ab1db75697f678ea6acd
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb
      Size/MD5:   330232 403f447d858dbe8c55c33563b7cf1eb5
    

    sparc architecture (Sun SPARC/UltraSPARC)

    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:    50734 bb2efbe1b281982ecde5580ab6fe3b50
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:     2388 5b3124294cced1f9c01bef0f54b3e6be
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:    40670 d5285a397b2cfbfa99b5c31547a1630d
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:   112228 228400863e74dde11225e875b61afc14
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:    41754 fc6f0b3e063713229519155b8084a67d
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:   105100 b9ea17239e0badbbebcccd6fbc32e802
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:     6860 3fb7358ac5a7381d52295f06bc623ab7
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:   147570 fa000eaaca4c2d10302b5a0d2bc69cb4
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:  1840714 1842940403b8e2e931a44eb01359bfe6
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-sparc64-smp_2.6.17.1-12.39_sparc.deb
      Size/MD5:   812940 f9a5e0636476d16cec2229e413043766
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-sparc64_2.6.17.1-12.39_sparc.deb
      Size/MD5:   808176 2b5aebefa48c28a7c5d4209aab7033cb
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12_2.6.17.1-12.39_sparc.deb
      Size/MD5:  7424164 c74ba68d7311108b74006d980dd10dde
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-sparc64-smp_2.6.17.1-12.39_sparc.deb
      Size/MD5: 15626704 1e4b8d0931b65f611d65703b0ec0f36e
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-sparc64_2.6.17.1-12.39_sparc.deb
      Size/MD5: 15290014 3a50dbd38c7755fe3ff318b060cc1220
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-sparc64-smp_2.6.17.1-12.39_sparc.deb
      Size/MD5:  2172050 ba0f7981b554898adfc969fb69ccf64b
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-sparc64_2.6.17.1-12.39_sparc.deb
      Size/MD5:  2086206 09f393da6d5146f7dce916f54f3d7691
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-libc-dev_2.6.17.1-12.39_sparc.deb
      Size/MD5:  1813150 e3b3905635f967a48624137edcdbb27b
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:     7404 ea3a9c628a0abb24538ddbe64f19492e
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:   263986 2619285b2ab85918a65c1e23aac157b4
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:   229210 dc1d9b2fd9a2bb983a928a1c901232cf
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:  1048450 a8621025ef6733f91c55ac4faca6e969
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:  1922014 0d453425af2422b8cdbf51befa1549c1
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:     9916 70e259e5700fbdb85527cded08f64ed6
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/parport-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:    40360 789d5ef17ef193756a42a6b9fc0aa33d
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/plip-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:     8718 501c7f5bdcbfa3d4cee868f09173ccc3
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:    59388 36b36d79b6c3ac4ae081211a23ceb9bb
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:   162874 6a197706de5114d0fab66cae0bd63ffc
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:    66650 89d73eaf9ae8e6cf12ef9eb419bcec66
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:   855816 f89556200a52867a2c1a02d2ca43ac99
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:    51828 f226534e06e281c35a9c46e7fc163f2e
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:    38424 9896fecebac71aa51c4770188e89a9b2
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb
      Size/MD5:   283108 4ef6014b80d06c5db64affc1b671ee8a
    

    .

    Details follow:

    A buffer overflow was discovered in the Moxa serial driver. A local user could manipulate this to send signals to processes they would not normally have access to.

    The nf_conntrack function in netfilter did not set nfctinfo during reassembly of fragmented packets, which left the default value as IP_CT_ESTABLISHED and could allow remote attackers to bypass certain rulesets using IPv6 fragments (CVE-2007-1497).

    A typo in the Linux kernel caused RTA_MAX to be used as an array size instead of RTN_MAX, which lead to an out of bounds access by certain functions (CVE-2007-2172).

    A stack-based buffer overflow in the random number generator could allow local root users to cause a denial of service or gain privileges by setting the default wakeup threshold to a value greater than the output pool size (CVE-2007-3105).

    The Linux kernel allowed local users to send arbitrary signals to a child process that is running at higher privileges by causing a setuid-root parent process to die which delivered an attacker-controlled parent process death signal (PR_SET_PDEATHSIG) (CVE-2007-3848).

    The IA32 system call emulation functionality, when running on the x86_64 architecture, did not zero extend the eax register after the 32bit entry path to ptrace is used, which could allow local users to gain privileges by triggering an out-of-bounds access to the system call table using the %RAX register (CVE-2007-4573).

    In addition to these security fixes, other fixes have been included such as:

    • The 3w-9xxx module was updated to version 9.4.1.2, adding support for 9650SE
    • Fixed the build of e1000-ng
    • Added NIC support for MCP55
    • Added LSI Logic MegaRAID SAS 8300XLP support

    To update your kernel, please follow the directions located at:

    http://www.mandriva.com/en/security/kernelupdate


    References:

    http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-7203 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-1497 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2172 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2242 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2453 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2525 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2875 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2876 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3105 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3513 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3848 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4308 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4573


    Updated Packages:

    Corporate 4.0: 3657c208eeb3c079d9ff0a4ca55a9b03 corporate/4.0/i586/kernel-2.6.12.32mdk-1-1mdk.i586.rpm 0cd8fd1c504f3365fe503c4fd627b6ea corporate/4.0/i586/kernel-BOOT-2.6.12.32mdk-1-1mdk.i586.rpm fbabe3497810452a0052bc67a5fb4f29 corporate/4.0/i586/kernel-doc-2.6.12.32mdk-1-1mdk.i586.rpm 02edfc1bbb2bd826c4a9152d670cc2cc corporate/4.0/i586/kernel-i586-up-1GB-2.6.12.32mdk-1-1mdk.i586.rpm 88b0876de92beff866bb91ba57be0a70 corporate/4.0/i586/kernel-i686-up-4GB-2.6.12.32mdk-1-1mdk.i586.rpm e813926dc184e911deb62a1e34cff8ed corporate/4.0/i586/kernel-smp-2.6.12.32mdk-1-1mdk.i586.rpm a8011ebbe529551463f87cc22f3da22f corporate/4.0/i586/kernel-source-2.6.12.32mdk-1-1mdk.i586.rpm 813ba955a1e9b5ff9834aeebbe477a93 corporate/4.0/i586/kernel-source-stripped-2.6.12.32mdk-1-1mdk.i586.rpm be08ad30fbc3988f654c1532e73fc330 corporate/4.0/i586/kernel-xbox-2.6.12.32mdk-1-1mdk.i586.rpm 5894ac0216cf38203d2002a19db70c15 corporate/4.0/i586/kernel-xen0-2.6.12.32mdk-1-1mdk.i586.rpm 62d5b93083df571edbf8785bc754dd6e corporate/4.0/i586/kernel-xenU-2.6.12.32mdk-1-1mdk.i586.rpm 423fe3296a56ff845fd643890663cdee corporate/4.0/SRPMS/kernel-2.6.12.32mdk-1-1mdk.src.rpm

    Corporate 4.0/X86_64: a51bd78ce00e65f7521625c8c67605f0 corporate/4.0/x86_64/kernel-2.6.12.32mdk-1-1mdk.x86_64.rpm 8d407ed81be714537c2c957918cedfed corporate/4.0/x86_64/kernel-BOOT-2.6.12.32mdk-1-1mdk.x86_64.rpm 730c0bae9b443e5f9d8cb3c8a3486488 corporate/4.0/x86_64/kernel-doc-2.6.12.32mdk-1-1mdk.x86_64.rpm 06391bd475945e8a8b76dcb33989fc83 corporate/4.0/x86_64/kernel-smp-2.6.12.32mdk-1-1mdk.x86_64.rpm bc9c9a881f18b5c2f892684aaeee84cf corporate/4.0/x86_64/kernel-source-2.6.12.32mdk-1-1mdk.x86_64.rpm b0240b751985babe1aabda9c9e231a92 corporate/4.0/x86_64/kernel-source-stripped-2.6.12.32mdk-1-1mdk.x86_64.rpm b1b4750de7daf9cb12ed0057a8851f32 corporate/4.0/x86_64/kernel-xen0-2.6.12.32mdk-1-1mdk.x86_64.rpm 915a8eb87a9fc0c0deab5e696f27c59b corporate/4.0/x86_64/kernel-xenU-2.6.12.32mdk-1-1mdk.x86_64.rpm 423fe3296a56ff845fd643890663cdee corporate/4.0/SRPMS/kernel-2.6.12.32mdk-1-1mdk.src.rpm


    To upgrade automatically use MandrivaUpdate or urpmi. The verification of md5 checksums and GPG signatures is performed automatically for you.

    All packages are signed by Mandriva for security. You can obtain the GPG public key of the Mandriva Security Team by executing:

    gpg --recv-keys --keyserver pgp.mit.edu 0x22458A98

    You can view other update advisories for Mandriva Linux at:

    http://www.mandriva.com/security/advisories

    If you want to report vulnerabilities, please contact

    security_(at)_mandriva.com


    Type Bits/KeyID Date User ID pub 1024D/22458A98 2000-07-10 Mandriva Security Team -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (GNU/Linux)

    iD8DBQFHE+PimqjQ0CJFipgRAprEAKCoEfNhoDZrxQng2IYqYumR/3zVvACeOoJQ 51R6ymKyEZNBb9xnSWE/E64= =QWz7 -----END PGP SIGNATURE-----


    Full-Disclosure - We believe in it. Charter: http://lists.grok.org.uk/full-disclosure-charter.html Hosted and sponsored by Secunia - http://secunia.com/

    Show details on source website

    {
      "affected_products": {
        "_id": null,
        "data": [
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.7,
            "vendor": "openbsd",
            "version": "3.9"
          },
          {
            "_id": null,
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.7,
            "vendor": "openbsd",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.1,
            "vendor": "freebsd",
            "version": "6.2"
          },
          {
            "_id": null,
            "model": "ipv6",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ietf",
            "version": "*"
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "apple computer",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "fujitsu",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "openbsd",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "red hat",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "secure computing network security division",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "sun microsystems",
            "version": null
          },
          {
            "_id": null,
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "rpath",
            "version": null
          },
          {
            "_id": null,
            "model": "router si-r series",
            "scope": null,
            "trust": 0.8,
            "vendor": "fujitsu",
            "version": null
          },
          {
            "_id": null,
            "model": "rt series",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "freebsd",
            "version": "5.5"
          },
          {
            "_id": null,
            "model": "rhel desktop workstation",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "red hat",
            "version": "5 (client)"
          },
          {
            "_id": null,
            "model": "gs3000",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "freebsd",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "linux",
            "version": "2.6.20.9"
          },
          {
            "_id": null,
            "model": "seil/neu",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "ver.2.x 2.00 (belay) ~  2.32 (expedition)"
          },
          {
            "_id": null,
            "model": "gs4000",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "fitelnet-f series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "furukawa electric",
            "version": "fitelnet-f80/f100/f120/f1000"
          },
          {
            "_id": null,
            "model": "ix2000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": "gr4000",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "centrecom",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "allied telesis",
            "version": "(ipv6 all series that support"
          },
          {
            "_id": null,
            "model": "seil/plus",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "1.00 (snappy) ~  1.80 (splash)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "linux",
            "version": "2.6.21"
          },
          {
            "_id": null,
            "model": "si-r70brin",
            "scope": null,
            "trust": 0.8,
            "vendor": "fujitsu",
            "version": null
          },
          {
            "_id": null,
            "model": "seil/neu",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "atm 1.10 (pogo) ~  1.42 (rubberpatch9)"
          },
          {
            "_id": null,
            "model": "ix1000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": "ix4100 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": "seil/turbo",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "1.00 (union) ~  1.80 (shiloh)"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "lt",
            "trust": 0.8,
            "vendor": "linux",
            "version": "version"
          },
          {
            "_id": null,
            "model": "enterprise linux",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "red hat",
            "version": "5 (server)"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "red hat",
            "version": "5.0 (client)"
          },
          {
            "_id": null,
            "model": "ix3000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "_id": null,
            "model": "seil/neu",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "ver.1.x 1.52 (inkknot) ~  1.97 (b age13)"
          },
          {
            "_id": null,
            "model": "gr2000",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "_id": null,
            "model": "linux enterprise server 10.sp1",
            "scope": null,
            "trust": 0.6,
            "vendor": "suse",
            "version": null
          },
          {
            "_id": null,
            "model": "neu atm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.10"
          },
          {
            "_id": null,
            "model": "linux mandrake x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2007.0"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.8"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.1.1"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.5"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.2"
          },
          {
            "_id": null,
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "10.3"
          },
          {
            "_id": null,
            "model": "multi network firewall",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.0.4"
          },
          {
            "_id": null,
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.3"
          },
          {
            "_id": null,
            "model": "linux enterprise sdk sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "alpha",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.9"
          },
          {
            "_id": null,
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.2.1"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "rpath",
            "version": "1"
          },
          {
            "_id": null,
            "model": "corporate server x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "linux lts powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.1.2"
          },
          {
            "_id": null,
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.4"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10.1x86"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netbsd",
            "version": "3.0.2"
          },
          {
            "_id": null,
            "model": "linux i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.10"
          },
          {
            "_id": null,
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.5"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.5"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.6"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.6"
          },
          {
            "_id": null,
            "model": "neu ver.",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.x1.52"
          },
          {
            "_id": null,
            "model": "directory pro",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cosmicperl",
            "version": "10.0.3"
          },
          {
            "_id": null,
            "model": "neu ver.",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.x1.97"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.1"
          },
          {
            "_id": null,
            "model": "linux mandrake x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2007.1"
          },
          {
            "_id": null,
            "model": "airport extreme",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "7.1"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.1"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.4"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.6"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.7"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.03"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.1"
          },
          {
            "_id": null,
            "model": "turbo",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.80"
          },
          {
            "_id": null,
            "model": "linux enterprise desktop 10.sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "suse",
            "version": null
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.8"
          },
          {
            "_id": null,
            "model": "linux foresight linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "foresight",
            "version": "1.1"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.9"
          },
          {
            "_id": null,
            "model": "rfc internet protocol version",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "2460-60"
          },
          {
            "_id": null,
            "model": "linux enterprise sp1 debuginfo",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netbsd",
            "version": "3.0.1"
          },
          {
            "_id": null,
            "model": "linux lts i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.8"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.1.4"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.1.3"
          },
          {
            "_id": null,
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "6.2"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netbsd",
            "version": "3.1"
          },
          {
            "_id": null,
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.10"
          },
          {
            "_id": null,
            "model": "turbo",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.18"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.7"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.4"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.2"
          },
          {
            "_id": null,
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.4"
          },
          {
            "_id": null,
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.10"
          },
          {
            "_id": null,
            "model": "solaris 8 sparc",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "5.4-stable",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "_id": null,
            "model": "linux lts amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "_id": null,
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.5"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.3"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.10"
          },
          {
            "_id": null,
            "model": "-release-p10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "linux mandrake",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2007.1"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.5"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.0"
          },
          {
            "_id": null,
            "model": "linux enterprise desktop sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "_id": null,
            "model": "turbo",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.00"
          },
          {
            "_id": null,
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.10"
          },
          {
            "_id": null,
            "model": "linux ppc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10.1"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.7"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.1.5"
          },
          {
            "_id": null,
            "model": "financials server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "navision",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.4"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.1"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.3"
          },
          {
            "_id": null,
            "model": "-release-p5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "6.0"
          },
          {
            "_id": null,
            "model": "linux mandrake",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2007.0"
          },
          {
            "_id": null,
            "model": "airport extreme",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "7.0"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "6.0.x"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netbsd",
            "version": "2.0"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.2"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.3"
          },
          {
            "_id": null,
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.8"
          },
          {
            "_id": null,
            "model": "corporate server x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.5"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netbsd",
            "version": "2.0.2"
          },
          {
            "_id": null,
            "model": "linux lts sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "_id": null,
            "model": "neu ver.",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "2.x2.32"
          },
          {
            "_id": null,
            "model": "corporate server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.0.1"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.1.1"
          },
          {
            "_id": null,
            "model": "solaris 8 x86",
            "scope": null,
            "trust": 0.3,
            "vendor": "sun",
            "version": null
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.2"
          },
          {
            "_id": null,
            "model": "neu ver.",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "2.x2.00"
          },
          {
            "_id": null,
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "-release/alpha",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.1.2"
          },
          {
            "_id": null,
            "model": "beta2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netbsd",
            "version": "4.0"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.9"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netbsd",
            "version": "2.0.1"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.5"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.6"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.6"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netbsd",
            "version": "2.0.4"
          },
          {
            "_id": null,
            "model": "enterprise linux server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "_id": null,
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.2"
          },
          {
            "_id": null,
            "model": "plus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.80"
          },
          {
            "_id": null,
            "model": "kernel",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "linux",
            "version": "2.6.20.9"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3"
          },
          {
            "_id": null,
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "6.1"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.4"
          },
          {
            "_id": null,
            "model": "-prerelease",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.4"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.6"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.7"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.3"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.0.2"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.1"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.0.3"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.8"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.1"
          },
          {
            "_id": null,
            "model": "-release-p14",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "airport extreme",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "7.2.1"
          },
          {
            "_id": null,
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.3"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.1"
          },
          {
            "_id": null,
            "model": "netbsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netbsd",
            "version": "2.0.3"
          },
          {
            "_id": null,
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "10.2"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.9"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.7"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.8"
          },
          {
            "_id": null,
            "model": "plus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.00"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.1.4"
          },
          {
            "_id": null,
            "model": "enterprise linux desktop workstation client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.1.3"
          },
          {
            "_id": null,
            "model": "-release-p5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.1"
          },
          {
            "_id": null,
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.3"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.4"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.5"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.2"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.4"
          },
          {
            "_id": null,
            "model": "neu atm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.42"
          },
          {
            "_id": null,
            "model": "corporate server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "3.0"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.3.3"
          },
          {
            "_id": null,
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10.1x86-64"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.10"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.1"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.0"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.2.3"
          },
          {
            "_id": null,
            "model": "neu atm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "seil",
            "version": "1.35"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.1.5"
          },
          {
            "_id": null,
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.0"
          },
          {
            "_id": null,
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.7"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.2"
          },
          {
            "_id": null,
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.4.3"
          },
          {
            "_id": null,
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.0.x"
          },
          {
            "_id": null,
            "model": "3.1 rc3",
            "scope": null,
            "trust": 0.3,
            "vendor": "netbsd",
            "version": null
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#267289"
          },
          {
            "db": "BID",
            "id": "23615"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200704-492"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2007-000387"
          },
          {
            "db": "NVD",
            "id": "CVE-2007-2242"
          }
        ]
      },
      "configurations": {
        "_id": null,
        "data": [
          {
            "CVE_data_version": "4.0",
            "nodes": [
              {
                "cpe_match": [
                  {
                    "cpe22Uri": "cpe:/o:freebsd:freebsd",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:linux:linux_kernel",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:openbsd:openbsd",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:allied_telesis_k.k.:centrecom",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:redhat:enterprise_linux",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:redhat:enterprise_linux_desktop",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:redhat:rhel_desktop_workstation",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:furukawa_electric:fitelnet-f",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix1000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix2000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix3000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix4100",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hitachi:gr2000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hitachi:gr4000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hitachi:gs3000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hitachi:gs4000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:fujitsu:si-r70brin",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:fujitsu:router_si-r",
                    "vulnerable": true
                  }
                ],
                "operator": "OR"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2007-000387"
          }
        ]
      },
      "credits": {
        "_id": null,
        "data": "Philippe Biondi  biondi@cartel-securite.fr",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-200704-492"
          }
        ],
        "trust": 0.6
      },
      "cve": "CVE-2007-2242",
      "cvss": {
        "_id": null,
        "data": [
          {
            "cvssV2": [
              {
                "accessComplexity": "LOW",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "nvd@nist.gov",
                "availabilityImpact": "COMPLETE",
                "baseScore": 7.8,
                "confidentialityImpact": "NONE",
                "exploitabilityScore": 10.0,
                "id": "CVE-2007-2242",
                "impactScore": 6.9,
                "integrityImpact": "NONE",
                "severity": "HIGH",
                "trust": 1.8,
                "vectorString": "AV:N/AC:L/Au:N/C:N/I:N/A:C",
                "version": "2.0"
              }
            ],
            "cvssV3": [],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2007-2242",
                "trust": 1.0,
                "value": "HIGH"
              },
              {
                "author": "CARNEGIE MELLON",
                "id": "VU#267289",
                "trust": 0.8,
                "value": "11.03"
              },
              {
                "author": "NVD",
                "id": "CVE-2007-2242",
                "trust": 0.8,
                "value": "High"
              },
              {
                "author": "CNNVD",
                "id": "CNNVD-200704-492",
                "trust": 0.6,
                "value": "HIGH"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#267289"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200704-492"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2007-000387"
          },
          {
            "db": "NVD",
            "id": "CVE-2007-2242"
          }
        ]
      },
      "description": {
        "_id": null,
        "data": "The IPv6 protocol allows remote attackers to cause a denial of service via crafted IPv6 type 0 route headers (IPV6_RTHDR_TYPE_0) that create network amplification between two routers.  This vulnerability may allow an attacker to cause a denial-of-service condition. IPv6 Type 0 Routing header contains service disruption (DoS) There is a problem. IPv6 specification (RFC2460) So as an extension header Type 0 Specifies the routing header. this is IPv4 In loose source routing Is similar to IPv6 Nodes are required to process packets with this extension header. But using this feature DoS The possibility of attack is pointed out.Service operation interruption by a third party (DoS) An attack may be carried out. For example, it can be assumed that this attack consumes communication bandwidth. IPv6 protocol implementations are prone to a denial-of-service vulnerability due to a design error. \nThis issue is related to the issue discussed in BID 22210 (Cisco IOS IPv6 Source Routing Remote Memory Corruption Vulnerability). -----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA1\n\n=============================================================================\nFreeBSD-SA-07:03.ipv6                                       Security Advisory\n                                                          The FreeBSD Project\n\nTopic:          IPv6 Routing Header 0 is dangerous\n\nCategory:       core\nModule:         ipv6\nAnnounced:      2007-04-26\nCredits:        Philippe Biondi, Arnaud Ebalard, Jun-ichiro itojun Hagino\nAffects:        All FreeBSD releases. \nCorrected:      2007-04-24 11:42:42 UTC (RELENG_6, 6.2-STABLE)\n                2007-04-26 23:42:23 UTC (RELENG_6_2, 6.2-RELEASE-p4)\n                2007-04-26 23:41:59 UTC (RELENG_6_1, 6.1-RELEASE-p16)\n                2007-04-24 11:44:23 UTC (RELENG_5, 5.5-STABLE)\n                2007-04-26 23:41:27 UTC (RELENG_5_5, 5.5-RELEASE-p12)\nCVE Name:       CVE-2007-2242\n\nI. \n\nII. \n\nIII. \n\nAn attacker can use vulnerable hosts to \"concentrate\" a denial of service\nattack against a victim host or network; that is, a set of packets sent\nover a period of 30 seconds or more could be constructed such that they\nall arrive at the victim within a period of 1 second or less. \n\nOther attacks may also be possible. \n\nIV.  Workaround\n\nNo workaround is available. \n\nV. \n\nPerform one of the following:\n\n1) Upgrade your vulnerable system to 5-STABLE, or 6-STABLE, or to the\nRELENG_6_2, RELENG_6_1, or RELENG_5_5 security branch dated after the\ncorrection date. \n\n2) To patch your present system:\n\nThe following patches have been verified to apply to FreeBSD 5.5, 6.1,\nand 6.2 systems. \n\na) Download the relevant patch from the location below, and verify the\ndetached PGP signature using your PGP utility. \n\n# fetch http://security.FreeBSD.org/patches/SA-07:03/ipv6.patch\n# fetch http://security.FreeBSD.org/patches/SA-07:03/ipv6.patch.asc\n\nb) Apply the patch. \n\n# cd /usr/src\n# patch \u003c /path/to/patch\n\nc) Recompile your kernel as described in\n\u003cURL:http://www.FreeBSD.org/handbook/kernelconfig.html\u003e and reboot the\nsystem. \n\nVI.  Correction details\n\nThe following list contains the revision numbers of each file that was\ncorrected in FreeBSD. \n\nBranch                                                           Revision\n  Path\n- -------------------------------------------------------------------------\nRELENG_5\n  src/sys/netinet6/in6.h                                         1.35.2.5\n  src/sys/netinet6/in6_proto.c                                   1.29.2.5\n  src/sys/netinet6/route6.c                                      1.10.4.2\nRELENG_5_5\n  src/UPDATING                                            1.342.2.35.2.12\n  src/sys/conf/newvers.sh                                  1.62.2.21.2.14\n  src/sys/netinet6/in6.h                                     1.35.2.3.2.1\n  src/sys/netinet6/in6_proto.c                               1.29.2.4.2.1\n  src/sys/netinet6/route6.c                                  1.10.4.1.4.1\nRELENG_6\n  src/sys/netinet6/in6.h                                         1.36.2.8\n  src/sys/netinet6/in6_proto.c                                   1.32.2.6\n  src/sys/netinet6/route6.c                                      1.11.2.2\nRELENG_6_2\n  src/UPDATING                                             1.416.2.29.2.7\n  src/sys/conf/newvers.sh                                   1.69.2.13.2.7\n  src/sys/netinet6/in6.h                                     1.36.2.7.2.1\n  src/sys/netinet6/in6_proto.c                               1.32.2.5.2.1\n  src/sys/netinet6/route6.c                                  1.11.2.1.4.1\nRELENG_6_1\n  src/UPDATING                                            1.416.2.22.2.18\n  src/sys/conf/newvers.sh                                  1.69.2.11.2.18\n  src/sys/netinet6/in6.h                                     1.36.2.6.2.1\n  src/sys/netinet6/in6_proto.c                               1.32.2.4.2.1\n  src/sys/netinet6/route6.c                                  1.11.2.1.2.1\n- -------------------------------------------------------------------------\n\nVII. References\n\nhttp://www.secdev.org/conf/IPv6_RH_security-csw07.pdf\n\nhttp://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2242\n\nThe latest revision of this advisory is available at\nhttp://security.FreeBSD.org/advisories/FreeBSD-SA-07:03.ipv6.asc\n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1.4.6 (FreeBSD)\n\niD4DBQFGMTlvFdaIBMps37IRApu3AJYsifWIDLcyxNcMdnkvw4nBqXFoAJ43+IzB\nM5sIdCmLQABByFlbMB2BjQ==\n=OrNf\n-----END PGP SIGNATURE-----\n. =========================================================== \nUbuntu Security Notice USN-486-1              July 17, 2007\nlinux-source-2.6.17 vulnerabilities\nCVE-2006-7203, CVE-2007-0005, CVE-2007-1000, CVE-2007-1353,\nCVE-2007-1861, CVE-2007-2242, CVE-2007-2453, CVE-2007-2525,\nCVE-2007-2875, CVE-2007-2876, CVE-2007-2878\n===========================================================\n\nA security issue affects the following Ubuntu releases:\n\nUbuntu 6.10\n\nThis advisory also applies to the corresponding versions of\nKubuntu, Edubuntu, and Xubuntu. \n\nThe problem can be corrected by upgrading your system to the\nfollowing package versions:\n\nUbuntu 6.10:\n  linux-image-2.6.17-12-386                2.6.17.1-12.39\n  linux-image-2.6.17-12-generic            2.6.17.1-12.39\n  linux-image-2.6.17-12-hppa32             2.6.17.1-12.39\n  linux-image-2.6.17-12-hppa64             2.6.17.1-12.39\n  linux-image-2.6.17-12-itanium            2.6.17.1-12.39\n  linux-image-2.6.17-12-mckinley           2.6.17.1-12.39\n  linux-image-2.6.17-12-powerpc            2.6.17.1-12.39\n  linux-image-2.6.17-12-powerpc-smp        2.6.17.1-12.39\n  linux-image-2.6.17-12-powerpc64-smp      2.6.17.1-12.39\n  linux-image-2.6.17-12-server             2.6.17.1-12.39\n  linux-image-2.6.17-12-server-bigiron     2.6.17.1-12.39\n  linux-image-2.6.17-12-sparc64            2.6.17.1-12.39\n  linux-image-2.6.17-12-sparc64-smp        2.6.17.1-12.39\n\nAfter a standard system upgrade you need to reboot your computer to\neffect the necessary changes. \n\nATTENTION: Due to an unavoidable ABI change the Ubuntu 6.10 kernel updates\nhave been given a new version number, which requires you to recompile and\nreinstall all third party kernel modules you might have installed. If you\nuse linux-restricted-modules, you have to update that package as well to\nget modules which work with the new kernel version. Unless you manually\nuninstalled the standard kernel metapackages (linux-386, linux-powerpc,\nlinux-amd64-generic, etc), a standard system upgrade will automatically\nperform this as well. \n\nDetails follow:\n\nThe compat_sys_mount function allowed local users to cause a denial of\nservice when mounting a smbfs filesystem in compatibility mode. \n(CVE-2006-7203)\n\nThe Omnikey CardMan 4040 driver (cm4040_cs) did not limit the size of\nbuffers passed to read() and write(). A local attacker could exploit\nthis to execute arbitrary code with kernel privileges. (CVE-2007-0005)\n\nDue to a variable handling flaw in the  ipv6_getsockopt_sticky()\nfunction a local attacker could exploit the getsockopt() calls to\nread arbitrary kernel memory. This could disclose sensitive data. \n(CVE-2007-1000)\n\nIlja van Sprundel discovered that Bluetooth setsockopt calls could leak\nkernel memory contents via an uninitialized stack buffer.  A local \nattacker could exploit this flaw to view sensitive kernel information. \n(CVE-2007-1353)\n\nA flaw was discovered in the handling of netlink messages.  Local\nattackers could cause infinite recursion leading to a denial of service. (CVE-2007-2242)\n\nThe random number generator was hashing a subset of the available\nentropy, leading to slightly less random numbers. Additionally, systems\nwithout an entropy source would be seeded with the same inputs at boot\ntime, leading to a repeatable series of random numbers. (CVE-2007-2453)\n\nA flaw was discovered in the PPP over Ethernet implementation.  Local\nattackers could manipulate ioctls and cause kernel memory consumption\nleading to a denial of service. (CVE-2007-2525)\n\nAn integer underflow was discovered in the cpuset filesystem.  If mounted,\nlocal attackers could obtain kernel memory using large file offsets\nwhile reading the tasks file. This could disclose sensitive data. \n(CVE-2007-2875)\n\nVilmos Nebehaj discovered that the SCTP netfilter code did not correctly\nvalidate certain states.  A remote attacker could send a specially\ncrafted packet causing a denial of service. (CVE-2007-2876)\n\nLuca Tettamanti discovered a flaw in the VFAT compat ioctls on 64-bit\nsystems.  A local attacker could corrupt a kernel_dirent struct and\ncause a denial of service. (CVE-2007-2878)\n\n\nUpdated packages for Ubuntu 6.10:\n\n  Source archives:\n\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-source-2.6.17_2.6.17.1-12.39.diff.gz\n      Size/MD5:  2086047 d07f76ec226f706d89a66e0ba3d34d44\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-source-2.6.17_2.6.17.1-12.39.dsc\n      Size/MD5:     2321 af3e3fecf1d80a7aca131bde9a871966\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-source-2.6.17_2.6.17.1.orig.tar.gz\n      Size/MD5: 59339565 2e5451201e38e865cbc7b0717fa124a1\n\n  Architecture independent packages:\n\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-doc-2.6.17_2.6.17.1-12.39_all.deb\n      Size/MD5:  4506664 f3307a7a1115f8a279a7ad52d09b251f\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-kernel-devel_2.6.17.1-12.39_all.deb\n      Size/MD5:  1097522 5d80796fb704894d1e083d7a4ea4dfa8\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-source-2.6.17_2.6.17.1-12.39_all.deb\n      Size/MD5: 46079376 a53f61537b12be4c1886f2578daad04d\n\n  amd64 architecture (Athlon64, Opteron, EM64T Xeon)\n\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/acpi-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    28612 0b1c6e3ab9284311bfb96e1dcb812fba\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    50502 074faf23893f63cef2aaae18f0bf1bc8\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:     2450 56e11b173c9c8dad3a233777d1c412f6\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    40800 c3f23e9745643e33945c50afcd3d1a51\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:   113554 98ace1d3b7e9409e5273daaa7b28495c\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    44000 323e5cc16b63fd99d133539ddfa2e573\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    54026 2c1a7a6a9036ef0d9d16b82f78e56daa\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:   189518 10a6605cfc28a6aefd355f1ef716d599\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    40036 41ffb86ffa5d8e12c82c857a1d960b77\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:   167756 fc36e453103ee9429469260e56697ac5\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    60450 9672dfd9f1976cca1db9d9057027c025\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:   154560 94fa3f8b54017625b2856e0399450b36\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:   314682 64afdc80508ad9123b636165fe5ada0e\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:   105986 b9f5813e5daec7a7369e86273902a33e\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:  1904480 b352f8bcf7f21620ef27b7ac745bd089\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-generic_2.6.17.1-12.39_amd64.deb\n      Size/MD5:   907094 ffde52fea07954ed03bbc4b151a634ef\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-server_2.6.17.1-12.39_amd64.deb\n      Size/MD5:   913466 19b6851ea5c16833ac07e737d1637591\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12_2.6.17.1-12.39_amd64.deb\n      Size/MD5:  7429356 31cf4ff7a0b942b456abb41effb01e83\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-generic_2.6.17.1-12.39_amd64.deb\n      Size/MD5: 23872310 671651c6b5237c4b4f9ce0fd87322f81\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-server_2.6.17.1-12.39_amd64.deb\n      Size/MD5: 24446348 54c63b9888616e3dc5181235faec4f7b\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-generic_2.6.17.1-12.39_amd64.deb\n      Size/MD5:  2339902 6456d0226e101c5ca46568c0ac07dbc4\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-server_2.6.17.1-12.39_amd64.deb\n      Size/MD5:  2338992 4c5a331da5de8f7bd6e901f40d3065cc\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-libc-dev_2.6.17.1-12.39_amd64.deb\n      Size/MD5:  1771236 c3dda7fd5856dedfadb6aeb86b1ee26b\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    16792 f4e8db0d007fbf12243bfb4f73e11f54\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:   279160 31ace8b9fd8a5783c00432e80ba83e9b\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:   256924 6c0102de5f392c6255b42d13f36eae6c\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:  1048458 e85815750204baa4e5121565a05b67e6\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:  2103870 3956e33e4d012431810b6bd043175b06\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:   164430 02411ba7631f36224cc35f8e1467bcd5\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    10506 7e32828a1b360eefa21a2900a1ec07f8\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    93362 c0689220349c25b4d18561451af090db\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ntfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    52572 91e1eaf7bc0a1a95deb1e20aa31ee356\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/parport-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    39814 be7f95804371cf80449ab00ab2b09ef7\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    79812 8a5c2917c8e41d88fe4988be3fdf350f\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:     6336 44fad8c6ef38c0f4054a89482c23b8b1\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/plip-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:     9374 e0be83662c3f41cd923cf04523dec121\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    62718 d582dc41e8dc6f9b4264457c40211e8d\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:   138620 e8b5351aed98cdf9973ad93d132b7905\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:   115700 450d8ca2ed5957a321d6c009f3e24847\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    90612 1dc5df5c43ec890f05354ed688cdeb2e\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:  1286170 5615ec4ce076886b2a0b801c97742102\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    80594 1e611e34d769a2a9311e45b3854f4640\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    13480 4d84bc980757d03a15a41394b1f9a3f1\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    76264 1de9fdeda144490e5950d96c8d6288a4\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    36064 0e24439c0e8bc55dd9535faab3ec3b24\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:   151824 4ef6ee14338003c6bb10427c78c31214\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:    53548 374272c14cf4d906d005a3e607970e58\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb\n      Size/MD5:   323418 51ef4685d9324c266635c8a11ebb59ea\n\n  i386 architecture (x86 compatible Intel/AMD)\n\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/acpi-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    21210 7da843c5002c8ea327ccac6e532e8447\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/acpi-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    23806 1a35e88cc19994aacb7a6b717c639c4f\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    43876 0f8440080102c2a8a9f5c0f79c6bcdc4\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    44474 2572438a66d363fcd09cbfa20bb87a6d\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   104794 3edc3cc7b75daa93b9fa2a1dd0832b4b\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    49408 902b83472a56965fd23558b65848286a\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:     2362 40d930bb1dd7fcdc88531537ac867601\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:     2388 35cbbb51e8258c121b3976abaf028ed3\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    35308 396422cb15b83177dcc6940df3503a6e\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    36728 2382993640cdc93dcecb8aa07cb9bb83\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    98292 fc5ac72df3f19c0fac45c647e64e6759\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   103506 da1c50087cc38d9e618e0abc50c177c4\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    38470 9cb694eacd4f35d8428806874930d804\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    39222 8f4f537c7bdf54734b573486d3793928\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    44262 f2558cf0898e04a3fea19c0e89c4ce85\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    44668 62ba6d29e30a08e397bc711c3714c81a\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   172752 24357036194451f6e58fa166d5971eeb\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   175190 88d8a49796dc3a7c55614825470c64ad\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    33750 6700b5682e3fe81736b8304b1c71189f\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    34712 e7634d20ac3160d0571c2488e9ecd96f\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   140556 2a6634cb2d87c0cce91f516441361147\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   143830 4cb625ed09c696bbbd7e4c8ab3e1a0de\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    51758 fc9f6eaf17a82cb10fef0e946e5e8c69\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    53182 68791aae59f996a1b63d370455564243\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   131598 c83d5b2c8672d64225664c0dfa59bf05\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   139174 7e4ca011696d4606795423eaef77a801\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   288316 5ad389052046deb622f8a4ecc06acc1e\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   290684 7a44cec77a36726791bd95cc9c3d61da\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   103540 84f9dd4e0da64b60d505ff32213de564\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   106734 30e33868fef929c1ae9ada34a904612a\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:  1737886 bb16ec7525631c14034ab29a062ef924\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:  1803410 fa07a7b1af1f688576600e39a77d118b\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-386_2.6.17.1-12.39_i386.deb\n      Size/MD5:   912538 58e42b87cdb686e3b1a001a5c9d00266\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-generic_2.6.17.1-12.39_i386.deb\n      Size/MD5:   917330 2a79321df3ffa0421730b1d13fdcb2e0\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-server-bigiron_2.6.17.1-12.39_i386.deb\n      Size/MD5:   921050 cd0b834735573718dc588e33771fc69e\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-server_2.6.17.1-12.39_i386.deb\n      Size/MD5:   917220 00bf54643d92b3126916e1389b62b9a8\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12_2.6.17.1-12.39_i386.deb\n      Size/MD5:  7424710 152c4c37eeea537c091d3fbaa6ff1a19\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-386_2.6.17.1-12.39_i386.deb\n      Size/MD5: 22850908 896bff490260d2a0a2d1c63587573776\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-generic_2.6.17.1-12.39_i386.deb\n      Size/MD5: 22987088 7532ee46289f43572de6af13d76c8122\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-server-bigiron_2.6.17.1-12.39_i386.deb\n      Size/MD5: 23794716 399fc0c6f4d45108ad848dee3aeb8526\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-server_2.6.17.1-12.39_i386.deb\n      Size/MD5: 23294984 54c7e00442278882a2b5a27a9fc8a4e1\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-386_2.6.17.1-12.39_i386.deb\n      Size/MD5:  1961664 54e96b54c3d01492e0defd53212da69c\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-generic_2.6.17.1-12.39_i386.deb\n      Size/MD5:  2029428 dc8fd23f7eacf60b79458d980c0be8ce\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-server-bigiron_2.6.17.1-12.39_i386.deb\n      Size/MD5:  2067220 8d62edb94a89bb94b9c3ae0c678afdfe\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-server_2.6.17.1-12.39_i386.deb\n      Size/MD5:  2029160 deca25a0d751c2907ec756efed4e818f\n    http://security.ubuntu.com/ubuntu/pool/universe/l/linux-source-2.6.17/linux-image-kdump_2.6.17.1-12.39_i386.deb\n      Size/MD5: 21530894 3b57d3f94af90d5f1c1a3cc26910922b\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-libc-dev_2.6.17.1-12.39_i386.deb\n      Size/MD5:  1771222 71c763e96fa18da947dc6eee6273f996\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    15370 10cfc18907f69359d1bdbf2f78d26d08\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    15736 35362bfbf692db23fa6ce4701fec17f0\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   253308 26b726d039e835abbd7b1b7f2505b15b\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   263850 5dab11c3c728f078b7af1a07db1bee55\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   220370 f17526b4a1d385552171a60962087c12\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   227608 d7e47e9512916d938c43e591b43b0ace\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:  1048352 6c6c9c78e73ec9f7971fe63cf49b8c16\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:  1048472 d07c2b1c54c9edac2e5a975832e1276b\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:  2092200 94b08a57d9befd744d4a7dd984c46832\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:  2142860 1823a89cdaa80f133c3042ef6027906d\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   156874 8252c3c9f39252cee290205f86f3eac5\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   152152 3445e3338b9c17bcb43bb4a910f56948\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:     9180 b266fb5d5b4f747c79c34543d2edcbde\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:     9658 e855025e195c2f8f173fae055a249a3f\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    79224 b9faa2fe32fb6615b36cb5d771d195fb\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    81764 22a1775183f30e2af51c6422d7b0ffd7\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ntfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    55084 f8b386e3cf4128da93fdc168172b931d\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ntfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    56734 4642732b2d53ec2974622eab1be5b036\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/parport-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    34484 ae3b8321a6c2e72ce1d73aaeb51a290b\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/parport-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    35412 5a130ce6dd2a832191ecb3c06a936fda\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    85866 9a4364e45eb252c42c8467b5aac3238f\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    87432 b52be9db245f990905b0d9ebc6dd57c7\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:     6084 dcf193961a372c692a2eae91b3f632f9\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:     6096 99a48360f55afe690f9473e34b6f1799\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/plip-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:     8608 9ec3749db2fb4fe85b772cb565ad04ee\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/plip-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:     8902 5cf288f11f076cf4493acb3462185a19\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    52684 b9d4b121f3ae3f4e9a59e8ef6db2cdb6\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    55112 72dba23de6f18debf662694afd1c86ca\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   129982 3cf698040f21e94ef38da5245d398564\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   132968 6da10555d56c7a4e80b59b90af9829ee\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    99866 7f593b5372383a266557d38d6ef879d8\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   101174 3b572152c1463d1515c31a73f990d2a3\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    79568 d5b9488f8e66089a93368f970d7c9aea\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    80934 ba31c0d5c7ee98e076e9e3044dd8dac3\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:  1394930 8f0491b599a89d26ae8fdda93cf47535\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:  1398114 9f7edf4e56a5a5363458792fbe1832e2\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    69148 7be68924e4c4e55ffc329ba1b30e7482\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    71082 3e9618027770b0bcc5ad955e3809081c\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    11422 450542ce7fbcd5144c8ee376fc9d38ec\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    11980 f2779c8454730ccb72358ccca660e0d6\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    62478 51c02138465bcc89c68c9701b275c5dd\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    63808 eeaf8f81dfe946df62111a7ea8cbdc9e\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    36008 ef4b454375feece71b44259e2a20d752\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    36522 194f8344fe8660a789069cfbb99b4369\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   127288 4eb7f58f56d296423a57d6f7a562bf96\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   131320 cca3b2c3fcb5bc7f991af37e1a7f7a1d\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    46806 9f859879ca4e693a42f4da083661ba0c\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:    47566 6fc3e9a1e7766bbca3bc5489258d56e4\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   311902 3f6da4553365c0d510f4556510396b72\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb\n      Size/MD5:   318658 d5c418b0d20538a0cd7aafb8ec1aa0b2\n\n  powerpc architecture (Apple Macintosh G3/G4/G5)\n\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/affs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    23240 66f5bf514de994d84915d882d5a611f8\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/affs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    26082 6be2f4d3f90adba4e6d98973677b2190\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    48586 53fd8c1845bfdcbb7e5e29b107a276c0\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    52034 603d87b3bbd90eba2f634ab2a9618972\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:     2320 e219fa60c226159fc90d6df2804347f4\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:     2514 e1a6b95c138f84b6a50230c459e371eb\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    39142 8a31b03d64d142dc174f29ddfd6469e8\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    43164 c6812e8fc74cc275abbf1ad8923cd95f\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   111464 7687c500326dd4c20331762277160582\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   122272 b554f0b20dcd0ebfce5ca985dd15a52e\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    40406 f65f76d5ff504a1e7126489858150a81\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    46878 9c14a66ff520fb173f2ec3541627f65b\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    28064 8c8f4414d68106d96c0cb147375beac4\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    29046 7528aa197e90533bc51c5a2faac3188d\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   209724 a8697532cb81b2eb1601bcb57f398109\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   225682 0d1c7a72f611eec4e336faac7dd9893d\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    44588 8ee2bf4db312823e9e19fc0701170839\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    40180 af520f3f82ae6373ecf050f6a0515bc6\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fs-common-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:     1960 430d783ddeaa411aa03723cb931f03a0\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fs-common-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:     2232 a4ada90e401800c697cc60b0e396e932\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/hfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    79296 02e167b7c3776269d66103ca8e2d62d6\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/hfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    86612 82fb17eba860416a510aa5d7b050c784\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   110262 c7dc1577ba7760981d7db9598a40137d\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   127800 53fbdb953cb85dede0a7e264330927cc\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    55672 be221f80a184537ce3a0f2fa02b6824a\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    61924 0ea661a0734d702381f0903e4296c237\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   141124 47ad113d4a43d19a08b81576ad604089\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   158556 5202300b269311ce4714754eff59efad\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   314556 391adbaa26d02a6890c6b28aef0020fd\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   289916 4f5665cc6d901f0d2d7fd35f3db4e615\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   113204 86bd467218a4316dde6d8e2960f4ca9d\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   116436 2b0ea85fd8ec23b7d8a7b626e7347d27\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:  2052172 da6d033827867bd628c714edff14a8b9\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:  2771818 3c384239bea32e48f696d7d30f847746\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-powerpc-smp_2.6.17.1-12.39_powerpc.deb\n      Size/MD5:   915864 d03bcf64df6e31149bd4b019ed60deb2\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-powerpc64-smp_2.6.17.1-12.39_powerpc.deb\n      Size/MD5:   920336 2162b15d8aea5ee373c22c874a22526b\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-powerpc_2.6.17.1-12.39_powerpc.deb\n      Size/MD5:   917858 516bcad3769297d3eef7f6d607bf35a5\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12_2.6.17.1-12.39_powerpc.deb\n      Size/MD5:  7445094 549c0326666219ba0086efade9610992\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-powerpc-smp_2.6.17.1-12.39_powerpc.deb\n      Size/MD5: 22719040 66394a300073c7ba74ef5c80d8bb65d0\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-powerpc64-smp_2.6.17.1-12.39_powerpc.deb\n      Size/MD5: 24606070 ec3fa905f30188ea9e833087c913f7af\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-powerpc_2.6.17.1-12.39_powerpc.deb\n      Size/MD5: 22427416 80377ed086d753ab3c77f7a402fea432\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-powerpc-smp_2.6.17.1-12.39_powerpc.deb\n      Size/MD5:  2042736 accb89985e59b51a14a26a2bbf0c2beb\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-powerpc64-smp_2.6.17.1-12.39_powerpc.deb\n      Size/MD5:  2589636 3113e56b1500407f0395c4997cbb2fc0\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-powerpc_2.6.17.1-12.39_powerpc.deb\n      Size/MD5:  1969034 689cc515c3fe9b9dd65c6340fb7122ea\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-libc-dev_2.6.17.1-12.39_powerpc.deb\n      Size/MD5:  1729872 c6ee6d64e4fcdc422c24a20f756140a5\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    17430 091a6b837b4f03a4e01d085d382aa5b0\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    17360 d81498196e5cc7ec40c6fcae5e0f8b57\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   258062 7cdc8ec029091506a1b39475c252e4dc\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   297904 bbb079ce725c0f5b5db736c2e034ac9a\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   239038 6144f028649a23faf13a4b4611c811e9\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   266536 19c8662f8f7ee669e3f618cbc68b4fd5\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:  1048448 2d219f4cc488a3a5de3534fcc003b4c3\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:  1048588 65293d6fcac990bda20e84635efa96aa\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:  2098394 4fecae0ee0d1ad474f2e9b440bb50c76\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:  2331766 fe68e08970accf65a0d5106e639f87ea\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   233858 fbd8ae40c9e092e8f6ef3ef89b5fa034\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   214704 d1c180af3cee5d80a0c6e045ab7cca66\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    12696 46e06747d49b64cce513633b79b00111\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    13316 61b3b6a0c84695365661f6ea8697d7f0\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    83240 0dc567f9c97d271aebe807ec017454a4\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    97162 85d44740ed633723dac4810b60a4941a\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    71160 cc8f7ddf940a1dc28540b951d600494a\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    84188 7c3bcdb3c9f430a83fe217c3f608e987\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:     6346 501b4f81087de783cb047beccd821e16\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:     6890 3fc743c702743c64626afb149611772e\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    57002 13f8831879808c97eff7bd30fac4ffd9\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    69202 ab86b925064cd257a09f4c0b18ecfcc5\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   128618 15deac4a700effc177eb788d2ab7a483\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   156242 50b0643e2ed32e9155272f20acd92379\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   109764 5e9925bddb96efdb84a8c719c4815495\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   133040 aecf93580b62a1b25e346595c0a232e0\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    86612 20f2a685e18d0ad56f8d34d0343d921e\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    94826 01743e049cfef3843e781189aa3d1497\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:  1511478 4660787ea1a93756c0c0dd869c221023\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:  1521588 d70e9fa47808f171ac95c169c6e29177\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   101306 c55cc8f4ff26c9e82f2f3ebf3b81388c\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   115560 37bdd2239d7c633267fe0441ed93f988\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    12206 36f00173ddd7427b7540f81a56503c1d\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    14294 c4c8a72bc8944313aac2200cc04e97ae\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    84678 1dd8aa1c4555a8459dae275aaac03aa9\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    87956 19bca79086e039ba65e5a72d8d359f75\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    37278 c2bd19dca9c56862aa93460ccb8751ae\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    40252 1483517a7607b74fa6fcbcc22ab5fdd6\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   139996 26c86dc67c3a654d8f1ec87ffa2fca28\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   161492 ebe28ec47f8f488e2235d7913a02d046\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    49996 ec1ed33de95bdb1c37aa9a9bd34bd69f\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:    54876 7e9284172eac7124fa71724d66d1b636\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   308218 7f86cf616bb7ab1db75697f678ea6acd\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb\n      Size/MD5:   330232 403f447d858dbe8c55c33563b7cf1eb5\n\n  sparc architecture (Sun SPARC/UltraSPARC)\n\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:    50734 bb2efbe1b281982ecde5580ab6fe3b50\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:     2388 5b3124294cced1f9c01bef0f54b3e6be\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:    40670 d5285a397b2cfbfa99b5c31547a1630d\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:   112228 228400863e74dde11225e875b61afc14\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:    41754 fc6f0b3e063713229519155b8084a67d\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:   105100 b9ea17239e0badbbebcccd6fbc32e802\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:     6860 3fb7358ac5a7381d52295f06bc623ab7\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:   147570 fa000eaaca4c2d10302b5a0d2bc69cb4\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:  1840714 1842940403b8e2e931a44eb01359bfe6\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-sparc64-smp_2.6.17.1-12.39_sparc.deb\n      Size/MD5:   812940 f9a5e0636476d16cec2229e413043766\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-sparc64_2.6.17.1-12.39_sparc.deb\n      Size/MD5:   808176 2b5aebefa48c28a7c5d4209aab7033cb\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12_2.6.17.1-12.39_sparc.deb\n      Size/MD5:  7424164 c74ba68d7311108b74006d980dd10dde\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-sparc64-smp_2.6.17.1-12.39_sparc.deb\n      Size/MD5: 15626704 1e4b8d0931b65f611d65703b0ec0f36e\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-sparc64_2.6.17.1-12.39_sparc.deb\n      Size/MD5: 15290014 3a50dbd38c7755fe3ff318b060cc1220\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-sparc64-smp_2.6.17.1-12.39_sparc.deb\n      Size/MD5:  2172050 ba0f7981b554898adfc969fb69ccf64b\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-sparc64_2.6.17.1-12.39_sparc.deb\n      Size/MD5:  2086206 09f393da6d5146f7dce916f54f3d7691\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-libc-dev_2.6.17.1-12.39_sparc.deb\n      Size/MD5:  1813150 e3b3905635f967a48624137edcdbb27b\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:     7404 ea3a9c628a0abb24538ddbe64f19492e\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:   263986 2619285b2ab85918a65c1e23aac157b4\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:   229210 dc1d9b2fd9a2bb983a928a1c901232cf\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:  1048450 a8621025ef6733f91c55ac4faca6e969\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:  1922014 0d453425af2422b8cdbf51befa1549c1\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:     9916 70e259e5700fbdb85527cded08f64ed6\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/parport-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:    40360 789d5ef17ef193756a42a6b9fc0aa33d\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/plip-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:     8718 501c7f5bdcbfa3d4cee868f09173ccc3\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:    59388 36b36d79b6c3ac4ae081211a23ceb9bb\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:   162874 6a197706de5114d0fab66cae0bd63ffc\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:    66650 89d73eaf9ae8e6cf12ef9eb419bcec66\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:   855816 f89556200a52867a2c1a02d2ca43ac99\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:    51828 f226534e06e281c35a9c46e7fc163f2e\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:    38424 9896fecebac71aa51c4770188e89a9b2\n    http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb\n      Size/MD5:   283108 4ef6014b80d06c5db64affc1b671ee8a\n\n. \n\nDetails follow:\n\nA buffer overflow was discovered in the Moxa serial driver.  A local user could manipulate this\nto send signals to processes they would not normally have access to. \n \n The nf_conntrack function in netfilter did not set nfctinfo during\n reassembly of fragmented packets, which left the default value as\n IP_CT_ESTABLISHED and could allow remote attackers to bypass certain\n rulesets using IPv6 fragments (CVE-2007-1497). \n \n A typo in the Linux kernel caused RTA_MAX to be used as an array size\n instead of RTN_MAX, which lead to an out of bounds access by certain\n functions (CVE-2007-2172). \n \n A stack-based buffer overflow in the random number generator could\n allow local root users to cause a denial of service or gain privileges\n by setting the default wakeup threshold to a value greater than the\n output pool size (CVE-2007-3105). \n \n The Linux kernel allowed local users to send arbitrary signals\n to a child process that is running at higher privileges by\n causing a setuid-root parent process to die which delivered an\n attacker-controlled parent process death signal (PR_SET_PDEATHSIG)\n (CVE-2007-3848). \n \n The IA32 system call emulation functionality, when running on the\n x86_64 architecture, did not zero extend the eax register after the\n 32bit entry path to ptrace is used, which could allow local users to\n gain privileges by triggering an out-of-bounds access to the system\n call table using the %RAX register (CVE-2007-4573). \n \n In addition to these security fixes, other fixes have been included\n such as:\n \n   - The 3w-9xxx module was updated to version 9.4.1.2, adding support\n   for 9650SE\n   - Fixed the build of e1000-ng\n   - Added NIC support for MCP55\n   - Added LSI Logic MegaRAID SAS 8300XLP support\n \n To update your kernel, please follow the directions located at:\n \n   http://www.mandriva.com/en/security/kernelupdate\n _______________________________________________________________________\n\n References:\n \n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-7203\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-1497\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2172\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2242\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2453\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2525\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2875\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2876\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3105\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3513\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3848\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4308\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4573\n _______________________________________________________________________\n \n Updated Packages:\n \n Corporate 4.0:\n 3657c208eeb3c079d9ff0a4ca55a9b03  corporate/4.0/i586/kernel-2.6.12.32mdk-1-1mdk.i586.rpm\n 0cd8fd1c504f3365fe503c4fd627b6ea  corporate/4.0/i586/kernel-BOOT-2.6.12.32mdk-1-1mdk.i586.rpm\n fbabe3497810452a0052bc67a5fb4f29  corporate/4.0/i586/kernel-doc-2.6.12.32mdk-1-1mdk.i586.rpm\n 02edfc1bbb2bd826c4a9152d670cc2cc  corporate/4.0/i586/kernel-i586-up-1GB-2.6.12.32mdk-1-1mdk.i586.rpm\n 88b0876de92beff866bb91ba57be0a70  corporate/4.0/i586/kernel-i686-up-4GB-2.6.12.32mdk-1-1mdk.i586.rpm\n e813926dc184e911deb62a1e34cff8ed  corporate/4.0/i586/kernel-smp-2.6.12.32mdk-1-1mdk.i586.rpm\n a8011ebbe529551463f87cc22f3da22f  corporate/4.0/i586/kernel-source-2.6.12.32mdk-1-1mdk.i586.rpm\n 813ba955a1e9b5ff9834aeebbe477a93  corporate/4.0/i586/kernel-source-stripped-2.6.12.32mdk-1-1mdk.i586.rpm\n be08ad30fbc3988f654c1532e73fc330  corporate/4.0/i586/kernel-xbox-2.6.12.32mdk-1-1mdk.i586.rpm\n 5894ac0216cf38203d2002a19db70c15  corporate/4.0/i586/kernel-xen0-2.6.12.32mdk-1-1mdk.i586.rpm\n 62d5b93083df571edbf8785bc754dd6e  corporate/4.0/i586/kernel-xenU-2.6.12.32mdk-1-1mdk.i586.rpm \n 423fe3296a56ff845fd643890663cdee  corporate/4.0/SRPMS/kernel-2.6.12.32mdk-1-1mdk.src.rpm\n\n Corporate 4.0/X86_64:\n a51bd78ce00e65f7521625c8c67605f0  corporate/4.0/x86_64/kernel-2.6.12.32mdk-1-1mdk.x86_64.rpm\n 8d407ed81be714537c2c957918cedfed  corporate/4.0/x86_64/kernel-BOOT-2.6.12.32mdk-1-1mdk.x86_64.rpm\n 730c0bae9b443e5f9d8cb3c8a3486488  corporate/4.0/x86_64/kernel-doc-2.6.12.32mdk-1-1mdk.x86_64.rpm\n 06391bd475945e8a8b76dcb33989fc83  corporate/4.0/x86_64/kernel-smp-2.6.12.32mdk-1-1mdk.x86_64.rpm\n bc9c9a881f18b5c2f892684aaeee84cf  corporate/4.0/x86_64/kernel-source-2.6.12.32mdk-1-1mdk.x86_64.rpm\n b0240b751985babe1aabda9c9e231a92  corporate/4.0/x86_64/kernel-source-stripped-2.6.12.32mdk-1-1mdk.x86_64.rpm\n b1b4750de7daf9cb12ed0057a8851f32  corporate/4.0/x86_64/kernel-xen0-2.6.12.32mdk-1-1mdk.x86_64.rpm\n 915a8eb87a9fc0c0deab5e696f27c59b  corporate/4.0/x86_64/kernel-xenU-2.6.12.32mdk-1-1mdk.x86_64.rpm \n 423fe3296a56ff845fd643890663cdee  corporate/4.0/SRPMS/kernel-2.6.12.32mdk-1-1mdk.src.rpm\n _______________________________________________________________________\n\n To upgrade automatically use MandrivaUpdate or urpmi.  The verification\n of md5 checksums and GPG signatures is performed automatically for you. \n\n All packages are signed by Mandriva for security.  You can obtain the\n GPG public key of the Mandriva Security Team by executing:\n\n  gpg --recv-keys --keyserver pgp.mit.edu 0x22458A98\n\n You can view other update advisories for Mandriva Linux at:\n\n  http://www.mandriva.com/security/advisories\n\n If you want to report vulnerabilities, please contact\n\n  security_(at)_mandriva.com\n _______________________________________________________________________\n\n Type Bits/KeyID     Date       User ID\n pub  1024D/22458A98 2000-07-10 Mandriva Security Team\n  \u003csecurity*mandriva.com\u003e\n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1.4.7 (GNU/Linux)\n\niD8DBQFHE+PimqjQ0CJFipgRAprEAKCoEfNhoDZrxQng2IYqYumR/3zVvACeOoJQ\n51R6ymKyEZNBb9xnSWE/E64=\n=QWz7\n-----END PGP SIGNATURE-----\n\n_______________________________________________\nFull-Disclosure - We believe in it. \nCharter: http://lists.grok.org.uk/full-disclosure-charter.html\nHosted and sponsored by Secunia - http://secunia.com/\n",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2007-2242"
          },
          {
            "db": "CERT/CC",
            "id": "VU#267289"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2007-000387"
          },
          {
            "db": "BID",
            "id": "23615"
          },
          {
            "db": "PACKETSTORM",
            "id": "60879"
          },
          {
            "db": "PACKETSTORM",
            "id": "56342"
          },
          {
            "db": "PACKETSTORM",
            "id": "57864"
          },
          {
            "db": "PACKETSTORM",
            "id": "58999"
          },
          {
            "db": "PACKETSTORM",
            "id": "58920"
          },
          {
            "db": "PACKETSTORM",
            "id": "60130"
          }
        ],
        "trust": 3.15
      },
      "external_ids": {
        "_id": null,
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#267289",
            "trust": 3.5
          },
          {
            "db": "NVD",
            "id": "CVE-2007-2242",
            "trust": 3.3
          },
          {
            "db": "SECUNIA",
            "id": "25068",
            "trust": 3.2
          },
          {
            "db": "BID",
            "id": "23615",
            "trust": 2.7
          },
          {
            "db": "SECUNIA",
            "id": "24978",
            "trust": 2.4
          },
          {
            "db": "SECUNIA",
            "id": "26703",
            "trust": 2.4
          },
          {
            "db": "SECUNIA",
            "id": "25033",
            "trust": 2.4
          },
          {
            "db": "SECUNIA",
            "id": "25770",
            "trust": 2.4
          },
          {
            "db": "VUPEN",
            "id": "ADV-2007-3050",
            "trust": 1.6
          },
          {
            "db": "VUPEN",
            "id": "ADV-2007-1563",
            "trust": 1.6
          },
          {
            "db": "VUPEN",
            "id": "ADV-2007-2270",
            "trust": 1.6
          },
          {
            "db": "SECUNIA",
            "id": "25083",
            "trust": 1.6
          },
          {
            "db": "SECUNIA",
            "id": "26133",
            "trust": 1.6
          },
          {
            "db": "SECUNIA",
            "id": "26664",
            "trust": 1.6
          },
          {
            "db": "SECUNIA",
            "id": "25288",
            "trust": 1.6
          },
          {
            "db": "SECUNIA",
            "id": "26651",
            "trust": 1.6
          },
          {
            "db": "SECUNIA",
            "id": "28806",
            "trust": 1.6
          },
          {
            "db": "SECUNIA",
            "id": "25691",
            "trust": 1.6
          },
          {
            "db": "SECUNIA",
            "id": "26620",
            "trust": 1.6
          },
          {
            "db": "SECTRACK",
            "id": "1017949",
            "trust": 1.6
          },
          {
            "db": "XF",
            "id": "33851",
            "trust": 1.4
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2007-000387",
            "trust": 0.8
          },
          {
            "db": "MANDRIVA",
            "id": "MDKSA-2007:171",
            "trust": 0.6
          },
          {
            "db": "MANDRIVA",
            "id": "MDKSA-2007:196",
            "trust": 0.6
          },
          {
            "db": "MANDRIVA",
            "id": "MDKSA-2007:216",
            "trust": 0.6
          },
          {
            "db": "OPENBSD",
            "id": "[4.0] 20070423 012: SECURITY FIX: APRIL 23, 2007",
            "trust": 0.6
          },
          {
            "db": "OPENBSD",
            "id": "[3.9] 20070423 022: SECURITY FIX: APRIL 23, 2007",
            "trust": 0.6
          },
          {
            "db": "UBUNTU",
            "id": "USN-508-1",
            "trust": 0.6
          },
          {
            "db": "UBUNTU",
            "id": "USN-486-1",
            "trust": 0.6
          },
          {
            "db": "BUGTRAQ",
            "id": "20070615 RPSA-2007-0124-1 KERNEL XEN",
            "trust": 0.6
          },
          {
            "db": "BUGTRAQ",
            "id": "20070508 FLEA-2007-0016-1: KERNEL",
            "trust": 0.6
          },
          {
            "db": "REDHAT",
            "id": "RHSA-2007:0347",
            "trust": 0.6
          },
          {
            "db": "FREEBSD",
            "id": "FREEBSD-SA-07:03.IPV6",
            "trust": 0.6
          },
          {
            "db": "XF",
            "id": "6",
            "trust": 0.6
          },
          {
            "db": "SUSE",
            "id": "SUSE-SA:2008:006",
            "trust": 0.6
          },
          {
            "db": "SUSE",
            "id": "SUSE-SA:2007:051",
            "trust": 0.6
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200704-492",
            "trust": 0.6
          },
          {
            "db": "PACKETSTORM",
            "id": "60879",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "56342",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "57864",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "58999",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "58920",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "60130",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#267289"
          },
          {
            "db": "BID",
            "id": "23615"
          },
          {
            "db": "PACKETSTORM",
            "id": "60879"
          },
          {
            "db": "PACKETSTORM",
            "id": "56342"
          },
          {
            "db": "PACKETSTORM",
            "id": "57864"
          },
          {
            "db": "PACKETSTORM",
            "id": "58999"
          },
          {
            "db": "PACKETSTORM",
            "id": "58920"
          },
          {
            "db": "PACKETSTORM",
            "id": "60130"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200704-492"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2007-000387"
          },
          {
            "db": "NVD",
            "id": "CVE-2007-2242"
          }
        ]
      },
      "id": "VAR-200704-0740",
      "iot": {
        "_id": null,
        "data": true,
        "sources": [
          {
            "db": "VARIoT devices database",
            "id": null
          }
        ],
        "trust": 0.525
      },
      "last_update_date": "2026-03-09T20:39:10.149000Z",
      "patch": {
        "_id": null,
        "data": [
          {
            "title": "cisco-sa-20070124-IOS-IPv6",
            "trust": 0.8,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20070124-IOS-IPv6.shtml"
          },
          {
            "title": "IPv6\u30d7\u30ed\u30c8\u30b3\u30eb\u306eType 0\u30eb\u30fc\u30c6\u30a3\u30f3\u30b0\u30d8\u30c3\u30c0\u306b\u95a2\u3059\u308b\u8106\u5f31\u6027\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.furukawa.co.jp/fitelnet/topic/vulnera_20070614.html"
          },
          {
            "title": "FreeBSD-SA-07:03.ipv6",
            "trust": 0.8,
            "url": "http://security.freebsd.org/advisories/FreeBSD-SA-07:03.ipv6.asc"
          },
          {
            "title": "\u65e5\u7acb\u682a\u5f0f\u4f1a\u793e\u304b\u3089\u306e\u60c5\u5831",
            "trust": 0.8,
            "url": "http://jvn.jp/cert/JVNVU%23267289/066287/index.html"
          },
          {
            "title": "ChangeLog-2.6.20.9",
            "trust": 0.8,
            "url": "http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.20.9"
          },
          {
            "title": "ChangeLog-2.6.21",
            "trust": 0.8,
            "url": "http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.21"
          },
          {
            "title": "NV07-001",
            "trust": 0.8,
            "url": "http://www.nec.co.jp/security-info/secinfo/nv07-001.html"
          },
          {
            "title": "022: SECURITY FIX: April 23, 2007",
            "trust": 0.8,
            "url": "http://openbsd.org/errata39.html#022_route6"
          },
          {
            "title": "012: SECURITY FIX: April 23, 2007",
            "trust": 0.8,
            "url": "http://openbsd.org/errata40.html#012_route6"
          },
          {
            "title": "RHSA-2007:0347",
            "trust": 0.8,
            "url": "https://rhn.redhat.com/errata/RHSA-2007-0347.html"
          },
          {
            "title": "\u30bf\u30a4\u30d70\u306e\u30eb\u30fc\u30c6\u30a3\u30f3\u30b0\u30d8\u30c3\u30c0\u304c\u4ed8\u3044\u305fIPv6\u304cDoS\u653b\u6483\u306b\u4f7f\u308f\u308c\u308b\u53ef\u80fd\u6027\u306e\u3042\u308b\u8106\u5f31\u6027\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.rtpro.yamaha.co.jp/RT/FAQ/Security/VU267289.html"
          },
          {
            "title": "[\u5f71\u97ff\uff1a\u3042\u308a] IPv6\u30d7\u30ed\u30c8\u30b3\u30eb\u4ed5\u69d8\u306e\u8106\u5f31\u6027",
            "trust": 0.8,
            "url": "http://www.seil.jp/seilseries/news/snote/snote_200705_01.html"
          },
          {
            "title": "cisco-sa-20070124-IOS-IPv6",
            "trust": 0.8,
            "url": "http://www.cisco.com/cisco/web/support/JP/102/1021/1021604_cisco-sa-20070124-IOS-IPv6-j.html"
          },
          {
            "title": "IPv6\u62e1\u5f35\u30d8\u30c3\u30c0\u306eType0 \u30eb\u30fc\u30c6\u30a3\u30f3\u30b0\u30d8\u30c3\u30c0\u306b\u95a2\u3059\u308b\u8106\u5f31\u6027\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.allied-telesis.co.jp/support/list/faq/vuls/20071025.html"
          },
          {
            "title": "RHSA-2007:0347",
            "trust": 0.8,
            "url": "http://www.jp.redhat.com/support/errata/RHSA/RHSA-2007-0347J.html"
          },
          {
            "title": "\u30eb\u30fc\u30bf\uff08Si-R\u30b7\u30ea\u30fc\u30ba,Si-R70brin\uff09\u306eIPv6\u30d7\u30ed\u30c8\u30b3\u30eb\u5b9f\u88c5\u306b\u8d77\u56e0\u3059\u308b\u8106\u5f31\u6027\u3078\u306e\u5bfe\u5fdc\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://fenics.fujitsu.com/products/support/2007/sir_07.html"
          },
          {
            "title": "VU#267289",
            "trust": 0.8,
            "url": "http://software.fujitsu.com/jp/security/vulnerabilities/vu267289.html"
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2007-000387"
          }
        ]
      },
      "problemtype_data": {
        "_id": null,
        "data": [
          {
            "problemtype": "NVD-CWE-Other",
            "trust": 1.0
          }
        ],
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2007-2242"
          }
        ]
      },
      "references": {
        "_id": null,
        "data": [
          {
            "trust": 2.7,
            "url": "http://www.kb.cert.org/vuls/id/267289"
          },
          {
            "trust": 2.4,
            "url": "http://openbsd.org/errata40.html#012_route6"
          },
          {
            "trust": 2.4,
            "url": "http://docs.info.apple.com/article.html?artnum=305712"
          },
          {
            "trust": 2.4,
            "url": "http://www.securityfocus.com/bid/23615"
          },
          {
            "trust": 2.4,
            "url": "http://secunia.com/advisories/25068"
          },
          {
            "trust": 2.0,
            "url": "http://www.secdev.org/conf/ipv6_rh_security-csw07.pdf"
          },
          {
            "trust": 1.7,
            "url": "http://security.freebsd.org/advisories/freebsd-sa-07:03.ipv6.asc"
          },
          {
            "trust": 1.6,
            "url": "http://secunia.com/advisories/24978"
          },
          {
            "trust": 1.6,
            "url": "http://openbsd.org/errata39.html#022_route6"
          },
          {
            "trust": 1.6,
            "url": "https://issues.rpath.com/browse/rpl-1310"
          },
          {
            "trust": 1.6,
            "url": "http://www.ubuntu.com/usn/usn-508-1"
          },
          {
            "trust": 1.6,
            "url": "http://www.ubuntu.com/usn/usn-486-1"
          },
          {
            "trust": 1.6,
            "url": "http://www.securitytracker.com/id?1017949"
          },
          {
            "trust": 1.6,
            "url": "http://www.securityfocus.com/archive/1/471457"
          },
          {
            "trust": 1.6,
            "url": "http://www.redhat.com/support/errata/rhsa-2007-0347.html"
          },
          {
            "trust": 1.6,
            "url": "http://www.novell.com/linux/security/advisories/2007_51_kernel.html"
          },
          {
            "trust": 1.6,
            "url": "http://www.mandriva.com/security/advisories?name=mdksa-2007:216"
          },
          {
            "trust": 1.6,
            "url": "http://www.mandriva.com/security/advisories?name=mdksa-2007:196"
          },
          {
            "trust": 1.6,
            "url": "http://www.mandriva.com/security/advisories?name=mdksa-2007:171"
          },
          {
            "trust": 1.6,
            "url": "http://secunia.com/advisories/28806"
          },
          {
            "trust": 1.6,
            "url": "http://secunia.com/advisories/26703"
          },
          {
            "trust": 1.6,
            "url": "http://secunia.com/advisories/26664"
          },
          {
            "trust": 1.6,
            "url": "http://secunia.com/advisories/26651"
          },
          {
            "trust": 1.6,
            "url": "http://secunia.com/advisories/26620"
          },
          {
            "trust": 1.6,
            "url": "http://secunia.com/advisories/26133"
          },
          {
            "trust": 1.6,
            "url": "http://secunia.com/advisories/25770"
          },
          {
            "trust": 1.6,
            "url": "http://secunia.com/advisories/25691"
          },
          {
            "trust": 1.6,
            "url": "http://secunia.com/advisories/25288"
          },
          {
            "trust": 1.6,
            "url": "http://secunia.com/advisories/25083"
          },
          {
            "trust": 1.6,
            "url": "http://secunia.com/advisories/25033"
          },
          {
            "trust": 1.6,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2008-02/msg00002.html"
          },
          {
            "trust": 1.6,
            "url": "http://docs.info.apple.com/article.html?artnum=306375"
          },
          {
            "trust": 1.4,
            "url": "http://xforce.iss.net/xforce/xfdb/33851"
          },
          {
            "trust": 1.4,
            "url": "http://www.frsirt.com/english/advisories/2007/1563"
          },
          {
            "trust": 1.2,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-2242"
          },
          {
            "trust": 1.0,
            "url": "http://www.vupen.com/english/advisories/2007/1563"
          },
          {
            "trust": 1.0,
            "url": "http://www.vupen.com/english/advisories/2007/2270"
          },
          {
            "trust": 1.0,
            "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/33851"
          },
          {
            "trust": 1.0,
            "url": "http://www.vupen.com/english/advisories/2007/3050"
          },
          {
            "trust": 1.0,
            "url": "https://oval.cisecurity.org/repository/search/definition/oval%3aorg.mitre.oval%3adef%3a9574"
          },
          {
            "trust": 1.0,
            "url": "http://www.securityfocus.com/archive/1/467939/30/6690/threaded"
          },
          {
            "trust": 0.8,
            "url": "http://secunia.com/advisories/24978/"
          },
          {
            "trust": 0.8,
            "url": "http://secunia.com/advisories/25033/"
          },
          {
            "trust": 0.8,
            "url": "http://www.secdev.org/conf/ipv6_rh_security-csw07.pdf "
          },
          {
            "trust": 0.8,
            "url": "http://secunia.com/advisories/25068/"
          },
          {
            "trust": 0.8,
            "url": "http://www.ietf.org/rfc/rfc2460.txt"
          },
          {
            "trust": 0.8,
            "url": "http://secunia.com/advisories/25770/"
          },
          {
            "trust": 0.8,
            "url": "http://secunia.com/advisories/26703/"
          },
          {
            "trust": 0.8,
            "url": "http://jvn.jp/cert/jvnvu%23267289/index.html"
          },
          {
            "trust": 0.8,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2007-2242"
          },
          {
            "trust": 0.6,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-2242"
          },
          {
            "trust": 0.6,
            "url": "http://www.securityfocus.com/archive/1/archive/1/467939/30/6690/threaded"
          },
          {
            "trust": 0.6,
            "url": "http://www.frsirt.com/english/advisories/2007/3050"
          },
          {
            "trust": 0.6,
            "url": "http://www.frsirt.com/english/advisories/2007/2270"
          },
          {
            "trust": 0.4,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-2453"
          },
          {
            "trust": 0.4,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-2525"
          },
          {
            "trust": 0.3,
            "url": "http://blogs.sun.com/security/entry/ipv6_routing_header_issues"
          },
          {
            "trust": 0.3,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20070124-ios-ipv6.shtml"
          },
          {
            "trust": 0.3,
            "url": "http://www1.ietf.org/mail-archive/web/ipv6/current/msg07499.html"
          },
          {
            "trust": 0.3,
            "url": "http://www.freebsd.org/"
          },
          {
            "trust": 0.3,
            "url": "http://www.kernel.org/pub/linux/kernel/v2.6/changelog-2.6.20.9"
          },
          {
            "trust": 0.3,
            "url": "http://www.netbsd.org/"
          },
          {
            "trust": 0.3,
            "url": "http://www.openbsd.org"
          },
          {
            "trust": 0.3,
            "url": "http://www.apple.com/support/downloads/airportextremebasestationwith80211nfirmware721.html"
          },
          {
            "trust": 0.3,
            "url": "http://www.ipv6.org/"
          },
          {
            "trust": 0.3,
            "url": "http://www.seil.jp/en/news/snote/snote_200705_01_en.html"
          },
          {
            "trust": 0.3,
            "url": "http://rhn.redhat.com/errata/rhsa-2007-0347.html"
          },
          {
            "trust": 0.3,
            "url": "http://support.novell.com/techcenter/psdb/a4e6d19f94707022b621550d1049f74e.html"
          },
          {
            "trust": 0.3,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-2525"
          },
          {
            "trust": 0.3,
            "url": "http://www.mandriva.com/security/"
          },
          {
            "trust": 0.3,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-3105"
          },
          {
            "trust": 0.3,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-2172"
          },
          {
            "trust": 0.3,
            "url": "http://www.mandriva.com/en/security/kernelupdate"
          },
          {
            "trust": 0.3,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-2172"
          },
          {
            "trust": 0.3,
            "url": "http://www.mandriva.com/security/advisories"
          },
          {
            "trust": 0.3,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-2453"
          },
          {
            "trust": 0.3,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-2876"
          },
          {
            "trust": 0.3,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2006-7203"
          },
          {
            "trust": 0.3,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-2875"
          },
          {
            "trust": 0.2,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-3105"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-1861"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-4308"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-3848"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-1497"
          },
          {
            "trust": 0.2,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-1497"
          },
          {
            "trust": 0.2,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2006-7203"
          },
          {
            "trust": 0.2,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-2876"
          },
          {
            "trust": 0.2,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-2875"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-4133"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-4133"
          },
          {
            "trust": 0.1,
            "url": "http://security.freebsd.org/patches/sa-07:03/ipv6.patch.asc"
          },
          {
            "trust": 0.1,
            "url": "http://www.freebsd.org/handbook/kernelconfig.html\u003e"
          },
          {
            "trust": 0.1,
            "url": "http://security.freebsd.org/patches/sa-07:03/ipv6.patch"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-server_2.6.17.1-12.39_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-server_2.6.17.1-12.39_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ntfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/plip-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-server_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-generic_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-386_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-powerpc-smp_2.6.17.1-12.39_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/acpi-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-powerpc64-smp_2.6.17.1-12.39_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-libc-dev_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-sparc64-smp_2.6.17.1-12.39_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-generic_2.6.17.1-12.39_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-generic_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-powerpc-smp_2.6.17.1-12.39_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/parport-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-powerpc-smp_2.6.17.1-12.39_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-libc-dev_2.6.17.1-12.39_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-powerpc64-smp_2.6.17.1-12.39_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-source-2.6.17_2.6.17.1-12.39.diff.gz"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ntfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-generic_2.6.17.1-12.39_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/parport-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/hfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-pcmcia-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-powerpc_2.6.17.1-12.39_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fs-common-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-sparc64_2.6.17.1-12.39_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-1353"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/plip-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-0005"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/plip-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/affs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-source-2.6.17_2.6.17.1-12.39.dsc"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-source-2.6.17_2.6.17.1-12.39_all.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-powerpc_2.6.17.1-12.39_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/speakup-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-sparc64_2.6.17.1-12.39_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-server_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-doc-2.6.17_2.6.17.1-12.39_all.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-sparc64_2.6.17.1-12.39_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/universe/l/linux-source-2.6.17/linux-image-kdump_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/reiserfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-1000"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/acpi-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12_2.6.17.1-12.39_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-powerpc64-smp_2.6.17.1-12.39_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/input-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fs-common-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-powerpc_2.6.17.1-12.39_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-sparc64-smp_2.6.17.1-12.39_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-sparc64-smp_2.6.17.1-12.39_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-libc-dev_2.6.17.1-12.39_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-generic_2.6.17.1-12.39_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-server-bigiron_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-kernel-devel_2.6.17.1-12.39_all.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/plip-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-libc-dev_2.6.17.1-12.39_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fat-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/fb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-source-2.6.17_2.6.17.1.orig.tar.gz"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ntfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-server-bigiron_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-server_2.6.17.1-12.39_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12-386_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/firewire-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ufs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12_2.6.17.1-12.39_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext3-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/floppy-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-usb-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-server-bigiron_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/pcmcia-storage-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ipv6-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/xfs-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-generic_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/scsi-core-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-debug-2.6.17-12-server_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/md-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/parport-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/loop-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/usb-storage-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-2878"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/irda-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/hfs-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/jfs-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/socket-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/crc-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-firmware-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/affs-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/sata-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ppp-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/serial-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/cdrom-core-modules-2.6.17-12-powerpc-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/parport-modules-2.6.17-12-sparc64-di_2.6.17.1-12.39_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/kernel-image-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-shared-modules-2.6.17-12-powerpc64-smp-di_2.6.17.1-12.39_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/acpi-modules-2.6.17-12-386-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-image-2.6.17-12-386_2.6.17.1-12.39_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ide-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/ext2-modules-2.6.17-12-generic-di_2.6.17.1-12.39_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/linux-headers-2.6.17-12_2.6.17.1-12.39_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.17/nic-modules-2.6.17-12-generic-di_2.6.17.1-12.39_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/kernel-image-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nfs-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-amd64-generic_2.6.15-29.58_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-shared-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/socket-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ext3-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/fb-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/scsi-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ipv6-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-powerpc-smp_2.6.15-29.58_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-k7_2.6.15-29.58_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/cdrom-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-686_2.6.15-29.58_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/sata-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ext3-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-powerpc_2.6.15-29.58_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-server-bigiron_2.6.15-29.58_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/pcmcia-storage-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-sparc64-smp_2.6.15-29.58_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-kernel-devel_2.6.15-29.58_all.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/cdrom-core-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/plip-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/md-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ipv6-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-doc-2.6.15_2.6.15-29.58_all.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/reiserfs-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-shared-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/usb-storage-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/firewire-core-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/affs-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/crc-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/input-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-amd64-server_2.6.15-29.58_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ext3-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ext2-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/jfs-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/fs-common-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-k7_2.6.15-29.58_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/md-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ppp-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/irda-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/affs-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/xfs-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/fb-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/fb-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-firmware-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/fb-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/fat-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-shared-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/scsi-core-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/fs-common-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/xfs-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/input-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/usb-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-686_2.6.15-29.58_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29_2.6.15-29.58_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-usb-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/floppy-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/cdrom-core-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/hfs-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/crc-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/reiserfs-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/plip-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/floppy-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/reiserfs-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/socket-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/usb-storage-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29_2.6.15-29.58_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/acpi-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/xfs-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-server_2.6.15-29.58_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29_2.6.15-29.58_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ufs-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/usb-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/pcmcia-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/md-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-amd64-k8_2.6.15-29.58_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/loop-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/pcmcia-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/reiserfs-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/fat-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-usb-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nfs-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-386_2.6.15-29.58_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/serial-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-amd64-generic_2.6.15-29.58_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-source-2.6.15_2.6.15-29.58.diff.gz"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-powerpc64-smp_2.6.15-29.58_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-usb-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/kernel-image-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/kernel-image-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ide-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/scsi-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/parport-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/plip-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-powerpc64-smp_2.6.15-29.58_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/input-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nfs-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/md-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-firmware-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/usb-storage-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ide-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/scsi-core-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ppp-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-sparc64-smp_2.6.15-29.58_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/loop-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-firmware-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/socket-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/scsi-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/pcmcia-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-pcmcia-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/pcmcia-storage-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-firmware-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/firewire-core-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/acpi-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/cdrom-core-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/scsi-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/sata-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ipv6-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-shared-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/usb-storage-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-pcmcia-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/jfs-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/sata-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/jfs-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/floppy-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/serial-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nfs-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-sparc64_2.6.15-29.58_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/loop-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ext2-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/parport-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-pcmcia-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ntfs-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/cdrom-core-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-amd64-server_2.6.15-29.58_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/pcmcia-storage-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ext2-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ufs-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ppp-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/usb-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-amd64-xeon_2.6.15-29.58_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/usb-storage-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/scsi-core-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-sparc64_2.6.15-29.58_sparc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-source-2.6.15_2.6.15.orig.tar.gz"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/serial-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-usb-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ntfs-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29_2.6.15-29.58_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/reiserfs-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-powerpc-smp_2.6.15-29.58_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ext2-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-386_2.6.15-29.58_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/scsi-core-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/usb-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-source-2.6.15_2.6.15-29.58.dsc"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ppp-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ppp-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-powerpc_2.6.15-29.58_powerpc.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/irda-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/crc-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/kernel-image-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/crc-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/firewire-core-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/jfs-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/parport-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-source-2.6.15_2.6.15-29.58_all.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ext3-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-3104"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ide-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ufs-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/fat-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/xfs-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ipv6-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-shared-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/irda-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/kernel-image-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-image-2.6.15-29-server_2.6.15-29.58_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/floppy-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/scsi-core-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/pcmcia-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ext3-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/cdrom-core-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-amd64-k8_2.6.15-29.58_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/fat-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ufs-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/crc-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2005-0504"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-server-bigiron_2.6.15-29.58_i386.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/md-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/input-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/pcmcia-storage-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nfs-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/xfs-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/input-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/linux-headers-2.6.15-29-amd64-xeon_2.6.15-29.58_amd64.deb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/irda-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/usb-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/loop-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/serial-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ext2-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ipv6-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/firewire-core-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ide-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/scsi-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/hfs-modules-2.6.15-29-powerpc-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/loop-modules-2.6.15-29-sparc64-di_2.6.15-29.58_sparc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/socket-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/sata-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/fat-modules-2.6.15-29-amd64-generic-di_2.6.15-29.58_amd64.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-firmware-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/nic-pcmcia-modules-2.6.15-29-386-di_2.6.15-29.58_i386.udeb"
          },
          {
            "trust": 0.1,
            "url": "http://security.ubuntu.com/ubuntu/pool/main/l/linux-source-2.6.15/ide-modules-2.6.15-29-powerpc64-smp-di_2.6.15-29.58_powerpc.udeb"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-1496"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-1496"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2006-5755"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2006-5755"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-1861"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-4573"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-3513"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2007-3513"
          },
          {
            "trust": 0.1,
            "url": "http://lists.grok.org.uk/full-disclosure-charter.html"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-4308"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-4573"
          },
          {
            "trust": 0.1,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2007-3848"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#267289"
          },
          {
            "db": "BID",
            "id": "23615"
          },
          {
            "db": "PACKETSTORM",
            "id": "60879"
          },
          {
            "db": "PACKETSTORM",
            "id": "56342"
          },
          {
            "db": "PACKETSTORM",
            "id": "57864"
          },
          {
            "db": "PACKETSTORM",
            "id": "58999"
          },
          {
            "db": "PACKETSTORM",
            "id": "58920"
          },
          {
            "db": "PACKETSTORM",
            "id": "60130"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200704-492"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2007-000387"
          },
          {
            "db": "NVD",
            "id": "CVE-2007-2242"
          }
        ]
      },
      "sources": {
        "_id": null,
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#267289",
            "ident": null
          },
          {
            "db": "BID",
            "id": "23615",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "60879",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "56342",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "57864",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "58999",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "58920",
            "ident": null
          },
          {
            "db": "PACKETSTORM",
            "id": "60130",
            "ident": null
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200704-492",
            "ident": null
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2007-000387",
            "ident": null
          },
          {
            "db": "NVD",
            "id": "CVE-2007-2242",
            "ident": null
          }
        ]
      },
      "sources_release_date": {
        "_id": null,
        "data": [
          {
            "date": "2007-06-01T00:00:00",
            "db": "CERT/CC",
            "id": "VU#267289",
            "ident": null
          },
          {
            "date": "2007-04-23T00:00:00",
            "db": "BID",
            "id": "23615",
            "ident": null
          },
          {
            "date": "2007-11-14T02:03:01",
            "db": "PACKETSTORM",
            "id": "60879",
            "ident": null
          },
          {
            "date": "2007-05-03T00:13:35",
            "db": "PACKETSTORM",
            "id": "56342",
            "ident": null
          },
          {
            "date": "2007-07-19T05:10:35",
            "db": "PACKETSTORM",
            "id": "57864",
            "ident": null
          },
          {
            "date": "2007-09-01T03:53:01",
            "db": "PACKETSTORM",
            "id": "58999",
            "ident": null
          },
          {
            "date": "2007-08-29T04:36:35",
            "db": "PACKETSTORM",
            "id": "58920",
            "ident": null
          },
          {
            "date": "2007-10-16T04:22:46",
            "db": "PACKETSTORM",
            "id": "60130",
            "ident": null
          },
          {
            "date": "2007-04-25T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-200704-492",
            "ident": null
          },
          {
            "date": "2007-06-01T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2007-000387",
            "ident": null
          },
          {
            "date": "2007-04-25T16:19:00",
            "db": "NVD",
            "id": "CVE-2007-2242",
            "ident": null
          }
        ]
      },
      "sources_update_date": {
        "_id": null,
        "data": [
          {
            "date": "2011-07-22T00:00:00",
            "db": "CERT/CC",
            "id": "VU#267289",
            "ident": null
          },
          {
            "date": "2008-02-08T14:46:00",
            "db": "BID",
            "id": "23615",
            "ident": null
          },
          {
            "date": "2007-04-26T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-200704-492",
            "ident": null
          },
          {
            "date": "2007-11-02T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2007-000387",
            "ident": null
          },
          {
            "date": "2025-04-09T00:30:58.490000",
            "db": "NVD",
            "id": "CVE-2007-2242",
            "ident": null
          }
        ]
      },
      "threat_type": {
        "_id": null,
        "data": "remote",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-200704-492"
          }
        ],
        "trust": 0.6
      },
      "title": {
        "_id": null,
        "data": "IPv6 Type 0 Route Headers allow sender to control routing",
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#267289"
          }
        ],
        "trust": 0.8
      },
      "type": {
        "_id": null,
        "data": "Design Error",
        "sources": [
          {
            "db": "BID",
            "id": "23615"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200704-492"
          }
        ],
        "trust": 0.9
      }
    }

    VAR-201505-0233

    Vulnerability from variot - Updated: 2025-12-22 23:16

    The TLS protocol 1.2 and earlier, when a DHE_EXPORT ciphersuite is enabled on a server but not on a client, does not properly convey a DHE_EXPORT choice, which allows man-in-the-middle attackers to conduct cipher-downgrade attacks by rewriting a ClientHello with DHE replaced by DHE_EXPORT and then rewriting a ServerHello with DHE_EXPORT replaced by DHE, aka the "Logjam" issue. TLS The protocol is DHE_EXPORT If the cipher suite is enabled on the server and not the client, DHE_EXPORT Vulnerabilities exist that allow a cryptographic algorithm downgrade attack to be performed because the client is not properly notified that is selected. This vulnerability "Logjam" It is called.Man-in-the-middle attacks (man-in-the-middle attack) By ClientHello of DHE The DHE_EXPORT And then ServerHello of DHE_EXPORT The DHE Can be used to perform a cryptographic algorithm downgrade attack. SSL/TLS is prone to security-bypass vulnerability. Successfully exploiting this issue may allow attackers to perform unauthorized actions by conducting a man-in-the-middle attack. This may lead to other attacks. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1

    ===================================================================== Red Hat Security Advisory

    Synopsis: Important: java-1.8.0-openjdk security update Advisory ID: RHSA-2015:1228-01 Product: Red Hat Enterprise Linux Advisory URL: https://rhn.redhat.com/errata/RHSA-2015-1228.html Issue date: 2015-07-15 CVE Names: CVE-2015-2590 CVE-2015-2601 CVE-2015-2621 CVE-2015-2625 CVE-2015-2628 CVE-2015-2632 CVE-2015-2659 CVE-2015-2808 CVE-2015-3149 CVE-2015-4000 CVE-2015-4731 CVE-2015-4732 CVE-2015-4733 CVE-2015-4748 CVE-2015-4749 CVE-2015-4760 =====================================================================

    1. Summary:

    Updated java-1.8.0-openjdk packages that fix multiple security issues are now available for Red Hat Enterprise Linux 6 and 7.

    Red Hat Product Security has rated this update as having Important security impact. Common Vulnerability Scoring System (CVSS) base scores, which give detailed severity ratings, are available for each vulnerability from the CVE links in the References section.

    1. Relevant releases/architectures:

    Red Hat Enterprise Linux Client (v. 7) - x86_64 Red Hat Enterprise Linux Client Optional (v. 7) - noarch, x86_64 Red Hat Enterprise Linux ComputeNode (v. 7) - x86_64 Red Hat Enterprise Linux ComputeNode Optional (v. 7) - noarch, x86_64 Red Hat Enterprise Linux Desktop (v. 6) - i386, x86_64 Red Hat Enterprise Linux Desktop Optional (v. 6) - i386, noarch, x86_64 Red Hat Enterprise Linux HPC Node (v. 6) - x86_64 Red Hat Enterprise Linux HPC Node Optional (v. 6) - noarch, x86_64 Red Hat Enterprise Linux Server (v. 6) - i386, x86_64 Red Hat Enterprise Linux Server (v. 7) - ppc64, ppc64le, s390x, x86_64 Red Hat Enterprise Linux Server Optional (v. 6) - i386, noarch, x86_64 Red Hat Enterprise Linux Server Optional (v. 7) - noarch, ppc64, ppc64le, s390x, x86_64 Red Hat Enterprise Linux Workstation (v. 6) - i386, x86_64 Red Hat Enterprise Linux Workstation (v. 7) - x86_64 Red Hat Enterprise Linux Workstation Optional (v. 6) - i386, noarch, x86_64 Red Hat Enterprise Linux Workstation Optional (v. 7) - noarch, x86_64

    1. Description:

    The java-1.8.0-openjdk packages provide the OpenJDK 8 Java Runtime Environment and the OpenJDK 8 Java Software Development Kit.

    Multiple flaws were discovered in the 2D, CORBA, JMX, Libraries and RMI components in OpenJDK. An untrusted Java application or applet could use these flaws to bypass Java sandbox restrictions. (CVE-2015-4760, CVE-2015-2628, CVE-2015-4731, CVE-2015-2590, CVE-2015-4732, CVE-2015-4733)

    A flaw was found in the way the Libraries component of OpenJDK verified Online Certificate Status Protocol (OCSP) responses. An OCSP response with no nextUpdate date specified was incorrectly handled as having unlimited validity, possibly causing a revoked X.509 certificate to be interpreted as valid. (CVE-2015-4748)

    It was discovered that the JCE component in OpenJDK failed to use constant time comparisons in multiple cases. An attacker could possibly use these flaws to disclose sensitive information by measuring the time used to perform operations using these non-constant time comparisons. (CVE-2015-2601)

    It was discovered that the GCM (Galois Counter Mode) implementation in the Security component of OpenJDK failed to properly perform a null check. This could cause the Java Virtual Machine to crash when an application performed encryption using a block cipher in the GCM mode. (CVE-2015-2659)

    A flaw was found in the RC4 encryption algorithm. When using certain keys for RC4 encryption, an attacker could obtain portions of the plain text from the cipher text without the knowledge of the encryption key. (CVE-2015-2808)

    Note: With this update, OpenJDK now disables RC4 TLS/SSL cipher suites by default to address the CVE-2015-2808 issue. Refer to Red Hat Bugzilla bug 1207101, linked to in the References section, for additional details about this change.

    A flaw was found in the way the TLS protocol composed the Diffie-Hellman (DH) key exchange. A man-in-the-middle attacker could use this flaw to force the use of weak 512 bit export-grade keys during the key exchange, allowing them do decrypt all traffic. (CVE-2015-4000)

    Note: This update forces the TLS/SSL client implementation in OpenJDK to reject DH key sizes below 768 bits, which prevents sessions to be downgraded to export-grade keys. Refer to Red Hat Bugzilla bug 1223211, linked to in the References section, for additional details about this change.

    It was discovered that the JNDI component in OpenJDK did not handle DNS resolutions correctly. An attacker able to trigger such DNS errors could cause a Java application using JNDI to consume memory and CPU time, and possibly block further DNS resolution. (CVE-2015-4749)

    Multiple information leak flaws were found in the JMX and 2D components in OpenJDK. An untrusted Java application or applet could use this flaw to bypass certain Java sandbox restrictions. (CVE-2015-2621, CVE-2015-2632)

    A flaw was found in the way the JSSE component in OpenJDK performed X.509 certificate identity verification when establishing a TLS/SSL connection to a host identified by an IP address. In certain cases, the certificate was accepted as valid if it was issued for a host name to which the IP address resolves rather than for the IP address. (CVE-2015-2625)

    Multiple insecure temporary file use issues were found in the way the Hotspot component in OpenJDK created performance statistics and error log files. A local attacker could possibly make a victim using OpenJDK overwrite arbitrary files using a symlink attack. Note: This issue was originally fixed as CVE-2015-0383, but the fix was regressed in the RHSA-2015:0809 advisory. (CVE-2015-3149)

    All users of java-1.8.0-openjdk are advised to upgrade to these updated packages, which resolve these issues. All running instances of OpenJDK Java must be restarted for the update to take effect.

    1. Solution:

    Before applying this update, make sure all previously released errata relevant to your system have been applied.

    For details on how to apply this update, refer to:

    https://access.redhat.com/articles/11258

    1. Bugs fixed (https://bugzilla.redhat.com/):

    1207101 - CVE-2015-2808 SSL/TLS: "Invariance Weakness" vulnerability in RC4 stream cipher 1213365 - CVE-2015-3149 OpenJDK8: insecure hsperfdata temporary file handling, CVE-2015-0383 regression (Hotspot) 1223211 - CVE-2015-4000 LOGJAM: TLS connections which support export grade DHE key-exchange are vulnerable to MITM attacks 1241965 - CVE-2015-2625 OpenJDK: name for reverse DNS lookup used in certificate identity check (JSSE, 8067694) 1242019 - CVE-2015-2601 OpenJDK: non-constant time comparisons in crypto code (JCE, 8074865) 1242144 - CVE-2015-2659 OpenJDK: GCM cipher issue causing JVM crash (Security, 8067648) 1242232 - CVE-2015-2628 OpenJDK: IIOPInputStream type confusion vulnerability (CORBA, 8076376) 1242234 - CVE-2015-4731 OpenJDK: improper permission checks in MBeanServerInvocationHandler (JMX, 8076397) 1242240 - CVE-2015-4732 OpenJDK: insufficient context checks during object deserialization (Libraries, 8076405) 1242275 - CVE-2015-4733 OpenJDK: RemoteObjectInvocationHandler allows calling finalize() (RMI, 8076409) 1242281 - CVE-2015-4748 OpenJDK: incorrect OCSP nextUpdate checking (Libraries, 8075374) 1242372 - CVE-2015-2621 OpenJDK: incorrect code permission checks in RMIConnectionImpl (JMX, 8075853) 1242379 - CVE-2015-4749 OpenJDK: DnsClient fails to release request information after error (JNDI, 8075378) 1242394 - CVE-2015-2632 ICU: integer overflow in LETableReference verifyLength() (OpenJDK 2D, 8077520) 1242447 - CVE-2015-4760 ICU: missing boundary checks in layout engine (OpenJDK 2D, 8071715) 1243139 - CVE-2015-2590 OpenJDK: deserialization issue in ObjectInputStream.readSerialData() (Libraries, 8076401)

    1. Package List:

    Red Hat Enterprise Linux Desktop (v. 6):

    Source: java-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.src.rpm

    i386: java-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.i686.rpm

    x86_64: java-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.x86_64.rpm

    Red Hat Enterprise Linux Desktop Optional (v. 6):

    i386: java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.i686.rpm

    noarch: java-1.8.0-openjdk-javadoc-1.8.0.51-0.b16.el6_6.noarch.rpm

    x86_64: java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.x86_64.rpm

    Red Hat Enterprise Linux HPC Node (v. 6):

    Source: java-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.src.rpm

    x86_64: java-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.x86_64.rpm

    Red Hat Enterprise Linux HPC Node Optional (v. 6):

    noarch: java-1.8.0-openjdk-javadoc-1.8.0.51-0.b16.el6_6.noarch.rpm

    x86_64: java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.x86_64.rpm

    Red Hat Enterprise Linux Server (v. 6):

    Source: java-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.src.rpm

    i386: java-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.i686.rpm

    x86_64: java-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.x86_64.rpm

    Red Hat Enterprise Linux Server Optional (v. 6):

    i386: java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.i686.rpm

    noarch: java-1.8.0-openjdk-javadoc-1.8.0.51-0.b16.el6_6.noarch.rpm

    x86_64: java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.x86_64.rpm

    Red Hat Enterprise Linux Workstation (v. 6):

    Source: java-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.src.rpm

    i386: java-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.i686.rpm

    x86_64: java-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.x86_64.rpm

    Red Hat Enterprise Linux Workstation Optional (v. 6):

    i386: java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.i686.rpm java-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.i686.rpm

    noarch: java-1.8.0-openjdk-javadoc-1.8.0.51-0.b16.el6_6.noarch.rpm

    x86_64: java-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.x86_64.rpm java-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.x86_64.rpm

    Red Hat Enterprise Linux Client (v. 7):

    Source: java-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.src.rpm

    x86_64: java-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-headless-1.8.0.51-1.b16.el7_1.x86_64.rpm

    Red Hat Enterprise Linux Client Optional (v. 7):

    noarch: java-1.8.0-openjdk-javadoc-1.8.0.51-1.b16.el7_1.noarch.rpm

    x86_64: java-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-demo-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-devel-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-src-1.8.0.51-1.b16.el7_1.x86_64.rpm

    Red Hat Enterprise Linux ComputeNode (v. 7):

    Source: java-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.src.rpm

    x86_64: java-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-headless-1.8.0.51-1.b16.el7_1.x86_64.rpm

    Red Hat Enterprise Linux ComputeNode Optional (v. 7):

    noarch: java-1.8.0-openjdk-javadoc-1.8.0.51-1.b16.el7_1.noarch.rpm

    x86_64: java-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-demo-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-devel-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-src-1.8.0.51-1.b16.el7_1.x86_64.rpm

    Red Hat Enterprise Linux Server (v. 7):

    Source: java-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.src.rpm

    ppc64: java-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.ppc64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.ppc64.rpm java-1.8.0-openjdk-devel-1.8.0.51-1.b16.el7_1.ppc64.rpm java-1.8.0-openjdk-headless-1.8.0.51-1.b16.el7_1.ppc64.rpm

    s390x: java-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.s390x.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.s390x.rpm java-1.8.0-openjdk-devel-1.8.0.51-1.b16.el7_1.s390x.rpm java-1.8.0-openjdk-headless-1.8.0.51-1.b16.el7_1.s390x.rpm

    x86_64: java-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-devel-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-headless-1.8.0.51-1.b16.el7_1.x86_64.rpm

    Red Hat Enterprise Linux Server (v. 7):

    Source: java-1.8.0-openjdk-1.8.0.51-1.b16.ael7b_1.src.rpm

    ppc64le: java-1.8.0-openjdk-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm java-1.8.0-openjdk-devel-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm java-1.8.0-openjdk-headless-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm

    Red Hat Enterprise Linux Server Optional (v. 7):

    noarch: java-1.8.0-openjdk-javadoc-1.8.0.51-1.b16.el7_1.noarch.rpm

    ppc64: java-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.el7_1.ppc64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.ppc64.rpm java-1.8.0-openjdk-demo-1.8.0.51-1.b16.el7_1.ppc64.rpm java-1.8.0-openjdk-src-1.8.0.51-1.b16.el7_1.ppc64.rpm

    s390x: java-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.el7_1.s390x.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.s390x.rpm java-1.8.0-openjdk-demo-1.8.0.51-1.b16.el7_1.s390x.rpm java-1.8.0-openjdk-src-1.8.0.51-1.b16.el7_1.s390x.rpm

    x86_64: java-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-demo-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-src-1.8.0.51-1.b16.el7_1.x86_64.rpm

    Red Hat Enterprise Linux Server Optional (v. 7):

    noarch: java-1.8.0-openjdk-javadoc-1.8.0.51-1.b16.ael7b_1.noarch.rpm

    ppc64le: java-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm java-1.8.0-openjdk-demo-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm java-1.8.0-openjdk-src-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm

    Red Hat Enterprise Linux Workstation (v. 7):

    Source: java-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.src.rpm

    x86_64: java-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-devel-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-headless-1.8.0.51-1.b16.el7_1.x86_64.rpm

    Red Hat Enterprise Linux Workstation Optional (v. 7):

    noarch: java-1.8.0-openjdk-javadoc-1.8.0.51-1.b16.el7_1.noarch.rpm

    x86_64: java-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-demo-1.8.0.51-1.b16.el7_1.x86_64.rpm java-1.8.0-openjdk-src-1.8.0.51-1.b16.el7_1.x86_64.rpm

    These packages are GPG signed by Red Hat for security. Our key and details on how to verify the signature are available from https://access.redhat.com/security/team/key/

    1. References:

    https://access.redhat.com/security/cve/CVE-2015-2590 https://access.redhat.com/security/cve/CVE-2015-2601 https://access.redhat.com/security/cve/CVE-2015-2621 https://access.redhat.com/security/cve/CVE-2015-2625 https://access.redhat.com/security/cve/CVE-2015-2628 https://access.redhat.com/security/cve/CVE-2015-2632 https://access.redhat.com/security/cve/CVE-2015-2659 https://access.redhat.com/security/cve/CVE-2015-2808 https://access.redhat.com/security/cve/CVE-2015-3149 https://access.redhat.com/security/cve/CVE-2015-4000 https://access.redhat.com/security/cve/CVE-2015-4731 https://access.redhat.com/security/cve/CVE-2015-4732 https://access.redhat.com/security/cve/CVE-2015-4733 https://access.redhat.com/security/cve/CVE-2015-4748 https://access.redhat.com/security/cve/CVE-2015-4749 https://access.redhat.com/security/cve/CVE-2015-4760 https://access.redhat.com/security/updates/classification/#important https://bugzilla.redhat.com/show_bug.cgi?id=1207101#c11 https://bugzilla.redhat.com/show_bug.cgi?id=1223211#c33

    1. Contact:

    The Red Hat security contact is secalert@redhat.com. More contact details at https://access.redhat.com/security/team/contact/

    Copyright 2015 Red Hat, Inc. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1

    iD8DBQFVpldOXlSAg2UNWIIRAu9SAJ92MiEsuPBvTxxbyV6QS9HV1Y53rQCgpe2m 01qo91WXwuMDSBGf90l0Ky4= =SsFY -----END PGP SIGNATURE-----

    -- RHSA-announce mailing list RHSA-announce@redhat.com https://www.redhat.com/mailman/listinfo/rhsa-announce .

    This release includes bug fixes and enhancements, as well as a new release of OpenSSL that addresses a number of outstanding security flaws. For further information, see the knowledge base article linked to in the References section.

    Security Fix(es):

    • A flaw was found in the way OpenSSL encoded certain ASN.1 data structures. An attacker could use this flaw to create a specially crafted certificate which, when verified or re-encoded by OpenSSL, could cause it to crash, or execute arbitrary code using the permissions of the user running an application compiled against the OpenSSL library. (CVE-2016-2108)

    • Multiple flaws were found in the way httpd parsed HTTP requests and responses using chunked transfer encoding. A remote attacker could use these flaws to create a specially crafted request, which httpd would decode differently from an HTTP proxy software in front of it, possibly leading to HTTP request smuggling attacks. (CVE-2015-3183)

    • A memory leak vulnerability was found in the way OpenSSL parsed PKCS#7 and CMS data. A remote attacker could use this flaw to cause an application that parses PKCS#7 or CMS data from untrusted sources to use an excessive amount of memory and possibly crash. (CVE-2015-4000)

    • An integer overflow flaw, leading to a buffer overflow, was found in the way the EVP_EncodeUpdate() function of OpenSSL parsed very large amounts of input data. A remote attacker could use this flaw to crash an application using OpenSSL or, possibly, execute arbitrary code with the permissions of the user running that application. (CVE-2016-2105)

    • An integer overflow flaw, leading to a buffer overflow, was found in the way the EVP_EncryptUpdate() function of OpenSSL parsed very large amounts of input data. A remote attacker could use this flaw to crash an application using OpenSSL or, possibly, execute arbitrary code with the permissions of the user running that application. (CVE-2016-2106)

    • It was discovered that it is possible to remotely Segfault Apache http server with a specially crafted string sent to the mod_cluster via service messages (MCMP). (CVE-2016-3110)

    • A denial of service flaw was found in the way OpenSSL parsed certain ASN.1-encoded data from BIO (OpenSSL's I/O abstraction) inputs. An application using OpenSSL that accepts untrusted ASN.1 BIO input could be forced to allocate an excessive amount of data. (CVE-2016-2109)

    • It was discovered that specifying configuration with a JVMRoute path longer than 80 characters will cause segmentation fault leading to a server crash. (CVE-2016-4459)

    Red Hat would like to thank the OpenSSL project for reporting CVE-2016-2108, CVE-2016-2105, and CVE-2016-2106 and Michal Karm Babacek for reporting CVE-2016-3110. Upstream acknowledges Huzaifa Sidhpurwala (Red Hat), Hanno BAPck, and David Benjamin (Google) as the original reporters of CVE-2016-2108; and Guido Vranken as the original reporter of CVE-2016-2105 and CVE-2016-2106. Bugs fixed (https://bugzilla.redhat.com/):

    1223211 - CVE-2015-4000 LOGJAM: TLS connections which support export grade DHE key-exchange are vulnerable to MITM attacks 1243887 - CVE-2015-3183 httpd: HTTP request smuggling attack against chunked request parser 1288322 - CVE-2015-3195 OpenSSL: X509_ATTRIBUTE memory leak 1326320 - CVE-2016-3110 mod_cluster: remotely Segfault Apache http server 1330101 - CVE-2016-2109 openssl: ASN.1 BIO handling of large amounts of data 1331402 - CVE-2016-2108 openssl: Memory corruption in the ASN.1 encoder 1331441 - CVE-2016-2105 openssl: EVP_EncodeUpdate overflow 1331536 - CVE-2016-2106 openssl: EVP_EncryptUpdate overflow 1341583 - CVE-2016-4459 mod_cluster: Buffer overflow in mod_manager when sending request with long JVMRoute 1345987 - RHEL6 RPMs: Upgrade mod_cluster-native to 1.2.13.Final-redhat-1 1345991 - RHEL6 RPMs: Upgrade mod_jk to 1.2.41.redhat-1 1345995 - RHEL6 RPMs: Upgrade tomcat-native to 1.1.34

    1. HP Service Health Reporter v9.20, v9.30, v9.31, v9.32, and v9.40. There is a security vulnerability in the TLS protocol 1.2 and earlier versions. The vulnerability comes from that when the server enables the DHE_EXPORT cipher suite, the program does not pass the DHE_EXPORT option correctly. ============================================================================ Ubuntu Security Notice USN-2656-2 July 15, 2015

    firefox vulnerabilities

    A security issue affects these releases of Ubuntu and its derivatives:

    • Ubuntu 12.04 LTS

    Summary:

    Firefox could be made to crash or run programs as your login if it opened a malicious website.

    Software Description: - firefox: Mozilla Open Source web browser

    Details:

    USN-2656-1 fixed vulnerabilities in Firefox for Ubuntu 14.04 LTS and later releases.

    This update provides the corresponding update for Ubuntu 12.04 LTS.

    Original advisory details:

    Karthikeyan Bhargavan discovered that NSS incorrectly handled state transitions for the TLS state machine. (CVE-2015-2721)

    Looben Yan discovered 2 use-after-free issues when using XMLHttpRequest in some circumstances. (CVE-2015-2722, CVE-2015-2733)

    Bob Clary, Christian Holler, Bobby Holley, Andrew McCreight, Terrence Cole, Steve Fink, Mats Palmgren, Wes Kocher, Andreas Pehrson, Tooru Fujisawa, Andrew Sutherland, and Gary Kwong discovered multiple memory safety issues in Firefox. (CVE-2015-2724, CVE-2015-2725, CVE-2015-2726)

    Armin Razmdjou discovered that opening hyperlinks with specific mouse and key combinations could allow a Chrome privileged URL to be opened without context restrictions being preserved. If a user were tricked in to opening a specially crafted website, an attacker could potentially exploit this to bypass security restrictions. (CVE-2015-2727)

    Paul Bandha discovered a type confusion bug in the Indexed DB Manager. (CVE-2015-2728)

    Holger Fuhrmannek discovered an out-of-bounds read in Web Audio. If a user were tricked in to opening a specially crafted website, an attacker could potentially exploit this to obtain sensitive information. (CVE-2015-2729)

    Watson Ladd discovered that NSS incorrectly handled Elliptical Curve Cryptography (ECC) multiplication. A remote attacker could possibly use this issue to spoof ECDSA signatures. (CVE-2015-2730)

    A use-after-free was discovered when a Content Policy modifies the DOM to remove a DOM object. (CVE-2015-2731)

    Ronald Crane discovered multiple security vulnerabilities. (CVE-2015-2734, CVE-2015-2735, CVE-2015-2736, CVE-2015-2737, CVE-2015-2738, CVE-2015-2739, CVE-2015-2740)

    David Keeler discovered that key pinning checks can be skipped when an overridable certificate error occurs. This allows a user to manually override an error for a fake certificate, but cannot be exploited on its own. (CVE-2015-2741)

    Jonas Jenwald discovered that some internal workers were incorrectly executed with a high privilege. An attacker could potentially exploit this to impersonate the server. (CVE-2015-4000)

    Update instructions:

    The problem can be corrected by updating your system to the following package versions:

    Ubuntu 12.04 LTS: firefox 39.0+build5-0ubuntu0.12.04.2

    After a standard system update you need to restart Firefox to make all the necessary changes. 6) - i386, x86_64

    IBM Java SDK and JRE 5.0 will not receive software updates after September 2015. This date is referred to as the End of Service (EOS) date. Customers are advised to migrate to current versions of IBM Java at this time. IBM Java SDK and JRE versions 6 and 7 are available via the Red Hat Enterprise Linux 5 and 6 Supplementary content sets and will continue to receive updates based on IBM's lifecycle policy, linked to in the References section.

    Customers can also consider OpenJDK, an open source implementation of the Java SE specification. OpenJDK is available by default on supported hardware architectures.

    Release Date: 2015-08-05 Last Updated: 2015-08-05

    Potential Security Impact: Remote disclosure of information

    Source: Hewlett-Packard Company, HP Software Security Response Team

    VULNERABILITY SUMMARY A potential security vulnerability has been identified with HP-UX running OpenSSL with SSL/TLS enabled. CVE-2015-1788: Malformed ECParameters causes infinite loop. CVE-2015-1790: PKCS7 crash with missing EnvelopedContent CVE-2015-1791: Race condition handling NewSessionTicket CVE-2015-1792: CMS verify infinite loop with unknown hash function CVE-2015-1793: Alternative Chain Certificate Forgery. HP-UX B.11.31 running OpenSSL 1.0.1m or earlier.

    BACKGROUND

    CVSS 2.0 Base Metrics

    Reference Base Vector Base Score CVE-2015-4000 (AV:N/AC:M/Au:N/C:N/I:P/A:N) 4.3 CVE-2015-1788 (AV:N/AC:M/Au:N/C:N/I:N/A:P) 4.3 CVE-2015-1789 (AV:N/AC:M/Au:N/C:N/I:N/A:P) 4.3 CVE-2015-1790 (AV:N/AC:L/Au:N/C:N/I:N/A:P) 5.0 CVE-2015-1791 (AV:N/AC:M/Au:N/C:P/I:P/A:P) 6.8 CVE-2015-1792 (AV:N/AC:L/Au:N/C:N/I:N/A:P) 5.0 CVE-2015-1793 (AV:N/AC:L/Au:N/C:P/I:P/A:N) 6.4 =========================================================== Information on CVSS is documented in HP Customer Notice: HPSN-2008-002

    RESOLUTION

    HP has provided an updated version of OpenSSL to resolve this vulnerability.

    A new B.11.31 depot for OpenSSL_A.01.00.01p is available here:

    https://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber =OPENSSL11I

    MANUAL ACTIONS: Yes - Update

    PRODUCT SPECIFIC INFORMATION

    HP-UX Software Assistant: HP-UX Software Assistant is an enhanced application that replaces HP-UX Security Patch Check. It analyzes all Security Bulletins issued by HP and lists recommended actions that may apply to a specific HP-UX system. It can also download patches and create a depot automatically. For more information see: https://www.hp.com/go/swa The following text is for use by the HP-UX Software Assistant.

    AFFECTED VERSIONS

    HP-UX B.11.31

    openssl.OPENSSL-CER openssl.OPENSSL-CONF openssl.OPENSSL-DOC openssl.OPENSSL-INC openssl.OPENSSL-LIB openssl.OPENSSL-MAN openssl.OPENSSL-MIS openssl.OPENSSL-PRNG openssl.OPENSSL-PVT openssl.OPENSSL-RUN openssl.OPENSSL-SRC action: install revision A.01.00.01p or subsequent

    END AFFECTED VERSIONS

    HISTORY Version:1 (rev.1) - 5 August 2015 Initial release

    Third Party Security Patches: Third party security patches that are to be installed on systems running HP software products should be applied in accordance with the customer's patch management policy.

    Support: For issues about implementing the recommendations of this Security Bulletin, contact normal HP Services support channel. For other issues about the content of this Security Bulletin, send e-mail to security-alert@hp.com.

    Report: To report a potential security vulnerability with any HP supported product, send Email to: security-alert@hp.com

    Subscribe: To initiate a subscription to receive future HP Security Bulletin alerts via Email: http://h41183.www4.hp.com/signup_alerts.php?jumpid=hpsc_secbulletins

    Security Bulletin Archive: A list of recently released Security Bulletins is available here: https://h20564.www2.hp.com/portal/site/hpsc/public/kb/secBullArchive/

    Software Product Category: The Software Product Category is represented in the title by the two characters following HPSB.

    3C = 3COM 3P = 3rd Party Software GN = HP General Software HF = HP Hardware and Firmware MP = MPE/iX MU = Multi-Platform Software NS = NonStop Servers OV = OpenVMS PI = Printing and Imaging PV = ProCurve ST = Storage Software TU = Tru64 UNIX UX = HP-UX

    Copyright 2015 Hewlett-Packard Development Company, L.P. Hewlett-Packard Company shall not be liable for technical or editorial errors or omissions contained herein. The information provided is provided "as is" without warranty of any kind. To the extent permitted by law, neither HP or its affiliates, subcontractors or suppliers will be liable for incidental,special or consequential damages including downtime cost; lost profits; damages relating to the procurement of substitute products or services; or damages for loss of data, or software restoration. The information in this document is subject to change without notice. Hewlett-Packard Company and the names of Hewlett-Packard products referenced herein are trademarks of Hewlett-Packard Company in the United States and other countries. Other product and company names mentioned herein may be trademarks of their respective owners.

    CVE-2015-4000

    David Adrian et al. reported that it may be feasible to attack
    Diffie-Hellman-based cipher suites in certain circumstances,
    compromising the confidentiality and integrity of data encrypted
    with Transport Layer Security (TLS).
    

    CVE-2015-7181 CVE-2015-7182 CVE-2016-1950

    Tyson Smith, David Keeler, and Francis Gabriel discovered
    heap-based buffer overflows in the ASN.1 DER parser, potentially
    leading to arbitrary code execution.
    

    CVE-2015-7575

    Karthikeyan Bhargavan discovered that TLS client implementation
    accepted MD5-based signatures for TLS 1.2 connections with forward
    secrecy, weakening the intended security strength of TLS
    connections.
    

    CVE-2016-1938

    Hanno Boeck discovered that NSS miscomputed the result of integer
    division for certain inputs.  This could weaken the cryptographic
    protections provided by NSS.  However, NSS implements RSA-CRT leak
    hardening, so RSA private keys are not directly disclosed by this
    issue.
    

    CVE-2016-1978

    Eric Rescorla discovered a user-after-free vulnerability in the
    implementation of ECDH-based TLS handshakes, with unknown
    consequences.
    

    CVE-2016-1979

    Tim Taubert discovered a use-after-free vulnerability in ASN.1 DER
    processing, with application-specific impact.
    

    CVE-2016-2834

    Tyson Smith and Jed Davis discovered unspecified memory-safety
    bugs in NSS.
    

    In addition, the NSS library did not ignore environment variables in processes which underwent a SUID/SGID/AT_SECURE transition at process start. In certain system configurations, this allowed local users to escalate their privileges.

    For the stable distribution (jessie), these problems have been fixed in version 2:3.26-1+debu8u1.

    For the unstable distribution (sid), these problems have been fixed in version 2:3.23-1.

    We recommend that you upgrade your nss packages. HP Performance Manager v9.0x and v9.20. OpenSSL Security Advisory [28th Jan 2016] =========================================

    NOTE: SUPPORT FOR VERSION 1.0.1 WILL BE ENDING ON 31ST DECEMBER 2016. NO SECURITY FIXES WILL BE PROVIDED AFTER THAT DATE. UNTIL THAT TIME SECURITY FIXES ONLY ARE BEING APPLIED.

    DH small subgroups (CVE-2016-0701)

    Severity: High

    Historically OpenSSL usually only ever generated DH parameters based on "safe" primes. More recently (in version 1.0.2) support was provided for generating X9.42 style parameter files such as those required for RFC 5114 support. The primes used in such files may not be "safe". Where an application is using DH configured with parameters based on primes that are not "safe" then an attacker could use this fact to find a peer's private DH exponent. This attack requires that the attacker complete multiple handshakes in which the peer uses the same private DH exponent. For example this could be used to discover a TLS server's private DH exponent if it's reusing the private DH exponent or it's using a static DH ciphersuite.

    OpenSSL provides the option SSL_OP_SINGLE_DH_USE for ephemeral DH (DHE) in TLS. It is not on by default. If the option is not set then the server reuses the same private DH exponent for the life of the server process and would be vulnerable to this attack. It is believed that many popular applications do set this option and would therefore not be at risk.

    OpenSSL before 1.0.2f will reuse the key if: - SSL_CTX_set_tmp_dh()/SSL_set_tmp_dh() is used and SSL_OP_SINGLE_DH_USE is not set. - SSL_CTX_set_tmp_dh_callback()/SSL_set_tmp_dh_callback() is used, and both the parameters and the key are set and SSL_OP_SINGLE_DH_USE is not used. This is an undocumted feature and parameter files don't contain the key. - Static DH ciphersuites are used. The key is part of the certificate and so it will always reuse it. This is only supported in 1.0.2.

    It will not reuse the key for DHE ciphers suites if: - SSL_OP_SINGLE_DH_USE is set - SSL_CTX_set_tmp_dh_callback()/SSL_set_tmp_dh_callback() is used and the callback does not provide the key, only the parameters. The callback is almost always used like this.

    Non-safe primes are generated by OpenSSL when using: - genpkey with the dh_rfc5114 option. This will write an X9.42 style file including the prime-order subgroup size "q". This is supported since the 1.0.2 version. Older versions can't read files generated in this way. - dhparam with the -dsaparam option. This has always been documented as requiring the single use.

    The fix for this issue adds an additional check where a "q" parameter is available (as is the case in X9.42 based parameters). This detects the only known attack, and is the only possible defense for static DH ciphersuites. This could have some performance impact.

    Additionally the SSL_OP_SINGLE_DH_USE option has been switched on by default and cannot be disabled. This could have some performance impact.

    This issue affects OpenSSL version 1.0.2.

    OpenSSL 1.0.2 users should upgrade to 1.0.2f

    OpenSSL 1.0.1 is not affected by this CVE because it does not support X9.42 based parameters. It is possible to generate parameters using non "safe" primes, but this option has always been documented as requiring single use and is not the default or believed to be common. However, as a precaution, the SSL_OP_SINGLE_DH_USE change has also been backported to 1.0.1r.

    This issue was reported to OpenSSL on 12 January 2016 by Antonio Sanso (Adobe). The fix was developed by Matt Caswell of the OpenSSL development team (incorporating some work originally written by Stephen Henson of the OpenSSL core team).

    SSLv2 doesn't block disabled ciphers (CVE-2015-3197)

    Severity: Low

    A malicious client can negotiate SSLv2 ciphers that have been disabled on the server and complete SSLv2 handshakes even if all SSLv2 ciphers have been disabled, provided that the SSLv2 protocol was not also disabled via SSL_OP_NO_SSLv2.

    This issue affects OpenSSL versions 1.0.2 and 1.0.1.

    OpenSSL 1.0.2 users should upgrade to 1.0.2f OpenSSL 1.0.1 users should upgrade to 1.0.1r

    This issue was reported to OpenSSL on 26th December 2015 by Nimrod Aviram and Sebastian Schinzel. The fix was developed by Nimrod Aviram with further development by Viktor Dukhovni of the OpenSSL development team.

    An update on DHE man-in-the-middle protection (Logjam)

    A previously published vulnerability in the TLS protocol allows a man-in-the-middle attacker to downgrade vulnerable TLS connections using ephemeral Diffie-Hellman key exchange to 512-bit export-grade cryptography. This vulnerability is known as Logjam (CVE-2015-4000). OpenSSL added Logjam mitigation for TLS clients by rejecting handshakes with DH parameters shorter than 768 bits in releases 1.0.2b and 1.0.1n.

    This limit has been increased to 1024 bits in this release, to offer stronger cryptographic assurance for all TLS connections using ephemeral Diffie-Hellman key exchange.

    OpenSSL 1.0.2 users should upgrade to 1.0.2f OpenSSL 1.0.1 users should upgrade to 1.0.1r

    The fix was developed by Kurt Roeckx of the OpenSSL development team.

    Note

    As per our previous announcements and our Release Strategy (https://www.openssl.org/policies/releasestrat.html), support for OpenSSL version 1.0.1 will cease on 31st December 2016. No security updates for that version will be provided after that date.

    Support for versions 0.9.8 and 1.0.0 ended on 31st December 2015. Those versions are no longer receiving security updates.

    References

    URL for this Security Advisory: https://www.openssl.org/news/secadv/20160128.txt

    Note: the online version of the advisory may be updated with additional details over time.

    For details of OpenSSL severity classifications please see: https://www.openssl.org/policies/secpolicy.html

    . HP Operations Agent Virtual Appliance v11.11, v11.12, v11.13, v11.14

    Show details on source website

    {
      "@context": {
        "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#",
        "affected_products": {
          "@id": "https://www.variotdbs.pl/ref/affected_products"
        },
        "configurations": {
          "@id": "https://www.variotdbs.pl/ref/configurations"
        },
        "credits": {
          "@id": "https://www.variotdbs.pl/ref/credits"
        },
        "cvss": {
          "@id": "https://www.variotdbs.pl/ref/cvss/"
        },
        "description": {
          "@id": "https://www.variotdbs.pl/ref/description/"
        },
        "exploit_availability": {
          "@id": "https://www.variotdbs.pl/ref/exploit_availability/"
        },
        "external_ids": {
          "@id": "https://www.variotdbs.pl/ref/external_ids/"
        },
        "iot": {
          "@id": "https://www.variotdbs.pl/ref/iot/"
        },
        "iot_taxonomy": {
          "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/"
        },
        "patch": {
          "@id": "https://www.variotdbs.pl/ref/patch/"
        },
        "problemtype_data": {
          "@id": "https://www.variotdbs.pl/ref/problemtype_data/"
        },
        "references": {
          "@id": "https://www.variotdbs.pl/ref/references/"
        },
        "sources": {
          "@id": "https://www.variotdbs.pl/ref/sources/"
        },
        "sources_release_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_release_date/"
        },
        "sources_update_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_update_date/"
        },
        "threat_type": {
          "@id": "https://www.variotdbs.pl/ref/threat_type/"
        },
        "title": {
          "@id": "https://www.variotdbs.pl/ref/title/"
        },
        "type": {
          "@id": "https://www.variotdbs.pl/ref/type/"
        }
      },
      "@id": "https://www.variotdbs.pl/vuln/VAR-201505-0233",
      "affected_products": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/affected_products#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "model": "jre 1.7.0 17",
            "scope": null,
            "trust": 1.8,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jrockit",
            "scope": "eq",
            "trust": 1.8,
            "vendor": "oracle",
            "version": "r28.3.6"
          },
          {
            "model": "jdk",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "oracle",
            "version": "1.8.0"
          },
          {
            "model": "jre",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "oracle",
            "version": "1.8.0"
          },
          {
            "model": "jdk 1.7.0 17",
            "scope": null,
            "trust": 1.5,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.7.0 13",
            "scope": null,
            "trust": 1.5,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0 45",
            "scope": null,
            "trust": 1.5,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 43",
            "scope": null,
            "trust": 1.5,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.6.0 39",
            "scope": null,
            "trust": 1.5,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 1.2,
            "vendor": "oracle",
            "version": "1.7.072"
          },
          {
            "model": "jdk 1.7.0 45",
            "scope": null,
            "trust": 1.2,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 1.2,
            "vendor": "oracle",
            "version": "1.7.072"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 1.2,
            "vendor": "oracle",
            "version": "1.8.025"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 1.2,
            "vendor": "oracle",
            "version": "1.6.085"
          },
          {
            "model": "jdk 1.6.0 43",
            "scope": null,
            "trust": 1.2,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 38",
            "scope": null,
            "trust": 1.2,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 1.2,
            "vendor": "oracle",
            "version": "1.6.085"
          },
          {
            "model": "jre 1.7.0 13",
            "scope": null,
            "trust": 1.2,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 1.2,
            "vendor": "oracle",
            "version": "1.8.025"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "mozilla",
            "version": "31.8"
          },
          {
            "model": "sparc-opl service processor",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "oracle",
            "version": "1121"
          },
          {
            "model": "jdk",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "oracle",
            "version": "1.6.0"
          },
          {
            "model": "ubuntu linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "canonical",
            "version": "14.10"
          },
          {
            "model": "linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "debian",
            "version": "7.0"
          },
          {
            "model": "hp-ux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "hp",
            "version": "b.11.31"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "mozilla",
            "version": "31.8"
          },
          {
            "model": "linux enterprise desktop",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "suse",
            "version": "12"
          },
          {
            "model": "openssl",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "openssl",
            "version": "1.0.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "mozilla",
            "version": "39.0"
          },
          {
            "model": "network security services",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "mozilla",
            "version": "3.19"
          },
          {
            "model": "iphone os",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "apple",
            "version": "8.3"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "mozilla",
            "version": "2.35"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "mozilla",
            "version": "38.1.0"
          },
          {
            "model": "ubuntu linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "canonical",
            "version": "15.04"
          },
          {
            "model": "firefox os",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "mozilla",
            "version": "2.2"
          },
          {
            "model": "jre",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "oracle",
            "version": "1.6.0"
          },
          {
            "model": "ubuntu linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "canonical",
            "version": "12.04"
          },
          {
            "model": "linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "debian",
            "version": "8.0"
          },
          {
            "model": "safari",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "apple",
            "version": null
          },
          {
            "model": "openssl",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "openssl",
            "version": "1.0.2a"
          },
          {
            "model": "mac os x",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "apple",
            "version": "10.10.3"
          },
          {
            "model": "openssl",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "openssl",
            "version": "1.0.1m"
          },
          {
            "model": "jdk",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "mozilla",
            "version": "38.1"
          },
          {
            "model": "ubuntu linux",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "canonical",
            "version": "14.04"
          },
          {
            "model": "openssl",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "openssl",
            "version": "1.0.1"
          },
          {
            "model": "internet explorer",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "chrome",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "google",
            "version": null
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "mozilla",
            "version": null
          },
          {
            "model": "content manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "linux enterprise software development kit",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "suse",
            "version": "12"
          },
          {
            "model": "linux enterprise server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "suse",
            "version": "11.0"
          },
          {
            "model": "browser",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "opera",
            "version": null
          },
          {
            "model": "linux enterprise server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "suse",
            "version": "12"
          },
          {
            "model": "jre 1.7.0 8",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.7.0 21",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.6.081"
          },
          {
            "model": "jdk 1.6.0 40",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 65",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.6.0 41",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.6.0:update 75",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.7.0:update 60",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0 2",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 41",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.6.081"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.845"
          },
          {
            "model": "jre 1.6.0:update 75",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.840"
          },
          {
            "model": "jre 1.6.0 39",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 23",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.6.0 60",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0 51",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.691"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.695"
          },
          {
            "model": "jre 1.8.0:update 5",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 28",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.845"
          },
          {
            "model": "jdk 1.8.0:update 5",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 60",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0 4",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.776"
          },
          {
            "model": "jdk 1.6.0 28",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 26",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.7.0 10",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.7.0 14",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0 10",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.6.0 45",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0 15",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0 21",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 71",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0 40",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 40",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.780"
          },
          {
            "model": "jdk 1.6.0 24",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.7.0 25",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.6.0 32",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.7.0 2",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 24",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0 12",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0 9",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 22",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 32",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.7.0 8",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0 25",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.6.0 37",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 27",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.840"
          },
          {
            "model": "jdk 1.6.0 30",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.6.0 45",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.7.0 51",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.695"
          },
          {
            "model": "jdk 1.6.0 71",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.8.020"
          },
          {
            "model": "jdk 1.7.0 40",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.6.0 26",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.7.0 15",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0 14",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.7"
          },
          {
            "model": "jre 1.6.0 30",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.7.0 11",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.691"
          },
          {
            "model": "jdk 1.6.0 25",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.6.0 23",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.6.0 65",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.6.0 27",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0:update 60",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.7.067"
          },
          {
            "model": "jdk 1.7.0 12",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre 1.7.0 11",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.7.0 4",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.7.067"
          },
          {
            "model": "jdk 1.6.0 22",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.776"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.8.020"
          },
          {
            "model": "jre 1.6.0 25",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk 1.7.0 9",
            "scope": null,
            "trust": 0.9,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.9,
            "vendor": "oracle",
            "version": "1.780"
          },
          {
            "model": "chrome",
            "scope": null,
            "trust": 0.8,
            "vendor": "google",
            "version": null
          },
          {
            "model": "firefox",
            "scope": null,
            "trust": 0.8,
            "vendor": "mozilla",
            "version": null
          },
          {
            "model": "opera",
            "scope": null,
            "trust": 0.8,
            "vendor": "opera asa",
            "version": null
          },
          {
            "model": "mac os x",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "apple",
            "version": "10.10 to  10.10.3"
          },
          {
            "model": "ios",
            "scope": "lt",
            "trust": 0.8,
            "vendor": "apple",
            "version": "8.4   (ipad 2 or later )"
          },
          {
            "model": "ios",
            "scope": "lt",
            "trust": 0.8,
            "vendor": "apple",
            "version": "8.4   (iphone 4s or later )"
          },
          {
            "model": "ios",
            "scope": "lt",
            "trust": 0.8,
            "vendor": "apple",
            "version": "8.4   (ipod touch first  5 after generation )"
          },
          {
            "model": "safari",
            "scope": null,
            "trust": 0.8,
            "vendor": "apple",
            "version": null
          },
          {
            "model": "jdk",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "6 update 95"
          },
          {
            "model": "jdk",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "7 update 80"
          },
          {
            "model": "jdk",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "8 update 45"
          },
          {
            "model": "jre",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "6 update 95"
          },
          {
            "model": "jre",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "7 update 80"
          },
          {
            "model": "jre",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "8 update 45"
          },
          {
            "model": "communications applications",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "of  oracle communications messaging server 7.0.5"
          },
          {
            "model": "communications applications",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "of  oracle communications messaging server 8.0"
          },
          {
            "model": "glassfish server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "2.1.1"
          },
          {
            "model": "iplanet web proxy server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "4.0"
          },
          {
            "model": "iplanet web server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "7.0"
          },
          {
            "model": "java se",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "embedded 7 update 75"
          },
          {
            "model": "java se",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "embedded 8 update 33"
          },
          {
            "model": "opensso",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "3.0-0.7"
          },
          {
            "model": "traffic director",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "11.1.1.7.0"
          },
          {
            "model": "traffic director",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "11.1.1.9.0"
          },
          {
            "model": "virtualization",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "of  oracle secure global desktop 4.63"
          },
          {
            "model": "virtualization",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "of  oracle secure global desktop 4.71"
          },
          {
            "model": "virtualization",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "of  oracle secure global desktop 5.2"
          },
          {
            "model": "sparc enterprise m3000 server",
            "scope": null,
            "trust": 0.8,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "sparc enterprise m4000 server",
            "scope": null,
            "trust": 0.8,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "sparc enterprise m5000 server",
            "scope": null,
            "trust": 0.8,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "sparc enterprise m8000 server",
            "scope": null,
            "trust": 0.8,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "sparc enterprise m9000 server",
            "scope": null,
            "trust": 0.8,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "xcp",
            "scope": "lt",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "1121   (sparc enterprise m3000/m4000/m5000/m8000/m9000 server )"
          },
          {
            "model": "xcp",
            "scope": "lt",
            "trust": 0.8,
            "vendor": "oracle",
            "version": "2271   (fujitsu m10-1/m10-4/m10-4s server )"
          },
          {
            "model": "internet explorer",
            "scope": null,
            "trust": 0.8,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "capssuite",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "v3.0 to  v4.0 manager component"
          },
          {
            "model": "enterprisedirectoryserver",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "ver7.1 before"
          },
          {
            "model": "express5800",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "/sg series  intersecvm/sg v1.2"
          },
          {
            "model": "express5800",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "v3.0"
          },
          {
            "model": "express5800",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "v3.1"
          },
          {
            "model": "express5800",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "v4.0"
          },
          {
            "model": "express5800",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "/sg series  sg3600lm/lg/lj v6.1"
          },
          {
            "model": "express5800",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "v6.2"
          },
          {
            "model": "express5800",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "v7.0"
          },
          {
            "model": "express5800",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "v7.1"
          },
          {
            "model": "express5800",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "v8.0"
          },
          {
            "model": "express5800",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "/sg series  univerge sg3000lg/lj"
          },
          {
            "model": "ip38x/n500",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "all revisions"
          },
          {
            "model": "istorage",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "hs series"
          },
          {
            "model": "istorage",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "nv7400/nv5400/nv3400 series"
          },
          {
            "model": "istorage",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "nv7500/nv5500/nv3500 series"
          },
          {
            "model": "ix2000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "model": "ix3000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "model": "secureware/pki application development kit",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "ver3.0"
          },
          {
            "model": "secureware/pki application development kit",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "ver3.01"
          },
          {
            "model": "secureware/pki application development kit",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "ver3.02"
          },
          {
            "model": "secureware/pki application development kit",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "ver3.1"
          },
          {
            "model": "univerge",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "3c cmm"
          },
          {
            "model": "univerge",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "3c ucm"
          },
          {
            "model": "webotx",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "enterprise edition v4.2 to  v6.5"
          },
          {
            "model": "webotx",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "standard edition v4.2 to  v6.5"
          },
          {
            "model": "webotx",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "standard-j edition v4.1 to  v6.5"
          },
          {
            "model": "webotx",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "uddi registry v1.1 to  v7.1"
          },
          {
            "model": "webotx",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "web edition v4.1 to  v6.5"
          },
          {
            "model": "webotx application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "enterprise edition v7.1"
          },
          {
            "model": "webotx application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "enterprise v8.2 to  v9.2"
          },
          {
            "model": "webotx application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "express v8.2 to  v9.2"
          },
          {
            "model": "webotx application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "foundation v8.2 to  v8.5"
          },
          {
            "model": "webotx application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "standard edition v7.1"
          },
          {
            "model": "webotx application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "standard v8.2 to  v9.2"
          },
          {
            "model": "webotx application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "standard-j edition v7.1 to  v8.1"
          },
          {
            "model": "webotx application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "web edition v7.1 to  v8.1"
          },
          {
            "model": "webotx enterprise service bus",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "v6.4 to  v9.2"
          },
          {
            "model": "webotx portal",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "v8.2 to  v9.1"
          },
          {
            "model": "webotx sip application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "standard edition v7.1 to  v8.1"
          },
          {
            "model": "websam",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "application navigator agent ver3.3 to  ver4.1"
          },
          {
            "model": "websam",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "application navigator manager ver3.2.2 to  ver4.1"
          },
          {
            "model": "websam",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "application navigator probe option ver3.1.0.x to  ver4.1.0.x"
          },
          {
            "model": "websam",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "jobcenter r14.1"
          },
          {
            "model": "websam",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "mcoperations ver3.6.2 to  ver4.2"
          },
          {
            "model": "websam",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "systemmanager ver5.5.2 to  ver6.2.1"
          },
          {
            "model": "cosminexus developer\u0027s kit for java",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "ha8000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "ha8500 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "application server",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "application server for developers",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "developer\u0027s kit for java",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "ucosminexus application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "none"
          },
          {
            "model": "ucosminexus application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "-r"
          },
          {
            "model": "ucosminexus application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "express"
          },
          {
            "model": "ucosminexus application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "light"
          },
          {
            "model": "ucosminexus application server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "standard-r"
          },
          {
            "model": "ucosminexus application server enterprise",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "ucosminexus application server smart edition",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "ucosminexus application server standard",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "ucosminexus client",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "none"
          },
          {
            "model": "ucosminexus client",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "for plug-in"
          },
          {
            "model": "ucosminexus developer",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "none"
          },
          {
            "model": "ucosminexus developer",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "01"
          },
          {
            "model": "ucosminexus developer",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "professional"
          },
          {
            "model": "ucosminexus developer",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "professional for plug-in"
          },
          {
            "model": "ucosminexus developer light",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "ucosminexus developer standard",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "ucosminexus operator",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "none"
          },
          {
            "model": "ucosminexus operator",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "for service platform"
          },
          {
            "model": "ucosminexus primary server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "base"
          },
          {
            "model": "ucosminexus server",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "standard-r"
          },
          {
            "model": "ucosminexus service architect",
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "ucosminexus service platform",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "none"
          },
          {
            "model": "ucosminexus service platform",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "- messaging"
          },
          {
            "model": "ups management software",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "powerchute business edition"
          },
          {
            "model": "ups management software",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "powerchute network shutdown"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "oracle",
            "version": "1.6.034"
          },
          {
            "model": "jre",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "oracle",
            "version": "1.8"
          },
          {
            "model": "jdk 1.6.0 38",
            "scope": null,
            "trust": 0.6,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "oracle",
            "version": "1.6.035"
          },
          {
            "model": "jdk 1.6.0 34",
            "scope": null,
            "trust": 0.6,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jrockit r28.2.3",
            "scope": null,
            "trust": 0.6,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jdk",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "oracle",
            "version": "1.8"
          },
          {
            "model": "jrockit r27.7.2",
            "scope": null,
            "trust": 0.6,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "oracle",
            "version": "1.6.041"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "13.0"
          },
          {
            "model": "rational doors next generation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.3"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.30"
          },
          {
            "model": "ts7720 virtualization engine 3957-veb",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "security network intrusion prevention system gx5208-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.039"
          },
          {
            "model": "jdk update17",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.1"
          },
          {
            "model": "security access manager for web",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0"
          },
          {
            "model": "db2 workgroup server edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.7"
          },
          {
            "model": "emptoris supplier lifecycle management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.2.6"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.1"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.21"
          },
          {
            "model": "spss modeler",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "15.0.0.3"
          },
          {
            "model": "sparc enterprise m5000 xcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1118"
          },
          {
            "model": "rational developer for power systems software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1.6"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.8"
          },
          {
            "model": "tivoli netcool system service monitor fp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0"
          },
          {
            "model": "enterprise linux server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.9"
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.6.0"
          },
          {
            "model": "rational developer for power systems software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1"
          },
          {
            "model": "oncommand performance manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netapp",
            "version": "0"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.18"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5.6"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0.2"
          },
          {
            "model": "security network intrusion prevention system gx5008",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0.1"
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.7"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.19"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.2.6"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0.0"
          },
          {
            "model": "notes and domino fp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.35"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.6"
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "platform director",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "2.0"
          },
          {
            "model": "jdk update3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.2"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.17"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "11.0"
          },
          {
            "model": "security network intrusion prevention system gx5108",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "rational tau",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.35"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.11"
          },
          {
            "model": "tivoli monitoring fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.306"
          },
          {
            "model": "i v5r3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1"
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.2"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.5"
          },
          {
            "model": "control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.0.1"
          },
          {
            "model": "spss collaboration and deployment services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.2.1"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.42"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.4.1"
          },
          {
            "model": "universal discovery",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.20"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.025"
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.3"
          },
          {
            "model": "java se embedded 7u71",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "rational directory server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1.1"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.10"
          },
          {
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "5.1"
          },
          {
            "model": "watson explorer foundational components",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0.0.6"
          },
          {
            "model": "worklight foundation enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.20"
          },
          {
            "model": "ts3200 tape library",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "model": "realpresence desktop",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "3.5"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.47"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.12"
          },
          {
            "model": "video border proxy",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "14.2.0.1"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.1"
          },
          {
            "model": "aura communication manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "financial transaction manager for check",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.3"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.12"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.22"
          },
          {
            "model": "tivoli netcool service quality manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.4"
          },
          {
            "model": "rational insight",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1.1"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.17"
          },
          {
            "model": "sterling control center ifix01",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.4.21"
          },
          {
            "model": "security network intrusion prevention system gx7412",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.0.3"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1.7"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.7.3"
          },
          {
            "model": "api management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0"
          },
          {
            "model": "security network intrusion prevention system gv200",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "algo one",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.8"
          },
          {
            "model": "command center appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.20"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.7"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.2"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.11"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.7"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3.1"
          },
          {
            "model": "rational application developer for websphere",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "36.0.3"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.15"
          },
          {
            "model": "aura experience portal",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.0"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.8.06"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.04"
          },
          {
            "model": "sterling connect:direct browser user interface ifix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.5.0.208"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.1.2"
          },
          {
            "model": "algo one",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.7"
          },
          {
            "model": "sterling connect:express for unix ifix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.6.1146-109"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6.0.2"
          },
          {
            "model": "financial transaction manager for cps",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.2"
          },
          {
            "model": "meeting exchange",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0.0.52"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.11"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "35"
          },
          {
            "model": "tivoli common reporting",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1.1.2"
          },
          {
            "model": "cognos business intelligence server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.1"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.7"
          },
          {
            "model": "ip office application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "8.0"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.3"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.5"
          },
          {
            "model": "xiv management tools",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.0.0"
          },
          {
            "model": "rlks administration and reporting tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.6"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2"
          },
          {
            "model": "notes and domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0.1.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "37"
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.1.1"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.0.2"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.36"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5"
          },
          {
            "model": "storwize unified",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "v70001.5.0.0"
          },
          {
            "model": "sterling connect:express for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.6"
          },
          {
            "model": "jrockit r28.3.1",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.6"
          },
          {
            "model": "tivoli system automation for multiplatforms",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.2"
          },
          {
            "model": "db2 workgroup server edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.5"
          },
          {
            "model": "system storage ts2900 tape library",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0039"
          },
          {
            "model": "security network intrusion prevention system gx5008",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.2"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.043"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.14"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "27.0.1"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.211"
          },
          {
            "model": "integrated lights out",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hp",
            "version": "31.87"
          },
          {
            "model": "commonstore for lotus domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.4"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "8.0"
          },
          {
            "model": "real-time compression appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.9"
          },
          {
            "model": "qradar siem mr2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.17"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.1"
          },
          {
            "model": "cognos business intelligence server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.11-28"
          },
          {
            "model": "security appscan enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0.2"
          },
          {
            "model": "realpresence mobile",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "3.5"
          },
          {
            "model": "datapower gateways",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0"
          },
          {
            "model": "security network intrusion prevention system gx3002",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "financial transaction manager for check",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.0"
          },
          {
            "model": "flashcopy manager for vmware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.0.0"
          },
          {
            "model": "jre update3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "12.0"
          },
          {
            "model": "cognos metrics manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.1"
          },
          {
            "model": "security network controller 1.0.3350m",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1.1"
          },
          {
            "model": "notes and domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.3.6"
          },
          {
            "model": "sparc enterprise m4000 xcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1118"
          },
          {
            "model": "seamonkey",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.35"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.0.8"
          },
          {
            "model": "sterling connect:enterprise for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.4.4.0"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1"
          },
          {
            "model": "power hmc sp2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.7.8.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.7"
          },
          {
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "28"
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.20"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.071"
          },
          {
            "model": "infosphere master data management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "11.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.3"
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.1"
          },
          {
            "model": "cognos express fp4",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.24"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "3.2"
          },
          {
            "model": "watson explorer analytical components",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.0.2"
          },
          {
            "model": "service manager software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.31"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.10"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.3.4"
          },
          {
            "model": "project and portfolio management center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.10"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.8"
          },
          {
            "model": "sterling connect:direct browser ifix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.11.03"
          },
          {
            "model": "security network intrusion prevention system gx5008-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.12"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.4.11"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.3"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.14"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.22"
          },
          {
            "model": "security network intrusion prevention system gx5108",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.4"
          },
          {
            "model": "websphere dashboard framework",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.1"
          },
          {
            "model": "linux ia-64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "model": "security proventia network enterprise scanner",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.3"
          },
          {
            "model": "security access manager for web appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.5.0"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1.0.1"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.1"
          },
          {
            "model": "tivoli common reporting",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.2"
          },
          {
            "model": "tivoli netcool system service monitor fp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.1"
          },
          {
            "model": "jdk(os 1.7.0 45",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "x)"
          },
          {
            "model": "worklight consumer edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.0"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.08"
          },
          {
            "model": "rational engineering lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0.1"
          },
          {
            "model": "security network intrusion prevention system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "security network intrusion prevention system gx7412-05",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "rational developer for i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.1.1"
          },
          {
            "model": "openjdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3.3"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.075"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.7"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.71"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.53"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.1.1"
          },
          {
            "model": "flashcopy manager for unix and linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.0"
          },
          {
            "model": "tivoli key lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0"
          },
          {
            "model": "jrockit r28.0.0",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.51"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.10"
          },
          {
            "model": "operational decision manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6"
          },
          {
            "model": "meeting exchange sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "model": "alienvault",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "5.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "9.0.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.11"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.27"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.4.0.5"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.1"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.3.3"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0"
          },
          {
            "model": "watson content analytics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.3.2"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.5"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.11"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.10"
          },
          {
            "model": "security network intrusion prevention system gx4002",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.23"
          },
          {
            "model": "security network intrusion prevention system gx7412-10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1.4"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.3.0.1"
          },
          {
            "model": "linux x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "slackware",
            "version": "14.1"
          },
          {
            "model": "security network intrusion prevention system gx5208-v2",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "aura presence services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.2"
          },
          {
            "model": "rational automation framework",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.2"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.075"
          },
          {
            "model": "control center ifix01",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.0.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "38"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.3"
          },
          {
            "model": "qradar siem patch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.34"
          },
          {
            "model": "sparc enterprise m9000 xcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1117"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "15"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.720"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.5"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.6.1"
          },
          {
            "model": "security network intrusion prevention system gx5108-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.3"
          },
          {
            "model": "infosphere biginsights",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0"
          },
          {
            "model": "solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "11.3"
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.12"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.23"
          },
          {
            "model": "rational software architect",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.03"
          },
          {
            "model": "emptoris sourcing",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.4"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1.2"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.7"
          },
          {
            "model": "worklight enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.0"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.1.5"
          },
          {
            "model": "multi-enterprise integration gateway",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.3"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.3"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.7"
          },
          {
            "model": "infosphere discovery",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.5"
          },
          {
            "model": "rational synergy ifix01",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.1.3"
          },
          {
            "model": "meeting exchange",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.0.5"
          },
          {
            "model": "tivoli access manager for e-business",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.11"
          },
          {
            "model": "ucmdb configuration manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.11"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.8"
          },
          {
            "model": "messagesight",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.2"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.2"
          },
          {
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "model": "security network intrusion prevention system gx7412-05",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.8"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.4"
          },
          {
            "model": "rational developer for aix and linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0.1"
          },
          {
            "model": "sterling control center ifix02",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.4.10"
          },
          {
            "model": "flashcopy manager for oracle",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.16.2"
          },
          {
            "model": "secure global desktop",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "4.63"
          },
          {
            "model": "cognos mobile app on android",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.2.1.2"
          },
          {
            "model": "tivoli directory integrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.09"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.3"
          },
          {
            "model": "rational software architect",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1.1"
          },
          {
            "model": "security network intrusion prevention system gx5008-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.6"
          },
          {
            "model": "spss modeler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "15.0.0.0"
          },
          {
            "model": "clustered data ontap antivirus connector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netapp",
            "version": "0"
          },
          {
            "model": "security network intrusion prevention system gx3002",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "infosphere biginsights",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.2.0.0"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.44"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.5"
          },
          {
            "model": "algo one",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.9.1"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.3"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.16"
          },
          {
            "model": "one-x client enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "jrockit r28.1.1",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.0"
          },
          {
            "model": "tivoli dynamic workload console",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.0"
          },
          {
            "model": "tivoli dynamic workload console",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1"
          },
          {
            "model": "notes and domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.2.4"
          },
          {
            "model": "security network intrusion prevention system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "db2 connect enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.7"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.1"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.038"
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.0.1"
          },
          {
            "model": "ts7740 virtualization engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3957-v06"
          },
          {
            "model": "rational engineering lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.6"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.11"
          },
          {
            "model": "codar",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "1.0"
          },
          {
            "model": "security network controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.3387"
          },
          {
            "model": "rational engineering lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.5"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.3"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.74"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.3"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.08"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.24"
          },
          {
            "model": "spss data access pack",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2"
          },
          {
            "model": "smartcloud entry fixpack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.3.0.33"
          },
          {
            "model": "jrockit r28.2.1",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.3.1"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.31"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.3"
          },
          {
            "model": "java se embedded 8u33",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.3"
          },
          {
            "model": "rational publishing engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.2"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.3"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.5"
          },
          {
            "model": "enterprise tape system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "35920"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.5"
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.1.0"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.411"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.5"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1.5"
          },
          {
            "model": "security network intrusion prevention system gx4002",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.213"
          },
          {
            "model": "qradar siem mr2 patch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.18"
          },
          {
            "model": "tape subsystems",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "model": "image construction and composition tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.1.3"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3.2"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2.3"
          },
          {
            "model": "emptoris supplier lifecycle management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.23"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.713"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.04"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.0.1"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.50"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.17"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2"
          },
          {
            "model": "operational decision manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.0.4"
          },
          {
            "model": "i v5r3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.10"
          },
          {
            "model": "infosphere master data management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.42"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3"
          },
          {
            "model": "enterprise linux server supplementary",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "27"
          },
          {
            "model": "sterling connect:direct browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.3"
          },
          {
            "model": "security network intrusion prevention system gx5008",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "rational developer for i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.01"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.2"
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.1.2"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.28"
          },
          {
            "model": "hp-ux thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.0.0.24"
          },
          {
            "model": "iq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0.1"
          },
          {
            "model": "rational engineering lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0"
          },
          {
            "model": "flashcopy manager for vmware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.1.1"
          },
          {
            "model": "operational decision manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5"
          },
          {
            "model": "operations manager for windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "8.16"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.1"
          },
          {
            "model": "sterling connect:express for unix ifix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.6.1146-108"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.071"
          },
          {
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.3.9.3"
          },
          {
            "model": "aspera point to point",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.5.5"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0"
          },
          {
            "model": "websphere partner gateway advanced edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.1.3"
          },
          {
            "model": "security network intrusion prevention system gx4004",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "security network intrusion prevention system gv1000",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "smartcloud entry appliance fp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.4"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5.3"
          },
          {
            "model": "db2 connect unlimited advanced edition for system z",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.5"
          },
          {
            "model": "watson explorer foundational components",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0"
          },
          {
            "model": "security network intrusion prevention system gx7412-10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "flashsystem 9848-ac0",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "840"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.3"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.4.2"
          },
          {
            "model": "watson explorer annotation administration console",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.0.2"
          },
          {
            "model": "rational automation framework ifix4",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.3"
          },
          {
            "model": "flashcopy manager for db2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.0.0"
          },
          {
            "model": "security network intrusion prevention system gx7412-05",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "virtualization engine ts7700 r3.1",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "flashcopy manager for db2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.1.2"
          },
          {
            "model": "ip office application server sp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "9.01"
          },
          {
            "model": "watson explorer foundational components",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0.2"
          },
          {
            "model": "tivoli workload scheduler distributed",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1"
          },
          {
            "model": "emptoris sourcing",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.1.0"
          },
          {
            "model": "enterprise linux workstation supplementary",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.5"
          },
          {
            "model": "icewall sso dfw",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "12.0.1"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.0.4"
          },
          {
            "model": "power hmc sp2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.7.9.0"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.7"
          },
          {
            "model": "aspera faspex application",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.9.2"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.9"
          },
          {
            "model": "jdk update2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.6"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.2"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.10"
          },
          {
            "model": "jrockit r28.3.6",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "23.0"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.0.4"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.32"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.5"
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.2.1"
          },
          {
            "model": "operational decision manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.5"
          },
          {
            "model": "ucmdb",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.20"
          },
          {
            "model": "rational directory server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1.2"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.6"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.6"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.3"
          },
          {
            "model": "integrated lights out",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "22.28"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "7.0"
          },
          {
            "model": "smartcloud entry fp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.110"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "8.1"
          },
          {
            "model": "financial transaction manager for cps",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.5"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.0.2"
          },
          {
            "model": "db2 connect enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.5"
          },
          {
            "model": "security network intrusion prevention system gx5108",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1"
          },
          {
            "model": "ip office application server sp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "9.02"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.16"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.32"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "6.0.1"
          },
          {
            "model": "websphere mq internet pass-thru",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.13"
          },
          {
            "model": "rational developer for aix and linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.01"
          },
          {
            "model": "emptoris program management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.4"
          },
          {
            "model": "system storage ts2900 tape library",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0026"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.032"
          },
          {
            "model": "tivoli workload scheduler distributed",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "7.1.2"
          },
          {
            "model": "websphere service registry and repository",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "14"
          },
          {
            "model": "security network intrusion prevention system gx7412",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "16.0.2"
          },
          {
            "model": "spss modeler fp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "17"
          },
          {
            "model": "system storage ts2900 tape librray",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0037"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.1"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.0.12"
          },
          {
            "model": "sparc enterprise m5000 xcp",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1121"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6.0.4"
          },
          {
            "model": "emptoris supplier lifecycle management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5"
          },
          {
            "model": "api management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0"
          },
          {
            "model": "jre update2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1.4"
          },
          {
            "model": "aura presence services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "jre update15",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.16"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.13"
          },
          {
            "model": "business service automation essentials",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.2"
          },
          {
            "model": "aura experience portal sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.27"
          },
          {
            "model": "solaris sru",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "11.35.6"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.1"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1.1"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1"
          },
          {
            "model": "aura presence services sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "security network intrusion prevention system gx5208",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "ds8870 r7.2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "linux enterprise server sp4 ltss",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "model": "tivoli system automation application manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "35.0.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.3"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.5"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.23"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.12"
          },
          {
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.2"
          },
          {
            "model": "infosphere biginsights",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.3"
          },
          {
            "model": "linux s/390",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "model": "aspera console",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1"
          },
          {
            "model": "aura experience portal",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "model": "rational software architect for websphere software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5.2"
          },
          {
            "model": "db2 connect application server advanced edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.11"
          },
          {
            "model": "project and portfolio management center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.21"
          },
          {
            "model": "solaris sru",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "11.36.5"
          },
          {
            "model": "network node manager ispi for ip telephony",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.14"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.7"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "6"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.13"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2.2"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2"
          },
          {
            "model": "qradar incident forensics mr3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.22"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.21"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.1"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.31"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.14"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.13"
          },
          {
            "model": "flashsystem 9840-ae1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "840"
          },
          {
            "model": "discovery and dependency mapping inventory",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.30"
          },
          {
            "model": "rational developer for i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0"
          },
          {
            "model": "algo one",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "model": "financial transaction manager for check",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.10"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "8.3"
          },
          {
            "model": "packaging utility",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.8.1"
          },
          {
            "model": "smartcloud entry appliance fp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.4.0.5"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.4.01"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.51"
          },
          {
            "model": "realpresence collaboration server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "0"
          },
          {
            "model": "aura application server sip core pb5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "53003.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.4"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.14"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.13"
          },
          {
            "model": "discovery and dependency mapping inventory update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.323"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.2"
          },
          {
            "model": "tivoli system automation for multiplatforms",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.18"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.2"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.1"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.8"
          },
          {
            "model": "aspera proxy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.2.2"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.03"
          },
          {
            "model": "jrockit r28.3.3",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "9.0"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.32"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6.0.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.15"
          },
          {
            "model": "sterling connect:direct browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4"
          },
          {
            "model": "firefox os",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.2"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.1.4"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.4"
          },
          {
            "model": "security network intrusion prevention system gx3002",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "worklight consumer edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.1"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.18"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.045"
          },
          {
            "model": "jre update10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "bsm connector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.22"
          },
          {
            "model": "security network intrusion prevention system gx5208-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.7.0.1"
          },
          {
            "model": "rational developer for power systems software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "enterprise linux server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "7"
          },
          {
            "model": "sterling connect:direct browser user interface",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.52"
          },
          {
            "model": "jdk update6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0"
          },
          {
            "model": "storwize unified",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "v70001.5.1.3"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2.4"
          },
          {
            "model": "jre update7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.01"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.01"
          },
          {
            "model": "jdk update10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.1"
          },
          {
            "model": "rational doors next generation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0.1"
          },
          {
            "model": "aspera shares",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.9.2"
          },
          {
            "model": "bsm connector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.23"
          },
          {
            "model": "cognos express",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.1"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.0.9"
          },
          {
            "model": "cognos tm1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.12"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "37.0.1"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.2.3"
          },
          {
            "model": "jre update13",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.1"
          },
          {
            "model": "security network intrusion prevention system gx4002",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.15"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.6"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.3.0.3"
          },
          {
            "model": "websphere partner gateway enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.1.3"
          },
          {
            "model": "universal discovery",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.01"
          },
          {
            "model": "security network intrusion prevention system gx6116",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "mac os",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.10.4"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.4"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "8.2"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.8"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.0.3"
          },
          {
            "model": "ts3100 tape library c.80",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "cloudaxis wsp",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "2.1"
          },
          {
            "model": "db2 recovery expert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0"
          },
          {
            "model": "cognos controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.1"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3.3"
          },
          {
            "model": "jrockit r27.8.1",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "cognos express",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "one-x client enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.1"
          },
          {
            "model": "rlks administration agent",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4.6"
          },
          {
            "model": "spss statistics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "20.0.0.2"
          },
          {
            "model": "flashsystem 9848-ae1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "840"
          },
          {
            "model": "ef-series santricity management plug-ins",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netapp",
            "version": "0"
          },
          {
            "model": "db2 query management facility",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "network node manager i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.2"
          },
          {
            "model": "worklight foundation consumer edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.0.1"
          },
          {
            "model": "tealeaf customer experience",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0.2"
          },
          {
            "model": "rational developer for aix and linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.1.6"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0.1"
          },
          {
            "model": "sparc enterprise m4000 xcp",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1121"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.17"
          },
          {
            "model": "notes and domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.3"
          },
          {
            "model": "cloud service automation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "4.00"
          },
          {
            "model": "jre(os 1.7.0 45",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "x)"
          },
          {
            "model": "spss modeler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "14.2.0.2"
          },
          {
            "model": "security network intrusion prevention system gx7412",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "security network intrusion prevention system gx4004",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.8"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.6"
          },
          {
            "model": "flex system p260 compute node /fc efd9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.7"
          },
          {
            "model": "filenet business process manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.0"
          },
          {
            "model": "worklight enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.1"
          },
          {
            "model": "hp-ux web server suite hpuxwsatw405",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "4.05"
          },
          {
            "model": "system storage ts2900 tape library",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0025"
          },
          {
            "model": "qradar siem",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.3"
          },
          {
            "model": "fujitsu m10-4s server xcp",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "2271"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.4.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.020"
          },
          {
            "model": "cognos controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "jdk update25",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.0.3"
          },
          {
            "model": "sterling b2b integrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2"
          },
          {
            "model": "financial transaction manager for check",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.4"
          },
          {
            "model": "cognos business intelligence server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2"
          },
          {
            "model": "cloud service automation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "4.2"
          },
          {
            "model": "ds8700 r6.3 sp9",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.9"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.4"
          },
          {
            "model": "control center ifix02",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.0.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.15.2"
          },
          {
            "model": "one-x client enablement services sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "6.1.4"
          },
          {
            "model": "cognos command center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.1"
          },
          {
            "model": "enterprise linux hpc node",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6.0.2"
          },
          {
            "model": "flashcopy manager for custom applications",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.1"
          },
          {
            "model": "project and portfolio management center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.12"
          },
          {
            "model": "aura communication manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.1"
          },
          {
            "model": "ios beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2"
          },
          {
            "model": "security network intrusion prevention system gx5208",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.1.1"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.3"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "16"
          },
          {
            "model": "security network intrusion prevention system gx7412-10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.2.5"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.4"
          },
          {
            "model": "communication server 1000e signaling server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.5"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.43"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.73"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.24"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.8"
          },
          {
            "model": "tivoli common reporting",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.2"
          },
          {
            "model": "rational software architect for websphere software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5"
          },
          {
            "model": "enterprise linux server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.1"
          },
          {
            "model": "security network controller 1.0.3376m",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.010"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.24"
          },
          {
            "model": "jdk update15",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "network node manager ispi performance for qa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.0"
          },
          {
            "model": "security network intrusion prevention system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2"
          },
          {
            "model": "cognos command center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "iq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5"
          },
          {
            "model": "sparc enterprise m8000 xcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1118"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "11.0"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.0.2"
          },
          {
            "model": "mobilefirst platform foundation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.0"
          },
          {
            "model": "financial transaction manager for ach",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.2"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.027"
          },
          {
            "model": "netezza support tools",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0.0.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "13.0.1"
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.0.0"
          },
          {
            "model": "security network intrusion prevention system gx5008",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "db2 enterprise server edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "db2 connect application server advanced edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.5"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1.3"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.1"
          },
          {
            "model": "hp-ux apache-based web server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.2.15.23"
          },
          {
            "model": "websphere enterprise service bus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.21"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.3.0"
          },
          {
            "model": "system storage ts3400 tape library",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0039"
          },
          {
            "model": "rational doors next generation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.6"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.8"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.0"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.025"
          },
          {
            "model": "websphere enterprise service bus registry edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.8.05"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.9.3"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.4.0"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.1.3"
          },
          {
            "model": "rational doors next generation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.5"
          },
          {
            "model": "flex system p460 compute node",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "(7895-43x)0"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.22"
          },
          {
            "model": "spss modeler",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "14.2.0.3"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.14"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.1"
          },
          {
            "model": "tivoli dynamic workload console",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6.0.1"
          },
          {
            "model": "security network intrusion prevention system gx4004",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.7"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "3.2.2"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.0"
          },
          {
            "model": "watson explorer foundational components",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.25"
          },
          {
            "model": "ucmdb configuration manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.10"
          },
          {
            "model": "sparc enterprise m3000 xcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1118"
          },
          {
            "model": "spss modeler fp2 if001",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "16"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.2"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.214"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.14"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.4"
          },
          {
            "model": "datapower gateways",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1"
          },
          {
            "model": "infosphere guardium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0"
          },
          {
            "model": "network node manager ispi performance for metrics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.0"
          },
          {
            "model": "communication server 1000m",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.0"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.10"
          },
          {
            "model": "db2 advanced enterprise server edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.5"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.5"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.1"
          },
          {
            "model": "db2 express edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.12"
          },
          {
            "model": "power hmc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.3.0.0"
          },
          {
            "model": "sdk for node.js",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.2.0.2"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.21"
          },
          {
            "model": "datapower gateways",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.9"
          },
          {
            "model": "infosphere guardium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.211"
          },
          {
            "model": "flex system p270 compute node",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "(7954-24x)0"
          },
          {
            "model": "db2 connect unlimited edition for system i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.7"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.5.2"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.2"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.2"
          },
          {
            "model": "hp-ux b.11.22",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.3.0.1"
          },
          {
            "model": "db2 connect unlimited edition for system z",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.7"
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.6"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.033"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.1.1"
          },
          {
            "model": "jrockit r27.6.0-50",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.5.015"
          },
          {
            "model": "flashcopy manager for db2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.0"
          },
          {
            "model": "i v5r4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1"
          },
          {
            "model": "realpresence access director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "0"
          },
          {
            "model": "mq light",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.0.1"
          },
          {
            "model": "capture server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "2.1"
          },
          {
            "model": "fujitsu m10-1 server xcp",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "2271"
          },
          {
            "model": "firefox esr",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.8"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.01"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.1"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2.1"
          },
          {
            "model": "worklight foundation consumer edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.20"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.26"
          },
          {
            "model": "ds8700",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "model": "ds8870",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.43"
          },
          {
            "model": "sterling connect:direct browser user interface",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4"
          },
          {
            "model": "security network controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.1209"
          },
          {
            "model": "jrockit r27.8.3",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.11"
          },
          {
            "model": "rational doors next generation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.1"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.12"
          },
          {
            "model": "netinsight",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "20.0.1"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.0.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.32"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.1"
          },
          {
            "model": "firefox os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.1"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "7.0.3"
          },
          {
            "model": "rational sap connector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.2"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1"
          },
          {
            "model": "security network controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.3361"
          },
          {
            "model": "operations manager for linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.10"
          },
          {
            "model": "mashup center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0"
          },
          {
            "model": "flashcopy manager for unix and linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.1.1"
          },
          {
            "model": "jrockit r27.7.3",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0.1"
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.15"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.2"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.24"
          },
          {
            "model": "jdk update9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "jrockit r27.6.5",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "workflow for bluemix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.8"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.16"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.043"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.0.1"
          },
          {
            "model": "java se embedded 7u60",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.1"
          },
          {
            "model": "release control software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.20"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1.4"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "14.01"
          },
          {
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.060"
          },
          {
            "model": "sterling connect:direct browser user interface",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.411"
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1"
          },
          {
            "model": "rational automation framework",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.3"
          },
          {
            "model": "solaris",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "10"
          },
          {
            "model": "bsm connector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.20"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.4.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.7"
          },
          {
            "model": "notes and domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "urbancode release",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.1.8"
          },
          {
            "model": "cloudaxis mea",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "0"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "7.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.21"
          },
          {
            "model": "cognos tm1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.2"
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.16-37"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.17.1"
          },
          {
            "model": "opensuse evergreen",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11.4"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.19"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.6"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.8"
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.1"
          },
          {
            "model": "infosphere optim performance manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.1"
          },
          {
            "model": "linux enterprise server sp2 ltss",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "model": "system storage ts3400 tape library",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "model": "rlks administration and reporting tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4.7"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1.2"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.5"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.9"
          },
          {
            "model": "sterling connect:enterprise for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.4.4"
          },
          {
            "model": "rational business developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1"
          },
          {
            "model": "rational engineering lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0.2"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.41"
          },
          {
            "model": "network node manager ispi for ip multicast qa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.2"
          },
          {
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.0.10"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.3.3"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.8"
          },
          {
            "model": "security network intrusion prevention system gx4004",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "workload deployer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1"
          },
          {
            "model": "websphere partner gateway advanced edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.8"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.9"
          },
          {
            "model": "jre update4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "security network intrusion prevention system gv1000",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "security network intrusion prevention system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.3"
          },
          {
            "model": "hp-ux firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.5.09.00"
          },
          {
            "model": "sterling file gateway",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.1.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.1"
          },
          {
            "model": "aura communication manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.3.0.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.11"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.2.0"
          },
          {
            "model": "netscaler gateway",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.4"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.35"
          },
          {
            "model": "ds8800",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.75"
          },
          {
            "model": "integrated lights out",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hp",
            "version": "22.29"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.16"
          },
          {
            "model": "cloudaxis wsp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "0"
          },
          {
            "model": "project and portfolio management center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.11"
          },
          {
            "model": "flashray",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netapp",
            "version": "0"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.5"
          },
          {
            "model": "aix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2"
          },
          {
            "model": "aura messaging",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "cognos business intelligence server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.4.1"
          },
          {
            "model": "security network intrusion prevention system gx5008-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.17"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.00"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "20.0"
          },
          {
            "model": "db2 connect unlimited edition for system i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.5"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0"
          },
          {
            "model": "tivoli dynamic workload console",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "websphere service registry and repository",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "model": "tivoli workload scheduler distributed",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.1.4"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.02"
          },
          {
            "model": "security network intrusion prevention system gx5208",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3.2"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.14"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.3.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "9.0.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.8"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.0.13"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.15"
          },
          {
            "model": "rational sap connector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.7"
          },
          {
            "model": "spss modeler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "15.0.0.1"
          },
          {
            "model": "security network intrusion prevention system gv200",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "rational tau",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.36"
          },
          {
            "model": "security network intrusion prevention system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "6.0.2"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0.1"
          },
          {
            "model": "flashsystem 9846-ac0",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "840"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.07"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "5.1.1"
          },
          {
            "model": "spss statistics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "21.0.0.2"
          },
          {
            "model": "security network intrusion prevention system gx7412",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "content manager enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "aura messaging",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.051"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.213"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "7.0.1"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.4"
          },
          {
            "model": "security network intrusion prevention system gx4004-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.7"
          },
          {
            "model": "ediscovery analyzer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1"
          },
          {
            "model": "rational tau",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.34"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.19"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.7"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "6.0.2"
          },
          {
            "model": "tivoli monitoring fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.29"
          },
          {
            "model": "spss modeler",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "16.0.0.2"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1.7"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3.1"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.2.1.0"
          },
          {
            "model": "one-x client enablement services sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "spss modeler fp3 if023",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "14.2"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.1"
          },
          {
            "model": "enterprise linux desktop supplementary",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "tivoli workload scheduler distributed",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.4"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "7.0.1"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "8"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.15"
          },
          {
            "model": "security network intrusion prevention system gx5208",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.034"
          },
          {
            "model": "security network intrusion prevention system gx4002",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1.1"
          },
          {
            "model": "rational publishing engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.3"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2"
          },
          {
            "model": "jrockit r28.3.2",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.18"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.01"
          },
          {
            "model": "sdk for node.js",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1.0.14"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.10"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.10"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.6"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.0.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "25.0"
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.1"
          },
          {
            "model": "cognos insight",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.18"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.3.2"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.3"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.7"
          },
          {
            "model": "rational insight",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1.1.4"
          },
          {
            "model": "integrated lights out",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "42.22"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.11"
          },
          {
            "model": "web experience factory",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.13"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.51"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.9.1"
          },
          {
            "model": "cognos business intelligence server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.11"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.4"
          },
          {
            "model": "operations analytics predictive insights",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.3.1"
          },
          {
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2.2"
          },
          {
            "model": "network node manager ispi performance for qa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.2"
          },
          {
            "model": "virtualization engine ts7700 r2.1",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.12"
          },
          {
            "model": "emptoris supplier lifecycle management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.4"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.6"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.7"
          },
          {
            "model": "enterprise linux desktop",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "7"
          },
          {
            "model": "security network intrusion prevention system gx5008",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.15"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.1"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1.8"
          },
          {
            "model": "aura session manager sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "watson explorer foundational components",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.0.2"
          },
          {
            "model": "iq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.1"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.1"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.4"
          },
          {
            "model": "hp-ux b.11.11.16.09",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "3.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.14"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.1"
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.1.1"
          },
          {
            "model": "business service automation essentials",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.9"
          },
          {
            "model": "filenet content manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.0"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.03"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1"
          },
          {
            "model": "release control software p3",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.21"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.5"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.4"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.0.1"
          },
          {
            "model": "infosphere optim performance manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1.0"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.038"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.35"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.07"
          },
          {
            "model": "algo credit administrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2"
          },
          {
            "model": "ip office server edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "9.0"
          },
          {
            "model": "smartcloud entry fixpack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.413"
          },
          {
            "model": "installation manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.8"
          },
          {
            "model": "rational engineering lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "model": "thunderbird",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "38.1"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "3.1"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3"
          },
          {
            "model": "spss modeler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "17.0"
          },
          {
            "model": "sterling connect:direct browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.11"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "model": "jdk update7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.22.1"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.2.3"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.1.1"
          },
          {
            "model": "operations manager for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.10"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.9"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3.5"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.9"
          },
          {
            "model": "network node manager ispi performance for metrics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.2"
          },
          {
            "model": "thunderbird",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.8"
          },
          {
            "model": "ucmdb",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.01"
          },
          {
            "model": "jre update11",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.0.0"
          },
          {
            "model": "icewall federation agent",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.0"
          },
          {
            "model": "security network intrusion prevention system gx6116",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "infosphere master data management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.14"
          },
          {
            "model": "service manager software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.35"
          },
          {
            "model": "capture server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "0"
          },
          {
            "model": "network node manager ispi performance for qa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.0"
          },
          {
            "model": "aura application enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "emptoris strategic supply management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.22"
          },
          {
            "model": "qradar siem patch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.41"
          },
          {
            "model": "wxos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "juniper",
            "version": "0"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.14"
          },
          {
            "model": "websphere message broker",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.5"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.0.2"
          },
          {
            "model": "flashcopy manager for oracle with sap environments",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.4"
          },
          {
            "model": "jrockit r27.7.1",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "aura utility services sp7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.1.6"
          },
          {
            "model": "jre update17",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.12"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.19"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.15"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.32"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5"
          },
          {
            "model": "tivoli monitoring fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.303"
          },
          {
            "model": "sterling connect:express for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.5.0.12"
          },
          {
            "model": "security network intrusion prevention system gx6116",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "project and portfolio management center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.31"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.9"
          },
          {
            "model": "meeting exchange sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "model": "hp-ux apache-based web server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "2.2.15.21"
          },
          {
            "model": "spss analytic server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0.0.1"
          },
          {
            "model": "one-x client enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.2"
          },
          {
            "model": "rational software architect for websphere software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1.2"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.4.0"
          },
          {
            "model": "security network intrusion prevention system gx7800",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "aura application enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.2.3"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.20"
          },
          {
            "model": "linux mips",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.1"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.25"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.19"
          },
          {
            "model": "network node manager ispi performance for metrics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.0"
          },
          {
            "model": "infosphere guardium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0"
          },
          {
            "model": "flashsystem 9848-ac1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "v840"
          },
          {
            "model": "emptoris services procurement",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.25"
          },
          {
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "slackware",
            "version": "14.1"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.21"
          },
          {
            "model": "cognos tm1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.13"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.6"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.16"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.5"
          },
          {
            "model": "security network intrusion prevention system gx5108-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "security network intrusion prevention system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.7"
          },
          {
            "model": "directory server enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "7.0"
          },
          {
            "model": "sterling control center ifix03",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.41"
          },
          {
            "model": "rational tau interim fix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3.0.6"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.14"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.25"
          },
          {
            "model": "rational software architect for websphere software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "operations manager for windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.0"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "5.0.1"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0.0.3"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.5"
          },
          {
            "model": "secure global desktop",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "5.2"
          },
          {
            "model": "i v5r4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1"
          },
          {
            "model": "cognos metrics manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.1"
          },
          {
            "model": "one-x client enablement services sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.0.4"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "7.0.2"
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.1.0"
          },
          {
            "model": "one-x client enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "websphere appliance management center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "model": "communication server 1000m",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.6"
          },
          {
            "model": "linux x86 64 -current",
            "scope": null,
            "trust": 0.3,
            "vendor": "slackware",
            "version": null
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.1"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.3"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "7"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.071"
          },
          {
            "model": "tivoli netcool system service monitor fp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.1"
          },
          {
            "model": "meeting exchange",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.3"
          },
          {
            "model": "service manager software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.32"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.11"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.4.12"
          },
          {
            "model": "emptoris rivermine telecom expense management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.5"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.0.3"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.22"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.1.1"
          },
          {
            "model": "communication server 1000m signaling server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.6"
          },
          {
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.3.8.3"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3.1"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.5"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.2.1"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.2"
          },
          {
            "model": "os image for aix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0.0.1"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.3.5"
          },
          {
            "model": "communication server 1000e",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.6"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.10"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.14"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.3.1"
          },
          {
            "model": "cognos business intelligence server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "4.0"
          },
          {
            "model": "ds8800 r6.3 sp9",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "operations manager for linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.21"
          },
          {
            "model": "cloud service automation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.2"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.032"
          },
          {
            "model": "discovery and dependency mapping inventory update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.322"
          },
          {
            "model": "security network intrusion prevention system gx5008-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "realpresence access director",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "4.2.1"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.45"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "14"
          },
          {
            "model": "netinsight",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6.0.14"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "16.0.2"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.4"
          },
          {
            "model": "jrockit r28.0.1",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "security network intrusion prevention system gx7800",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.4"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.21"
          },
          {
            "model": "ios beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "64"
          },
          {
            "model": "power hmc sp2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.8.1.0"
          },
          {
            "model": "security network intrusion prevention system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "multi-enterprise integration gateway",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.0.1"
          },
          {
            "model": "watson content analytics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2"
          },
          {
            "model": "spss modeler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "14.2.0.1"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.43"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.7"
          },
          {
            "model": "sparc enterprise m8000 xcp",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1121"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.7"
          },
          {
            "model": "infosphere guardium data redaction",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.15"
          },
          {
            "model": "java jre 1.6.0 37",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.7.1"
          },
          {
            "model": "tivoli storage manager fastback for workstations central adminis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "6.1.3"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.012"
          },
          {
            "model": "flashcopy manager for vmware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.2.0"
          },
          {
            "model": "aura messaging",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "6.0"
          },
          {
            "model": "power hmc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.0.0"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.7"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.11"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.12"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.52"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "6"
          },
          {
            "model": "security network intrusion prevention system gx4002",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.7"
          },
          {
            "model": "websphere service registry and repository",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0"
          },
          {
            "model": "sterling connect:direct browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.2"
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.4.0.1"
          },
          {
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2.1"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.3"
          },
          {
            "model": "discovery and dependency mapping inventory",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.32"
          },
          {
            "model": "communications messaging server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "7.0.5"
          },
          {
            "model": "ts3100 tape library",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.210"
          },
          {
            "model": "security network protection",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.3"
          },
          {
            "model": "aura experience portal",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.2"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.22"
          },
          {
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.15.2"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.10"
          },
          {
            "model": "rational sap connector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.1"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "5"
          },
          {
            "model": "linux lts",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "14.04"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.2"
          },
          {
            "model": "rational doors next generation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0.2"
          },
          {
            "model": "algo credit limits",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.7.0"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1"
          },
          {
            "model": "java se embedded 8u6",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.10"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.1.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.3"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "9.0"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.14"
          },
          {
            "model": "tivoli workload scheduler distributed",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6"
          },
          {
            "model": "smartcloud entry appliance fp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.3.0.3"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.51"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.19"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.0"
          },
          {
            "model": "notes and domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.37"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.10"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.25"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.31"
          },
          {
            "model": "watson content analytics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.5"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.1.3"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.045"
          },
          {
            "model": "tivoli common reporting",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1"
          },
          {
            "model": "jrockit r27.6.7",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "5.0.4"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.20"
          },
          {
            "model": "pureapplication system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1.0.2"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.8.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.4"
          },
          {
            "model": "aura system manager sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3.3"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.8"
          },
          {
            "model": "tivoli monitoring fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.303"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.2"
          },
          {
            "model": "infosphere optim performance manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1.1"
          },
          {
            "model": "hp-ux b.11.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "security network intrusion prevention system gv1000",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "content collector for sap applications",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2"
          },
          {
            "model": "jrockit r27.6.0",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "hp-ux b.11.31",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.0.5"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.14"
          },
          {
            "model": "tls",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "1.1"
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.13-41"
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.9"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.52"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "18.0.1"
          },
          {
            "model": "smartcloud entry appliance fp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.4"
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0.2"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.024"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.113"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.0"
          },
          {
            "model": "service manager software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.34"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.5"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.50"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.1.5"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.11"
          },
          {
            "model": "rational engineering lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.0.1"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0.1"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.20"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.23"
          },
          {
            "model": "aura session manager sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.3.4"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "6.1.6"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.00"
          },
          {
            "model": "rlks administration agent",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4.5"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.02"
          },
          {
            "model": "e-series santricity storage manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netapp",
            "version": "0"
          },
          {
            "model": "aura presence services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.5"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.3"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.12"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3.10"
          },
          {
            "model": "satellite (for rhel",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6)5.6"
          },
          {
            "model": "security network intrusion prevention system gv200",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.10"
          },
          {
            "model": "ediscovery analyzer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.2"
          },
          {
            "model": "aura session manager sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "storwize unified",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "v70001.5.2.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.11"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.3.0.0"
          },
          {
            "model": "ds8870",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.029"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1"
          },
          {
            "model": "flashcopy manager for unix and linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.4"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1.1"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2"
          },
          {
            "model": "security network intrusion prevention system gv200",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.5"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.1.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0"
          },
          {
            "model": "rational synergy ifix02",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.1.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.3"
          },
          {
            "model": "power hmc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.0.0"
          },
          {
            "model": "filenet content manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.1"
          },
          {
            "model": "integration adaptor",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.12"
          },
          {
            "model": "the internet service monitor",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.3"
          },
          {
            "model": "network node manager ispi for ip multicast qa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.1"
          },
          {
            "model": "aura application enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.1"
          },
          {
            "model": "license metric tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.8"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "16"
          },
          {
            "model": "spss modeler fp3 if011",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "15"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.7"
          },
          {
            "model": "tivoli dynamic workload console",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.4"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.0.9"
          },
          {
            "model": "flashcopy manager for db2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.0"
          },
          {
            "model": "3par os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.1.2"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.4"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "8.1.2"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.5"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.23"
          },
          {
            "model": "infosphere biginsights",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1.2"
          },
          {
            "model": "aura conferencing sp7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.2"
          },
          {
            "model": "infosphere biginsights",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.3.0.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.10"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1.1"
          },
          {
            "model": "security network controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.3376"
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.18-42"
          },
          {
            "model": "operations agent virtual appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "11.14"
          },
          {
            "model": "jrockit r28.3.4",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "operations manager for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.21"
          },
          {
            "model": "linux enterprise module for legacy software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "12"
          },
          {
            "model": "tivoli system automation for multiplatforms",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.11"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.11"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.0.2"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.23"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.10"
          },
          {
            "model": "workload deployer if9",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.7"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1.2"
          },
          {
            "model": "cognos express",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.2"
          },
          {
            "model": "aura utility services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "web experience factory",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "model": "aspera enterprise server client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.5.5"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.010"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.41"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.51.1.10"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.027"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.3"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.022"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.12"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "13.0.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.4"
          },
          {
            "model": "aura system manager sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "sterling connect:direct browser ifix10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.5.2"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.21"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.13"
          },
          {
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.15"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "15.0.1"
          },
          {
            "model": "rational doors next generation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.8"
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.1876"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.12"
          },
          {
            "model": "rational software architect",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.212"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.79"
          },
          {
            "model": "emptoris sourcing",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.1.1"
          },
          {
            "model": "sparc enterprise m4000 xcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1117"
          },
          {
            "model": "security network intrusion prevention system gx5208-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "16.0"
          },
          {
            "model": "aura utility services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3"
          },
          {
            "model": "tivoli system automation application manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.2"
          },
          {
            "model": "sterling control center ifix04",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.4.2.1"
          },
          {
            "model": "notes and domino fp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.36"
          },
          {
            "model": "hp-ux b.11.11.14.15",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "rational business developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.11"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "2.0"
          },
          {
            "model": "websphere service registry and repository",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.4"
          },
          {
            "model": "tivoli composite application manager for transactions",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.3.0"
          },
          {
            "model": "enterprise linux hpc node supplementary",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "enterprise linux desktop supplementary client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.3"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.2.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.1"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.12"
          },
          {
            "model": "security network intrusion prevention system gx5108",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.1"
          },
          {
            "model": "mq light",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.0.2"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.2"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.5"
          },
          {
            "model": "security network intrusion prevention system gx4004",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "security network intrusion prevention system gv1000",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.2.8"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.7"
          },
          {
            "model": "project and portfolio management center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.14"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.9"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.12"
          },
          {
            "model": "rational directory server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.10"
          },
          {
            "model": "sterling connect:direct browser ifix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.5.0.212"
          },
          {
            "model": "rational directory server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.0.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5"
          },
          {
            "model": "tivoli common reporting",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1.1"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.033"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.13"
          },
          {
            "model": "rational tau",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "service manager software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.30"
          },
          {
            "model": "linux ia-32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "model": "cognos insight",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.2"
          },
          {
            "model": "netscaler service delivery appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "0"
          },
          {
            "model": "universal discovery",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.11"
          },
          {
            "model": "installation manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.8.2"
          },
          {
            "model": "sterling control center ifix03",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.4.1.0"
          },
          {
            "model": "jre 1.6.0 31",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "security access manager for mobile",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.1.1"
          },
          {
            "model": "hp-ux b.11.11.15.13",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.021"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2"
          },
          {
            "model": "websphere partner gateway advanced edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.1.4"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "34"
          },
          {
            "model": "db2 query management facility",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "11.1"
          },
          {
            "model": "session border controller for enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3.0"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.13"
          },
          {
            "model": "communication server 1000e signaling server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.0"
          },
          {
            "model": "content sharing suite client/server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "1.5.1"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.72"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0"
          },
          {
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "model": "tivoli monitoring fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.302"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.12"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.6"
          },
          {
            "model": "distributed media application",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "0"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.4"
          },
          {
            "model": "network node manager ispi performance for qa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.1"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.7"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "6.1"
          },
          {
            "model": "endpoint manager for software use analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9"
          },
          {
            "model": "security network intrusion prevention system gx7800",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.9"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.4"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.3.4"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1.3"
          },
          {
            "model": "realpresence collaboration server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "8.5.4"
          },
          {
            "model": "infosphere optim performance manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1"
          },
          {
            "model": "java se embedded 7u45",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "security identity manager virtual appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0"
          },
          {
            "model": "financial transaction manager for check",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.2"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.16"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3.4"
          },
          {
            "model": "lotus quickr for websphere portal",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "flashcopy manager for vmware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.0"
          },
          {
            "model": "flashcopy manager for custom applications",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.4"
          },
          {
            "model": "cognos tm1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1.1"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.060"
          },
          {
            "model": "flashcopy manager for unix and linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "29.0.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.7"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.02"
          },
          {
            "model": "flex system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.3.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31"
          },
          {
            "model": "security network intrusion prevention system gx5108-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.11"
          },
          {
            "model": "jrockit r28.2.2",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6"
          },
          {
            "model": "jdk update21",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.6"
          },
          {
            "model": "sterling control center ifix02",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.34"
          },
          {
            "model": "security network intrusion prevention system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1"
          },
          {
            "model": "security access manager for web appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0"
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1.2"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.0.1"
          },
          {
            "model": "3par os mu5",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.2.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.8"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.8.1"
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.0.2"
          },
          {
            "model": "real presence capture server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "2.5"
          },
          {
            "model": "security network intrusion prevention system gx5108",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "openjdk",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.8.0"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.014"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.1"
          },
          {
            "model": "jrockit r27.8.4",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "network node manager ispi performance for metrics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.029"
          },
          {
            "model": "tivoli directory integrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.1"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.4"
          },
          {
            "model": "tivoli composite application manager for transactions",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.3.0.1"
          },
          {
            "model": "security network intrusion prevention system gx5108-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.7"
          },
          {
            "model": "pureapplication system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.9"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.21"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.4.2"
          },
          {
            "model": "one-x client enablement services sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.15"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "36.0.4"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.77"
          },
          {
            "model": "realpresence desktop",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "0"
          },
          {
            "model": "sterling connect:direct browser user interface",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.10"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.24"
          },
          {
            "model": "security network intrusion prevention system gx3002",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "security network intrusion prevention system gx5008",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "flex system p260 compute node",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "(7895-23x)0"
          },
          {
            "model": "storwize unified",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "v70001.5.2.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.4"
          },
          {
            "model": "sterling connect:enterprise for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5"
          },
          {
            "model": "tivoli monitoring fp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.1.5"
          },
          {
            "model": "rlks administration and reporting tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4.6"
          },
          {
            "model": "spss collaboration and deployment services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1.1"
          },
          {
            "model": "platform director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "0"
          },
          {
            "model": "hp-ux b.11.04",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.13-34"
          },
          {
            "model": "websphere business integration for financial networks",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.1"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.1"
          },
          {
            "model": "cognos business intelligence server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.5"
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.28"
          },
          {
            "model": "watson content analytics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0"
          },
          {
            "model": "tivoli dynamic workload console",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6.0.0"
          },
          {
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0.0"
          },
          {
            "model": "one-x client enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.030"
          },
          {
            "model": "directory server enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "11.1.1.7"
          },
          {
            "model": "tivoli monitoring fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.209"
          },
          {
            "model": "soa policy gateway pattern for aix server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.7"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.9"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "22.0"
          },
          {
            "model": "rational software architect for websphere software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1"
          },
          {
            "model": "smartcloud provisioning",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1"
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.8"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.41"
          },
          {
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "6.0.2"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.0.0"
          },
          {
            "model": "jrockit r27.7.4",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.015"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "37.0.2"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.11"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.52"
          },
          {
            "model": "flex system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.3.1.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "26"
          },
          {
            "model": "enterprise linux server eus 6.6.z",
            "scope": null,
            "trust": 0.3,
            "vendor": "redhat",
            "version": null
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.3.0.4"
          },
          {
            "model": "infosphere discovery",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "7.0.1"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.051"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.01"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.8"
          },
          {
            "model": "qradar incident forensics mr2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2"
          },
          {
            "model": "flashcopy manager for oracle with sap environments",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.0.0"
          },
          {
            "model": "db2 connect application server edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "oncommand balance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netapp",
            "version": "0"
          },
          {
            "model": "flashcopy manager for oracle with sap environments",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.1.2"
          },
          {
            "model": "rational application developer for websphere",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "33"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.2.4"
          },
          {
            "model": "sterling connect:enterprise for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.0.0"
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.4-23"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.42"
          },
          {
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3"
          },
          {
            "model": "meeting exchange sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.3"
          },
          {
            "model": "storwize unified",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "v70001.5.0.2"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.12.1"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.0.2"
          },
          {
            "model": "netezza support tools",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0.0.2"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.2.0"
          },
          {
            "model": "meeting exchange",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.2.1"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.4"
          },
          {
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.27"
          },
          {
            "model": "pureapplication system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1.0.1"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.2.6"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.0"
          },
          {
            "model": "realpresence mobile",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "0"
          },
          {
            "model": "jrockit r27.7.7",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "security network intrusion prevention system gx3002",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "the internet service monitor",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.4"
          },
          {
            "model": "rational software architect",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5.1"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.6"
          },
          {
            "model": "security network intrusion prevention system gx5108",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "sterling connect:enterprise for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.44"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.10.1"
          },
          {
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "14.10"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.7"
          },
          {
            "model": "infosphere master data management server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "11.4"
          },
          {
            "model": "spss collaboration and deployment services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.3"
          },
          {
            "model": "jrockit r28.3.5",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "ef-series santricity storage manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netapp",
            "version": "0"
          },
          {
            "model": "websphere application server community edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.4"
          },
          {
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.12"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6.0.1"
          },
          {
            "model": "security network intrusion prevention system gx7800",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "jre update5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10"
          },
          {
            "model": "security network intrusion prevention system gx7412-10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.7"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.7"
          },
          {
            "model": "real presence capture server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.13"
          },
          {
            "model": "sdk for node.js",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.2.0.3"
          },
          {
            "model": "aura communication manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "18.0.2"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.16"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.2"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.15"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.7.0.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.13"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.035"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.24"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.1"
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.8"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5"
          },
          {
            "model": "cognos metrics manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.3"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.2"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.1.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "8.0.1"
          },
          {
            "model": "jdk update11",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "rational policy tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.3.0"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.2"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.3"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.42"
          },
          {
            "model": "security network intrusion prevention system gx4004-v2",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.026"
          },
          {
            "model": "netscaler application delivery controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "0"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.19"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.7"
          },
          {
            "model": "websphere partner gateway enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.1.4"
          },
          {
            "model": "operations analytics predictive insights",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.3.2"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.4"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.1.1"
          },
          {
            "model": "security network protection",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.0"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2.6"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.33"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.15"
          },
          {
            "model": "rational doors next generation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0"
          },
          {
            "model": "network node manager i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.20"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.1"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.3.0.3"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4"
          },
          {
            "model": "financial transaction manager for cps",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.3"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.3.1"
          },
          {
            "model": "jrockit r27.1.0",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "aura messaging",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.2.2"
          },
          {
            "model": "os image for aix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1.1.0"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.01"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.31"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.2"
          },
          {
            "model": "tivoli monitoring fixpack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.24"
          },
          {
            "model": "web experience factory",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0"
          },
          {
            "model": "enterprise linux supplementary server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.18"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.50"
          },
          {
            "model": "aspera orchestrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.3"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.14"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "26.0"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.0.13"
          },
          {
            "model": "security network intrusion prevention system gv1000",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.76"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.721"
          },
          {
            "model": "jrockit r28.1.4",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "spss statistics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "23.0.0.0"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.2.6"
          },
          {
            "model": "ucmdb browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "4.01"
          },
          {
            "model": "tls",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "1.2"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "4.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.10"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.6"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.23"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "model": "security network intrusion prevention system gx5008-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.10.3"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.1.1"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.2"
          },
          {
            "model": "installation manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.8.2.1"
          },
          {
            "model": "security network controller 1.0.3387m",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.4"
          },
          {
            "model": "power hmc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.7.8.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.19"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.040"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.4"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.31"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.2"
          },
          {
            "model": "enterprise linux workstation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "security network controller 1.0.3379m",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.05"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.55"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.9"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "16.0.1"
          },
          {
            "model": "security network intrusion prevention system gx7412-10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.2"
          },
          {
            "model": "ios beta",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "8.1.1"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.065"
          },
          {
            "model": "enterprise linux desktop client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "model": "packaging utility",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.8"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.17"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.26"
          },
          {
            "model": "datapower gateways",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0"
          },
          {
            "model": "security network intrusion prevention system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "jrockit r27.6.6",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.6"
          },
          {
            "model": "project and portfolio management center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.22"
          },
          {
            "model": "omnifind enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1.0.5"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.1"
          },
          {
            "model": "rational application developer for websphere",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1.0.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.13"
          },
          {
            "model": "aura presence services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.7.2"
          },
          {
            "model": "system storage ts2900 tape librray",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0033"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.9.2"
          },
          {
            "model": "rational sap connector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.3"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.5"
          },
          {
            "model": "os image for red hat",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0.0.1"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.2.1"
          },
          {
            "model": "ucmdb browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.21"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.33.1"
          },
          {
            "model": "rational synergy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.1.3"
          },
          {
            "model": "jrockit r27.6.8",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.0.4"
          },
          {
            "model": "db2 advanced workgroup server edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.5"
          },
          {
            "model": "cloud service automation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "4.10"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.71"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.6"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1.2"
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.4.0.0"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.065"
          },
          {
            "model": "operations agent virtual appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "11.13"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.12"
          },
          {
            "model": "security network intrusion prevention system gx4002",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.0"
          },
          {
            "model": "security network intrusion prevention system gx6116",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "financial transaction manager for cps",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.0"
          },
          {
            "model": "network node manager ispi for ip telephony",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.0"
          },
          {
            "model": "tivoli monitoring fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.305"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.26"
          },
          {
            "model": "filenet content manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.0"
          },
          {
            "model": "rlks administration agent",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4.4"
          },
          {
            "model": "aura application enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.2"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.01"
          },
          {
            "model": "infosphere optim performance manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.0.1"
          },
          {
            "model": "rational software architect",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1.2"
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.2919"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1.3"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.2.4"
          },
          {
            "model": "infosphere biginsights",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1"
          },
          {
            "model": "cms r17",
            "scope": null,
            "trust": 0.3,
            "vendor": "avaya",
            "version": null
          },
          {
            "model": "jrockit r28.1.5",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.01"
          },
          {
            "model": "integration bus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.1.4"
          },
          {
            "model": "flex system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1.0.0"
          },
          {
            "model": "enterprise linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "7"
          },
          {
            "model": "db2 express edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.7"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.11"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "model": "watson content analytics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.5.0.2"
          },
          {
            "model": "sterling file gateway",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.8"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.13"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.17"
          },
          {
            "model": "firefox",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "39"
          },
          {
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.10.2"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.06"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.18"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.02"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.7"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.037"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.5"
          },
          {
            "model": "worklight consumer edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.2"
          },
          {
            "model": "tivoli directory integrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.17"
          },
          {
            "model": "fujitsu m10-4 server xcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "2230"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0.1"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.0.2"
          },
          {
            "model": "security network intrusion prevention system gx5208-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.4"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.6"
          },
          {
            "model": "rational insight",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1.1.7"
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.2.2"
          },
          {
            "model": "hp-ux b.11.23.1.007",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "flex system p260 compute node",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "(7895-22x)0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.19"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.12"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.4"
          },
          {
            "model": "linux lts",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "12.04"
          },
          {
            "model": "security network intrusion prevention system gx7412-05",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.0"
          },
          {
            "model": "rational developer for power systems software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.31"
          },
          {
            "model": "content collector for sap applications",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0"
          },
          {
            "model": "notes and domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1.5"
          },
          {
            "model": "db2 developer edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.5"
          },
          {
            "model": "ios for developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "6"
          },
          {
            "model": "sterling connect:direct browser user interface",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.0.10"
          },
          {
            "model": "tivoli key lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0.1"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.6"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "6.0.1"
          },
          {
            "model": "websphere mq internet pass-thru",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1.0.1"
          },
          {
            "model": "aura conferencing",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "8.0"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.8"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.3.0.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "32.0"
          },
          {
            "model": "security network intrusion prevention system gx5208-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "aura application enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.26"
          },
          {
            "model": "financial transaction manager for check",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.5"
          },
          {
            "model": "communication server 1000e signaling server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.6"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.045"
          },
          {
            "model": "tivoli system automation application manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2"
          },
          {
            "model": "jrockit r27.6.4",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "flashcopy manager for oracle with sap environments",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.1.1"
          },
          {
            "model": "security network controller 1.0.3352m",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "network node manager ispi for net",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.5"
          },
          {
            "model": "security identity governance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.0.2"
          },
          {
            "model": "algo one",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.9"
          },
          {
            "model": "aix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.041"
          },
          {
            "model": "aura system manager sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.4"
          },
          {
            "model": "ucmdb",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.11"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.22"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.9"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.22"
          },
          {
            "model": "infosphere information server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "11.3"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "3.2.1"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.7"
          },
          {
            "model": "power hmc sp7",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.7.3.0"
          },
          {
            "model": "operations manager for windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "8.10"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.1"
          },
          {
            "model": "rational business developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1.1"
          },
          {
            "model": "algo credit limits",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5.0"
          },
          {
            "model": "emptoris program management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0"
          },
          {
            "model": "e-series santricity management plug-ins",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netapp",
            "version": "0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.6.1"
          },
          {
            "model": "flashcopy manager for oracle",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.0"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.13"
          },
          {
            "model": "network node manager i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.2"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.12"
          },
          {
            "model": "infosphere guardium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5"
          },
          {
            "model": "flashcopy manager for db2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.4"
          },
          {
            "model": "integration bus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.045"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.1.2"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1"
          },
          {
            "model": "security network intrusion prevention system gx7412",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "hp-ux b.11.23",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "emptoris strategic supply management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.4"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.0.5"
          },
          {
            "model": "security network intrusion prevention system gx5108",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.22"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.1"
          },
          {
            "model": "ts7740 virtualization engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3957-v07"
          },
          {
            "model": "performance manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.20"
          },
          {
            "model": "jrockit r27.7.6",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "db2 enterprise server edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.5"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.9"
          },
          {
            "model": "enterprise linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "5"
          },
          {
            "model": "ucmdb configuration manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.20"
          },
          {
            "model": "hp-ux b.11.11.02.008",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.13"
          },
          {
            "model": "hp-ux web server suite hpuxwsatw406",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hp",
            "version": "4.06"
          },
          {
            "model": "universal discovery",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.10"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.1"
          },
          {
            "model": "netezza host management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.3.2.0"
          },
          {
            "model": "oncommand workflow automation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netapp",
            "version": "0"
          },
          {
            "model": "i v5r3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.53"
          },
          {
            "model": "security network intrusion prevention system gx5208",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "security network intrusion prevention system gx7800",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "30"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.1.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "28.0"
          },
          {
            "model": "meeting exchange",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "model": "tivoli common reporting",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.1"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.4"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.0.2"
          },
          {
            "model": "tls",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "1.0"
          },
          {
            "model": "aix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.3"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.7.0.2"
          },
          {
            "model": "virtualization engine ts7700 r3.0",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.13"
          },
          {
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.10.1"
          },
          {
            "model": "db2 express edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.5"
          },
          {
            "model": "algo credit manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.0"
          },
          {
            "model": "ios",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "apple",
            "version": "8.4"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.0.6"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.14"
          },
          {
            "model": "openssh for gpfs",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.5"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.25"
          },
          {
            "model": "jdk update13",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "flashsystem 9846-ac1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "840"
          },
          {
            "model": "infosphere master data management server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "11.3"
          },
          {
            "model": "rational insight",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1.11"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.6"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.2"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.2"
          },
          {
            "model": "java se embedded 7u25",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.02"
          },
          {
            "model": "spss modeler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "16.0.0.1"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.33"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.1"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.2.5"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.5"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.6"
          },
          {
            "model": "security network intrusion prevention system gx5008",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.1.5"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.8"
          },
          {
            "model": "flashcopy manager for oracle with sap environments",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.0"
          },
          {
            "model": "sparc enterprise m8000 xcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1117"
          },
          {
            "model": "sterling control center ifix04",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.4.0.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.12"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.2"
          },
          {
            "model": "jdk update4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.3"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.024"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.4"
          },
          {
            "model": "3par os mu2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.2.2"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.13.2"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.7"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "15.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "19.0.1"
          },
          {
            "model": "security network intrusion prevention system gx7412",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "qradar incident forensics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0"
          },
          {
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.15.1"
          },
          {
            "model": "jre 1.6.0 33",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "aura application server sip core pb3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "53003.0"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "6.3.1"
          },
          {
            "model": "project and portfolio management center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.20"
          },
          {
            "model": "security network controller 1.0.3381m",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "db2 purescale feature",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "communications messaging server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "8.0"
          },
          {
            "model": "power hmc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.7.9.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.3"
          },
          {
            "model": "tivoli netcool system service monitor fp14",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0"
          },
          {
            "model": "security network intrusion prevention system gx7412-05",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "rational developer for i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1"
          },
          {
            "model": "linux lts i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "12.04"
          },
          {
            "model": "netezza host management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.3.3"
          },
          {
            "model": "sparc enterprise m3000 xcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1117"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.32"
          },
          {
            "model": "security network intrusion prevention system gx5208",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "system storage ts3400 tape library",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0042"
          },
          {
            "model": "security network intrusion prevention system gx4004-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.1.0"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.1.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.1"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.1.1"
          },
          {
            "model": "network node manager ispi performance for traffic",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.0"
          },
          {
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "13.1"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.029"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.6"
          },
          {
            "model": "network node manager ispi for mpls vpn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.0"
          },
          {
            "model": "hp-ux b.11.11.17.02",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "notes and domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0.1"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.1"
          },
          {
            "model": "jrockit r28.2.6",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.0"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.11"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.54"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.13"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.2"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.5"
          },
          {
            "model": "sparc enterprise m9000 xcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1118"
          },
          {
            "model": "realpresence collaboration server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "8.6.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.3"
          },
          {
            "model": "rational software architect for websphere",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "rational insight",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1.1.6"
          },
          {
            "model": "watson content analytics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.5"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.6"
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.0.1"
          },
          {
            "model": "aura system manager sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "rational insight",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1.1.5"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.03"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.15"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.0"
          },
          {
            "model": "cloudaxis mea",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "2.1"
          },
          {
            "model": "rational synergy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.0.7"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "33.0"
          },
          {
            "model": "rational directory server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2"
          },
          {
            "model": "rational tau",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.31"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.023"
          },
          {
            "model": "oncommand unified manager for clustered data ontap",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netapp",
            "version": "0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.8"
          },
          {
            "model": "ftm for cps",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1.1.0"
          },
          {
            "model": "jre update6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "hp-ux b.11.23.07.04",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6.0.2"
          },
          {
            "model": "flashcopy manager for db2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.1"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.41"
          },
          {
            "model": "netezza host management",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.3.7.0"
          },
          {
            "model": "lotus widget factory",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0.0.1"
          },
          {
            "model": "tivoli access manager for e-business",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0"
          },
          {
            "model": "financial transaction manager for ach",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.5"
          },
          {
            "model": "network node manager ispi for ip telephony",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.2"
          },
          {
            "model": "aura conferencing sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "8.0"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.14"
          },
          {
            "model": "flashcopy manager for custom applications",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.0.0"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.5"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.13"
          },
          {
            "model": "system storage ts2900 tape library",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0034"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.1"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.6"
          },
          {
            "model": "flashcopy manager for custom applications",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.1.2"
          },
          {
            "model": "security network intrusion prevention system gv200",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "websphere partner gateway enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.022"
          },
          {
            "model": "system storage ts3400 tape library",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0040"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "18.0"
          },
          {
            "model": "workload deployer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.11"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1.5"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "15.0.1"
          },
          {
            "model": "security proventia network active bypass 0343c3c",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.12"
          },
          {
            "model": "virtualization engine ts7700 r3.2",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.2"
          },
          {
            "model": "cognos controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1.1"
          },
          {
            "model": "performance manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.00"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.09"
          },
          {
            "model": "rational developer for aix and linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1"
          },
          {
            "model": "operational decision manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1"
          },
          {
            "model": "spss modeler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "16.0"
          },
          {
            "model": "operational decision manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.0.3"
          },
          {
            "model": "flashcopy manager for vmware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.0"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.8.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "5.0.1"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1"
          },
          {
            "model": "rational synergy ifix01",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.0.7"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.6"
          },
          {
            "model": "proactive contact",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "model": "ip office application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "8.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.8"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "16.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.5"
          },
          {
            "model": "satellite (for rhel",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6)5.7"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.1"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.22"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.2"
          },
          {
            "model": "real-time compression appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.8"
          },
          {
            "model": "security network intrusion prevention system gx7412-10",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "7"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.01"
          },
          {
            "model": "aura session manager sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "sterling control center ifix03",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.4.2.1"
          },
          {
            "model": "security network intrusion prevention system gx6116",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.29"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.25"
          },
          {
            "model": "rational developer for i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1.1.1"
          },
          {
            "model": "power hmc sp1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.8.2.0"
          },
          {
            "model": "enterprise common collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1.0"
          },
          {
            "model": "network node manager ispi for ip telephony",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "30.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.9"
          },
          {
            "model": "aura communication manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.10"
          },
          {
            "model": "jdk update5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "aura system platform",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2.1.0.9"
          },
          {
            "model": "watson explorer foundational components",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.4"
          },
          {
            "model": "security network intrusion prevention system gx5208",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.010"
          },
          {
            "model": "security network intrusion prevention system gx4004-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "aura application server sip core",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "53003.0"
          },
          {
            "model": "security network intrusion prevention system gx5008-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "rational developer for power systems software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.02"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "0.7"
          },
          {
            "model": "network node manager ispi for net",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.2"
          },
          {
            "model": "sterling connect:direct browser ifix",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.5.0.213"
          },
          {
            "model": "jrockit r28.1.0",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "aura experience portal",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.1"
          },
          {
            "model": "aura experience portal sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.0.3"
          },
          {
            "model": "aura messaging",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "rational sap connector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.6"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.4.10"
          },
          {
            "model": "os image for red hat",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.0"
          },
          {
            "model": "junos os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "juniper",
            "version": "0"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.13"
          },
          {
            "model": "linux -current",
            "scope": null,
            "trust": 0.3,
            "vendor": "slackware",
            "version": null
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "28.0.1"
          },
          {
            "model": "security network intrusion prevention system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2"
          },
          {
            "model": "aura system platform sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "rational software architect for websphere software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.51"
          },
          {
            "model": "image construction and composition tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.3.2.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "25.0.1"
          },
          {
            "model": "cognos metrics manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.2"
          },
          {
            "model": "aura conferencing",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "29.0"
          },
          {
            "model": "jrockit r28.2.9",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "aura system platform sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "centos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "centos",
            "version": "6"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.8"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.10.1"
          },
          {
            "model": "cognos controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.1"
          },
          {
            "model": "b2b advanced communications",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.0.3"
          },
          {
            "model": "linux",
            "scope": null,
            "trust": 0.3,
            "vendor": "gentoo",
            "version": null
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.32"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31"
          },
          {
            "model": "packaging utility",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.8.2"
          },
          {
            "model": "security network intrusion prevention system gx4002",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "network node manager ispi for net",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.6"
          },
          {
            "model": "integrated lights out",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "31.85"
          },
          {
            "model": "websphere partner gateway advanced edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.1.2"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.3"
          },
          {
            "model": "rational tau",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.32"
          },
          {
            "model": "financial transaction manager for cps",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5.1"
          },
          {
            "model": "service manager software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.40"
          },
          {
            "model": "infosphere discovery",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "aura utility services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "smartcloud entry fixpack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.4.0.55"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.13.1"
          },
          {
            "model": "workload deployer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.12"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.4.1.0"
          },
          {
            "model": "aix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.1"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.710"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.8"
          },
          {
            "model": "security network controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.3379"
          },
          {
            "model": "fujitsu m10-1 server xcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "2230"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1.5"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.16"
          },
          {
            "model": "network node manager i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.0"
          },
          {
            "model": "tivoli dynamic workload console",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6.0.2"
          },
          {
            "model": "ip office application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "9.0"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6.0.1"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.20"
          },
          {
            "model": "aura conferencing sp6",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.2"
          },
          {
            "model": "cognos command center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.23"
          },
          {
            "model": "rlks administration agent",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.1"
          },
          {
            "model": "mashup center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.1"
          },
          {
            "model": "operational decision manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1"
          },
          {
            "model": "workload deployer if8",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.7"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1.2"
          },
          {
            "model": "rlks administration and reporting tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4.5"
          },
          {
            "model": "rational sap connector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.5"
          },
          {
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "5.0"
          },
          {
            "model": "system storage ts3400 tape library",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0053"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.7.0.1"
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.6"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.11"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.20"
          },
          {
            "model": "aura messaging sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "jre update1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "security network intrusion prevention system gx6116",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.12"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.8"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.20"
          },
          {
            "model": "rational developer for power systems software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.03"
          },
          {
            "model": "java se embedded 7u51",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "iq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "model": "sterling connect:enterprise for unix build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.4.4.0198"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.031"
          },
          {
            "model": "security network intrusion prevention system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.2"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.7"
          },
          {
            "model": "icewall sso certd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.16"
          },
          {
            "model": "realpresence resource manager",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "9.0"
          },
          {
            "model": "enterprise linux hpc node",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "7"
          },
          {
            "model": "rational software architect",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5.2"
          },
          {
            "model": "spss statistics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "22.0.0.2"
          },
          {
            "model": "security directory integrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2"
          },
          {
            "model": "db2 connect unlimited advanced edition for system z",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.19"
          },
          {
            "model": "notes and domino fp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0.13"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.030"
          },
          {
            "model": "tivoli system automation for multiplatforms",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.7"
          },
          {
            "model": "emptoris program management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.24"
          },
          {
            "model": "sparc enterprise m5000 xcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1117"
          },
          {
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "15.04"
          },
          {
            "model": "bluemix liberty for java",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.19-20150608-1717"
          },
          {
            "model": "spss statistics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "19.0.0.2"
          },
          {
            "model": "cognos controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.17"
          },
          {
            "model": "security network intrusion prevention system gx7412-05",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "aura collaboration environment",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "3.0"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.060"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.4"
          },
          {
            "model": "security network controller 1.0.3361m",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "soa policy gateway pattern for red hat enterprise linux server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5"
          },
          {
            "model": "infosphere biginsights",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.40"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.78"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.019"
          },
          {
            "model": "rational sap connector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.4"
          },
          {
            "model": "security network intrusion prevention system gx4004",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.4"
          },
          {
            "model": "api management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1"
          },
          {
            "model": "jre 1.6.0 37",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.2"
          },
          {
            "model": "infosphere optim performance manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "4.0.1"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.1"
          },
          {
            "model": "network node manager ispi performance for traffic",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.2"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2"
          },
          {
            "model": "release control software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.13"
          },
          {
            "model": "network node manager ispi for mpls vpn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.2"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.4"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.7"
          },
          {
            "model": "aura application enablement services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.7"
          },
          {
            "model": "storwize unified",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "v70001.5.0.1"
          },
          {
            "model": "financial transaction manager for cps",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.4"
          },
          {
            "model": "financial transaction manager for ach",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.3"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.2"
          },
          {
            "model": "security network intrusion prevention system gx3002",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.1.2"
          },
          {
            "model": "emptoris strategic supply management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "14.0"
          },
          {
            "model": "sterling connect:enterprise for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.4"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.410"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.2"
          },
          {
            "model": "discovery and dependency mapping inventory",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.31"
          },
          {
            "model": "meeting exchange sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.060"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.22"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.34"
          },
          {
            "model": "db2 connect enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "flex system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.2.0.0"
          },
          {
            "model": "enterprise linux workstation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "7"
          },
          {
            "model": "workload deployer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.16"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "8.1.3"
          },
          {
            "model": "ucmdb",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.10"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.6"
          },
          {
            "model": "jrockit r28.2.8",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "sterling integrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1"
          },
          {
            "model": "rational automation framework",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.2"
          },
          {
            "model": "infosphere optim performance manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.3"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.6"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.12"
          },
          {
            "model": "netscaler t1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "0"
          },
          {
            "model": "license metric tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.2.0.0"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.9"
          },
          {
            "model": "emptoris sourcing",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.2.6"
          },
          {
            "model": "content foundation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.0"
          },
          {
            "model": "jrockit r27.6.2",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.1"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.3"
          },
          {
            "model": "project and portfolio management center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.30"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.4"
          },
          {
            "model": "rational engineering lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.4"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2.3"
          },
          {
            "model": "image construction and composition tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.3.1.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.18"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.56"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.4"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "7.1.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "13.0"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.25"
          },
          {
            "model": "network node manager ispi performance for traffic",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.0"
          },
          {
            "model": "aura system platform sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "sterling connect:direct browser user interface",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.51"
          },
          {
            "model": "network node manager ispi for mpls vpn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.0"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.039"
          },
          {
            "model": "security network intrusion prevention system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.1.2"
          },
          {
            "model": "service manager software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.33"
          },
          {
            "model": "ftm for check services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1.1.8"
          },
          {
            "model": "flashsystem 9843-ae1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "840"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.27"
          },
          {
            "model": "notes and domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0"
          },
          {
            "model": "sterling connect:direct browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.5"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.1"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.026"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.54"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.4"
          },
          {
            "model": "tivoli composite application manager for transactions",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.4"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1.3"
          },
          {
            "model": "tivoli dynamic workload console",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.2"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.1"
          },
          {
            "model": "qradar siem patch ifix01",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.44"
          },
          {
            "model": "tivoli access manager for e-business",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.1"
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.25-57"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0.2"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.5"
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.18-43"
          },
          {
            "model": "tivoli key lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.2"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.22"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.17"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "jrockit r28.2.4",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.1"
          },
          {
            "model": "security appscan enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0.1"
          },
          {
            "model": "financial transaction manager for ach",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.0"
          },
          {
            "model": "security network controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.913"
          },
          {
            "model": "security appscan enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.00"
          },
          {
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.13"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "27.0"
          },
          {
            "model": "release control software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.21"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.13"
          },
          {
            "model": "bsm connector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.21"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.15"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.0.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5.0"
          },
          {
            "model": "aspera enterprise server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.5.5"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.10"
          },
          {
            "model": "security network intrusion prevention system gv200",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.5"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0"
          },
          {
            "model": "emptoris rivermine telecom expense management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.5.11"
          },
          {
            "model": "mobilefirst platform foundation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.0.0"
          },
          {
            "model": "jrockit r27.6.9",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.5"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.4"
          },
          {
            "model": "websphere partner gateway enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.1.2"
          },
          {
            "model": "spss modeler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "14.2"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.9"
          },
          {
            "model": "flashcopy manager for oracle",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.4"
          },
          {
            "model": "flashsystem 9846-ae1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "840"
          },
          {
            "model": "aura communication manager ssp04",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.040"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.0.6"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "16.0.1"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.32"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.11"
          },
          {
            "model": "flashcopy manager for custom applications",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.0"
          },
          {
            "model": "ediscovery analyzer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.12"
          },
          {
            "model": "fujitsu m10-4 server xcp",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "2271"
          },
          {
            "model": "jrockit r27.6.3",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.9"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.5"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.2.3"
          },
          {
            "model": "meeting exchange",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.0.11"
          },
          {
            "model": "cloud service automation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "4.01"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.7"
          },
          {
            "model": "emptoris sourcing",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.2.0"
          },
          {
            "model": "general parallel file system",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.5.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.3"
          },
          {
            "model": "cognos insight",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.1"
          },
          {
            "model": "enterprise linux desktop",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0.0.4"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3"
          },
          {
            "model": "jdk update1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.23"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.61"
          },
          {
            "model": "dataquant",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1"
          },
          {
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "13.2"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.8.06"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.24"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.44"
          },
          {
            "model": "meeting exchange sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "model": "rational automation framework",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1"
          },
          {
            "model": "packaging utility",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.8.2.1"
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.2"
          },
          {
            "model": "java se embedded 7u75",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.6"
          },
          {
            "model": "b2b advanced communications",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.0.2"
          },
          {
            "model": "infosphere biginsights",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.2"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.14"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.2.7"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0.2"
          },
          {
            "model": "project and portfolio management center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.13"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.071"
          },
          {
            "model": "enterprise linux client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.0"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.12"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.16"
          },
          {
            "model": "powerkvm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.5"
          },
          {
            "model": "sterling connect:enterprise for unix ifix03",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.0.3"
          },
          {
            "model": "websphere service registry and repository",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5.0"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.0.6"
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.15-36"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.4"
          },
          {
            "model": "jre update21",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "rational doors next generation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.2"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.06"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.18"
          },
          {
            "model": "websphere cast iron",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.6"
          },
          {
            "model": "video border proxy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "0"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.6"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.8"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.11"
          },
          {
            "model": "ucmdb configuration manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.01"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.8"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.9"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "8.0"
          },
          {
            "model": "rational business developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.11"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.08"
          },
          {
            "model": "rational directory server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.0.2"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.13"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.6"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.1.3"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.21"
          },
          {
            "model": "tivoli monitoring fp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.20"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.037"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.0.7"
          },
          {
            "model": "aura messaging",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.1"
          },
          {
            "model": "secure sockets layer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "3.0"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.8"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "12.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.6"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.3.0"
          },
          {
            "model": "operations manager for linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.11"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.8"
          },
          {
            "model": "rational developer for i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1.1"
          },
          {
            "model": "rlks administration and reporting tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4.3"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.024"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.2"
          },
          {
            "model": "aura communication manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3.8"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.13"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.1.1"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1.6"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.3.6"
          },
          {
            "model": "sparc enterprise m9000 xcp",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1121"
          },
          {
            "model": "operational decision manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.2"
          },
          {
            "model": "tivoli monitoring fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.205"
          },
          {
            "model": "security network intrusion prevention system gv200",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "emptoris program management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.2.6"
          },
          {
            "model": "qradar siem mr2 patch ifi",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.110"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "32.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.3"
          },
          {
            "model": "infosphere guardium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1"
          },
          {
            "model": "hp-ux apache web server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "0"
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.2"
          },
          {
            "model": "hp-ux tomcat servlet engine",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5.5.36.02"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.1"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.2"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.3.6"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "7.0.4"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.5"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.8"
          },
          {
            "model": "security network controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.1768"
          },
          {
            "model": "filenet business process manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.4"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.9"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.7"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.41"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.1"
          },
          {
            "model": "flashcopy manager for oracle with sap environments",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.7"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.10"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0.2"
          },
          {
            "model": "firefox os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0"
          },
          {
            "model": "hp-ux b.11.11.13.14",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.9"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "7.0.6"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.2"
          },
          {
            "model": "sterling connect:direct browser ifix",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.11.04"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.8"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.28"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.1.1"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.2.4"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.15"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.2"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.11"
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0"
          },
          {
            "model": "cognos metrics manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1.1"
          },
          {
            "model": "sterling connect:direct browser user interface",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.5"
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1.3"
          },
          {
            "model": "power hmc",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.8.3.0"
          },
          {
            "model": "rlks administration agent",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4.3"
          },
          {
            "model": "flashcopy manager for oracle",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.1"
          },
          {
            "model": "jre update25",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "linux lts amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "12.04"
          },
          {
            "model": "realpresence resource manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "0"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.1.5"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "6"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.6"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.2"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.10"
          },
          {
            "model": "smartcloud entry fixpack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.412"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.5"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.11"
          },
          {
            "model": "security network intrusion prevention system gx5108-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "rational developer for aix and linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1.1"
          },
          {
            "model": "hp-ux b.11.11",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "36"
          },
          {
            "model": "license metric tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0.1"
          },
          {
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.12.1"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.14"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.6.0.3"
          },
          {
            "model": "algo credit administrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.1.2"
          },
          {
            "model": "network node manager ispi for ip multicast qa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.0"
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.29-9"
          },
          {
            "model": "rational engineering lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.7"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.211"
          },
          {
            "model": "operations manager for linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.20"
          },
          {
            "model": "tivoli monitoring",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.32"
          },
          {
            "model": "rational business developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0.1"
          },
          {
            "model": "rational software architect for websphere software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1.1"
          },
          {
            "model": "db2 recovery expert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.0"
          },
          {
            "model": "operations agent virtual appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "11.12"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "15"
          },
          {
            "model": "flashcopy manager for vmware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.4"
          },
          {
            "model": "aura system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "jrockit r27.7.5",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.1.0"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.1"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.33"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.14"
          },
          {
            "model": "watson explorer analytical components",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.13"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.0"
          },
          {
            "model": "flex system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.3.20"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.7"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.6"
          },
          {
            "model": "rational doors web access",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.6"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.20"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.18"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.0"
          },
          {
            "model": "rational engineering lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "19.0.2"
          },
          {
            "model": "integrated lights out",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hp",
            "version": "42.30"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.1.15"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.5"
          },
          {
            "model": "power hmc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.7.3.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.8"
          },
          {
            "model": "rlks administration and reporting tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4.2"
          },
          {
            "model": "spss modeler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "15.0"
          },
          {
            "model": "cognos express",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.2"
          },
          {
            "model": "network node manager ispi for net",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.1"
          },
          {
            "model": "workload deployer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.17"
          },
          {
            "model": "security network intrusion prevention system gx7412",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.141"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.4"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.0.1"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.3"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "15.0"
          },
          {
            "model": "storwize unified",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "v70001.5.2.0"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5.4"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.1.6"
          },
          {
            "model": "i v5r4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2"
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.4"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.6"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.3"
          },
          {
            "model": "spss modeler",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "17.0.0.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0"
          },
          {
            "model": "smartcloud entry",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.3.0"
          },
          {
            "model": "db2 connect application server edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.7"
          },
          {
            "model": "video border proxy",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "11.2.23"
          },
          {
            "model": "tivoli system automation application manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1"
          },
          {
            "model": "algo credit administrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1.2"
          },
          {
            "model": "content collector for sap applications",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0"
          },
          {
            "model": "content foundation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.1"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.16"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.21"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.51"
          },
          {
            "model": "rational insight",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1.13"
          },
          {
            "model": "emptoris sourcing",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.0.0"
          },
          {
            "model": "sterling connect:direct browser",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.5.2"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.11"
          },
          {
            "model": "infosphere optim performance manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.1.1"
          },
          {
            "model": "operations agent virtual appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "11.11"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1"
          },
          {
            "model": "smartcloud entry fp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.19"
          },
          {
            "model": "websphere service registry and repository",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.5"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1.1"
          },
          {
            "model": "algo one",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.7.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.4"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.2"
          },
          {
            "model": "security network intrusion prevention system gv1000",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "19.0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.23"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.010"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "14.0.1"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.0.10"
          },
          {
            "model": "aura collaboration environment",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "2.0"
          },
          {
            "model": "sdk for node.js",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1.0.15"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.3.0.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.7"
          },
          {
            "model": "rational doors next generation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "29"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "2.1"
          },
          {
            "model": "rational insight",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1.12"
          },
          {
            "model": "discovery and dependency mapping inventory update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.321"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.32"
          },
          {
            "model": "sparc enterprise m3000 xcp",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1121"
          },
          {
            "model": "3par os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.1.3"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.3.3"
          },
          {
            "model": "security network intrusion prevention system gx4004",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "aura conferencing",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.2"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.5"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.26"
          },
          {
            "model": "jrockit r28.1.3",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "rlks administration agent",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.9"
          },
          {
            "model": "sterling connect:express for unix ifix",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.4.6.1146-110"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "32.0.3"
          },
          {
            "model": "security network intrusion prevention system gx4004-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "rlks administration and reporting tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4.4"
          },
          {
            "model": "cognos command center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.2.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.5"
          },
          {
            "model": "security network intrusion prevention system gx5108-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0.4"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.2"
          },
          {
            "model": "secure global desktop",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "4.71"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.0"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.110"
          },
          {
            "model": "rational test workbench",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.13"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.23"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.3"
          },
          {
            "model": "operations manager for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.11"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1.2"
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.0.0"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.51"
          },
          {
            "model": "rational publishing engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.0"
          },
          {
            "model": "rational doors next generation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.4"
          },
          {
            "model": "security appscan enterprise",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0"
          },
          {
            "model": "aura session manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.1"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0.1"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.023"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.6.28"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.5"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.5"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.33"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.1"
          },
          {
            "model": "db2 connect unlimited edition for system i",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "infosphere optim performance manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1"
          },
          {
            "model": "centos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "centos",
            "version": "7"
          },
          {
            "model": "qradar siem mr1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1"
          },
          {
            "model": "db2 connect unlimited edition for system z",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.2"
          },
          {
            "model": "content sharing suite client/server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "polycom",
            "version": "0"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.29.1"
          },
          {
            "model": "security network intrusion prevention system gx3002",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "hp-ux web server suite hpuxwsatw331",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.31"
          },
          {
            "model": "hp-ux php",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5.2.17.04"
          },
          {
            "model": "websphere enterprise service bus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2"
          },
          {
            "model": "websphere message broker",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.0.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.2"
          },
          {
            "model": "urbancode release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.1.3"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.24"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.4"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "5.1"
          },
          {
            "model": "rational software architect design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0"
          },
          {
            "model": "tivoli composite application manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "model": "security network intrusion prevention system gv1000",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "rlks administration and reporting tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4.8"
          },
          {
            "model": "omnifind enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1.5"
          },
          {
            "model": "flex system p460 compute node",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "(7895-42x)0"
          },
          {
            "model": "tivoli storage manager fastback for workstations central adminis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1"
          },
          {
            "model": "jrockit r28.0.2",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.4"
          },
          {
            "model": "hyper-scale manager",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.7.0.1"
          },
          {
            "model": "jre update9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.0"
          },
          {
            "model": "java se embedded 7u40",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "systems director",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.3.3.0"
          },
          {
            "model": "ios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "8.1.1"
          },
          {
            "model": "spss modeler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "16.0.0.0"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1.9"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.512"
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.18-49"
          },
          {
            "model": "infosphere information server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1"
          },
          {
            "model": "aura presence services sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.14"
          },
          {
            "model": "web experience factory",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.5"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.5"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.5.1"
          },
          {
            "model": "db2 connect application server edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.5"
          },
          {
            "model": "puredata system for analytics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.17"
          },
          {
            "model": "network node manager ispi performance for traffic",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.1"
          },
          {
            "model": "fujitsu m10-4s server xcp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "2230"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.8.05"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "23.0"
          },
          {
            "model": "smartcloud entry fix pack",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.09"
          },
          {
            "model": "financial transaction manager for ach",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.1"
          },
          {
            "model": "network node manager ispi for mpls vpn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "32"
          },
          {
            "model": "communication server 1000m signaling server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.0"
          },
          {
            "model": "firefox esr",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "38.1"
          },
          {
            "model": "secure sockets layer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "1.0"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.40"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.19"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5.2"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.12"
          },
          {
            "model": "emptoris sourcing portfolio",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.12"
          },
          {
            "model": "cloudbridge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "citrix",
            "version": "0"
          },
          {
            "model": "spss modeler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "14.2.0.0"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0.11"
          },
          {
            "model": "communication server 1000e",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.0"
          },
          {
            "model": "rational rhapsody design manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.5"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "7.0"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.0"
          },
          {
            "model": "tivoli directory integrator",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0"
          },
          {
            "model": "security network intrusion prevention system gx6116",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.3"
          },
          {
            "model": "infosphere optim performance manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.3.1"
          },
          {
            "model": "emptoris strategic supply management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.2.4"
          },
          {
            "model": "ds8870",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "6.0.1"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.1.9"
          },
          {
            "model": "security network controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.3381"
          },
          {
            "model": "rational software architect",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1"
          },
          {
            "model": "operations manager for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.20"
          },
          {
            "model": "security proventia network active bypass",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.9-34"
          },
          {
            "model": "infosphere biginsights",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1.0.0"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.5"
          },
          {
            "model": "flex system p24l compute node",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0"
          },
          {
            "model": "flex system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.2.1.0"
          },
          {
            "model": "rational developer for power systems software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.01"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.22"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.53"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.5.12"
          },
          {
            "model": "emptoris rivermine telecom expense management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.5.1"
          },
          {
            "model": "ts3200 tape library c.80",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "infosphere information server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.22"
          },
          {
            "model": "cognos controller",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "31.5.3"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.2"
          },
          {
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "6.0"
          },
          {
            "model": "rational requirements composer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.4"
          },
          {
            "model": "aura presence services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.1.1"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.0.1"
          },
          {
            "model": "linux enterprise server sp1 ltss",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.0.4"
          },
          {
            "model": "centos",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "centos",
            "version": "5"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.19"
          },
          {
            "model": "websphere enterprise service bus",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1"
          },
          {
            "model": "web experience factory",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.1"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.16"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.4"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.10"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.0"
          },
          {
            "model": "sterling control center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.4.2.1"
          },
          {
            "model": "rational developer for power systems software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.3"
          },
          {
            "model": "vios",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.1.8"
          },
          {
            "model": "security network intrusion prevention system gx7412-10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "22.04917"
          },
          {
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.10"
          },
          {
            "model": "watson explorer annotation administration console",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0"
          },
          {
            "model": "installation manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.8.1"
          },
          {
            "model": "alienvault",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "alienvault",
            "version": "4.14"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.5.0.1"
          },
          {
            "model": "infosphere streams",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.1.0.4"
          },
          {
            "model": "watson content analytics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.2.0.3"
          },
          {
            "model": "rational service tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.26"
          },
          {
            "model": "hyper-scale manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.7.0.0"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.051"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.3.0.6"
          },
          {
            "model": "content collector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.4"
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.1"
          },
          {
            "model": "tivoli dynamic workload console",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.1"
          },
          {
            "model": "spss analytic server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0.1"
          },
          {
            "model": "rational software architect",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5"
          },
          {
            "model": "emptoris sourcing",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.0.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.16"
          },
          {
            "model": "security network intrusion prevention system gx5008-v2",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "aura application server sip core sp10",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "53003.0"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "23.0.1"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.6"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.10"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.12"
          },
          {
            "model": "jrockit r28.2.7",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "rational directory server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.1"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "5"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.9"
          },
          {
            "model": "worklight enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.0.2"
          },
          {
            "model": "security network intrusion prevention system gx7800",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.2"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "34.0.5"
          },
          {
            "model": "flashcopy manager for unix and linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.0.0"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.711"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.11"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "5.0"
          },
          {
            "model": "satellite (for rhel",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5)5.6"
          },
          {
            "model": "flashcopy manager for unix and linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.1.2"
          },
          {
            "model": "notes and domino",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.2"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "21.0"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.725"
          },
          {
            "model": "operational decision manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0"
          },
          {
            "model": "mq light",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.0"
          },
          {
            "model": "financial transaction manager for ach",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.0.4"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "11.0.1"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.0.0.9"
          },
          {
            "model": "jdk update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.7.051"
          },
          {
            "model": "security network intrusion prevention system gx5208-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.1.2"
          },
          {
            "model": "aspera ondemand",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.5.4"
          },
          {
            "model": "xiv management tools",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.0.1"
          },
          {
            "model": "security key lifecycle manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.0.1.2"
          },
          {
            "model": "rational performance tester",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.7"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "17.0.3"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.18"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.72"
          },
          {
            "model": "sterling connect:enterprise for unix ifix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.0.37"
          },
          {
            "model": "jre update",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "oracle",
            "version": "1.6.031"
          },
          {
            "model": "qradar siem patch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.43"
          },
          {
            "model": "real-time compression appliance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1"
          },
          {
            "model": "secure sockets layer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "2.0"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.18"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.4.1.3"
          },
          {
            "model": "system storage ts3400 tape library",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "0055"
          },
          {
            "model": "tivoli storage productivity center",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.2.4.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.35"
          },
          {
            "model": "db2 connect unlimited edition for system z",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.5"
          },
          {
            "model": "worklight foundation enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.2.0.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.16.1"
          },
          {
            "model": "network node manager ispi for ip multicast qa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.0"
          },
          {
            "model": "license metric tool",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0"
          },
          {
            "model": "proactive contact",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5.5"
          },
          {
            "model": "bsm connector",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "10.00"
          },
          {
            "model": "tivoli common reporting",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1"
          },
          {
            "model": "emptoris strategic supply management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.0.2.6"
          },
          {
            "model": "emptoris contract management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.5.0.5"
          },
          {
            "model": "firefox",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.0.0.14"
          },
          {
            "model": "rational software architect for websphere software",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.5.5.1"
          },
          {
            "model": "tivoli workload scheduler distributed",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.2"
          },
          {
            "model": "rlks administration agent",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.1.4.7"
          },
          {
            "model": "rational publishing engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.1"
          },
          {
            "model": "ara",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.5.2"
          },
          {
            "model": "rational business developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "9.0"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.3"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0"
          },
          {
            "model": "business service automation essentials",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "9.11"
          },
          {
            "model": "tivoli application dependency discovery manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.2.0.1"
          },
          {
            "model": "oncommand unified manager for clustered data ontap",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "netapp",
            "version": "6.0"
          },
          {
            "model": "rational application developer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5.1"
          },
          {
            "model": "security network intrusion prevention system gx5108-v2",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.9"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1.4"
          },
          {
            "model": "flashcopy manager for oracle",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.0.0"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.1.13"
          },
          {
            "model": "websphere transformation extender",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.2.0.5"
          },
          {
            "model": "db2 workgroup server edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.1"
          },
          {
            "model": "flashcopy manager for oracle",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.1.1.2"
          },
          {
            "model": "flex system manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "1.3.3.0"
          },
          {
            "model": "urbancode deploy",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.1.1.4"
          },
          {
            "model": "websphere mq",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.11"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "14.0"
          },
          {
            "model": "security network intrusion prevention system gx7800",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5"
          },
          {
            "model": "security network intrusion prevention system gx4004-v2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.6.1"
          },
          {
            "model": "rational clearcase",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.1"
          },
          {
            "model": "jrockit r27.8.2",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "filenet business process manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.5.1"
          },
          {
            "model": "ts7720 virtualization engine 3957-vea",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "communication server 1000m",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.5"
          },
          {
            "model": "spss collaboration and deployment services",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "6.0"
          },
          {
            "model": "infosphere information server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "8.7"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.6"
          },
          {
            "model": "rational clearquest",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2.10"
          },
          {
            "model": "firefox esr",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "24.1.1"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "2.15.1"
          },
          {
            "model": "jrockit r28.2.5",
            "scope": null,
            "trust": 0.3,
            "vendor": "oracle",
            "version": null
          },
          {
            "model": "security network intrusion prevention system gx7412-05",
            "scope": null,
            "trust": 0.3,
            "vendor": "ibm",
            "version": null
          },
          {
            "model": "rational doors next generation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0.7"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "10.0.2"
          },
          {
            "model": "icewall mcrp",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "3.0"
          },
          {
            "model": "rational tau",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.33"
          },
          {
            "model": "emptoris spend analysis",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "10.00"
          },
          {
            "model": "netezza host management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "5.3.6.0"
          },
          {
            "model": "watson content analytics",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "2.1.0.2"
          },
          {
            "model": "integration designer",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.5"
          },
          {
            "model": "communication server 1000m signaling server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.5"
          },
          {
            "model": "infosphere biginsights",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.01"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.33"
          },
          {
            "model": "flashcopy manager for custom applications",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "3.2.0.0"
          },
          {
            "model": "rational team concert",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "4.0"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.0.34"
          },
          {
            "model": "thunderbird",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "3.0.4"
          },
          {
            "model": "communication server 1000e",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "7.5"
          },
          {
            "model": "spss modeler",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "15.0.0.2"
          },
          {
            "model": "rational build forge",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.1.2"
          },
          {
            "model": "seamonkey",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mozilla",
            "version": "1.0.99"
          },
          {
            "model": "websphere application server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.010"
          },
          {
            "model": "emptoris rivermine telecom expense management",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.0.1"
          },
          {
            "model": "qradar siem mr2 patch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ibm",
            "version": "7.19"
          }
        ],
        "sources": [
          {
            "db": "BID",
            "id": "74733"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-002764"
          },
          {
            "db": "NVD",
            "id": "CVE-2015-4000"
          }
        ]
      },
      "configurations": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/configurations#",
          "children": {
            "@container": "@list"
          },
          "cpe_match": {
            "@container": "@list"
          },
          "data": {
            "@container": "@list"
          },
          "nodes": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "CVE_data_version": "4.0",
            "nodes": [
              {
                "cpe_match": [
                  {
                    "cpe22Uri": "cpe:/a:google:chrome",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:mozilla:firefox",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:opera:opera_browser",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:apple:mac_os_x",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:apple:iphone_os",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:apple:safari",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:oracle:jdk",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:oracle:jre",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:oracle:communications_applications",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:oracle:glassfish_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:oracle:iplanet_web_proxy_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:oracle:iplanet_web_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:oracle:java_se",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:oracle:jrockit",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:oracle:opensso",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:oracle:traffic_director",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:oracle:virtualization_secure_global_desktop",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:oracle:sparc_enterprise_m3000_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:oracle:sparc_enterprise_m4000_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:oracle:sparc_enterprise_m5000_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:oracle:sparc_enterprise_m8000_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:oracle:sparc_enterprise_m9000_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:oracle:xcp",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:microsoft:internet_explorer",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:nec:capssuite",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:nec:enterprise_directoryserver",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:express5800",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ip38x_n500",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:istorage",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix2000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix3000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:nec:secureware_pki_application_development_kit",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:univerge",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:nec:webotx",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:nec:webotx_application_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:nec:webotx_enterprise_service_bus",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:nec:webotx_portal",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:nec:webotx_sip_application_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:nec:websam",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:cosminexus_developers_kit_for_java",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hitachi:ha8500",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:hitachi_application_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:hitachi_application_server_for_developers",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:hitachi_developers_kit_for_java",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_application_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_application_server_enterprise",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_application_server_smart_edition",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_application_server_standard",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_client",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_developer",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_developer_light",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_developer_standard",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_operator",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_primary_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_server",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_service_architect",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ucosminexus_service_platform",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:hitachi:ups_management_software",
                    "vulnerable": true
                  }
                ],
                "operator": "OR"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-002764"
          }
        ]
      },
      "credits": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/credits#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "Red Hat",
        "sources": [
          {
            "db": "PACKETSTORM",
            "id": "132943"
          },
          {
            "db": "PACKETSTORM",
            "id": "132729"
          },
          {
            "db": "PACKETSTORM",
            "id": "132803"
          },
          {
            "db": "PACKETSTORM",
            "id": "139115"
          },
          {
            "db": "PACKETSTORM",
            "id": "132728"
          },
          {
            "db": "PACKETSTORM",
            "id": "132696"
          }
        ],
        "trust": 0.6
      },
      "cve": "CVE-2015-4000",
      "cvss": {
        "@context": {
          "cvssV2": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2"
          },
          "cvssV3": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/"
          },
          "severity": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/cvss/severity#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/severity"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "cvssV2": [
              {
                "accessComplexity": "MEDIUM",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "nvd@nist.gov",
                "availabilityImpact": "NONE",
                "baseScore": 4.3,
                "confidentialityImpact": "NONE",
                "exploitabilityScore": 8.6,
                "id": "CVE-2015-4000",
                "impactScore": 2.9,
                "integrityImpact": "PARTIAL",
                "severity": "MEDIUM",
                "trust": 1.8,
                "vectorString": "AV:N/AC:M/Au:N/C:N/I:P/A:N",
                "version": "2.0"
              },
              {
                "accessComplexity": "MEDIUM",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "VULHUB",
                "availabilityImpact": "NONE",
                "baseScore": 4.3,
                "confidentialityImpact": "NONE",
                "exploitabilityScore": 8.6,
                "id": "VHN-81961",
                "impactScore": 2.9,
                "integrityImpact": "PARTIAL",
                "severity": "MEDIUM",
                "trust": 0.1,
                "vectorString": "AV:N/AC:M/AU:N/C:N/I:P/A:N",
                "version": "2.0"
              }
            ],
            "cvssV3": [
              {
                "attackComplexity": "HIGH",
                "attackVector": "NETWORK",
                "author": "nvd@nist.gov",
                "availabilityImpact": "NONE",
                "baseScore": 3.7,
                "baseSeverity": "LOW",
                "confidentialityImpact": "NONE",
                "exploitabilityScore": 2.2,
                "id": "CVE-2015-4000",
                "impactScore": 1.4,
                "integrityImpact": "LOW",
                "privilegesRequired": "NONE",
                "scope": "UNCHANGED",
                "trust": 1.8,
                "userInteraction": "NONE",
                "vectorString": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N",
                "version": "3.0"
              }
            ],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2015-4000",
                "trust": 1.0,
                "value": "LOW"
              },
              {
                "author": "NVD",
                "id": "CVE-2015-4000",
                "trust": 0.8,
                "value": "Low"
              },
              {
                "author": "VULHUB",
                "id": "VHN-81961",
                "trust": 0.1,
                "value": "MEDIUM"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-81961"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-002764"
          },
          {
            "db": "NVD",
            "id": "CVE-2015-4000"
          }
        ]
      },
      "description": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/description#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "The TLS protocol 1.2 and earlier, when a DHE_EXPORT ciphersuite is enabled on a server but not on a client, does not properly convey a DHE_EXPORT choice, which allows man-in-the-middle attackers to conduct cipher-downgrade attacks by rewriting a ClientHello with DHE replaced by DHE_EXPORT and then rewriting a ServerHello with DHE_EXPORT replaced by DHE, aka the \"Logjam\" issue. TLS The protocol is DHE_EXPORT If the cipher suite is enabled on the server and not the client, DHE_EXPORT Vulnerabilities exist that allow a cryptographic algorithm downgrade attack to be performed because the client is not properly notified that is selected. This vulnerability \"Logjam\" It is called.Man-in-the-middle attacks (man-in-the-middle attack) By ClientHello of DHE The DHE_EXPORT And then ServerHello of DHE_EXPORT The DHE Can be used to perform a cryptographic algorithm downgrade attack. SSL/TLS is prone to security-bypass vulnerability. \nSuccessfully exploiting this issue may allow attackers to perform unauthorized actions by conducting a man-in-the-middle attack. This may lead to other attacks. -----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA1\n\n=====================================================================\n                   Red Hat Security Advisory\n\nSynopsis:          Important: java-1.8.0-openjdk security update\nAdvisory ID:       RHSA-2015:1228-01\nProduct:           Red Hat Enterprise Linux\nAdvisory URL:      https://rhn.redhat.com/errata/RHSA-2015-1228.html\nIssue date:        2015-07-15\nCVE Names:         CVE-2015-2590 CVE-2015-2601 CVE-2015-2621 \n                   CVE-2015-2625 CVE-2015-2628 CVE-2015-2632 \n                   CVE-2015-2659 CVE-2015-2808 CVE-2015-3149 \n                   CVE-2015-4000 CVE-2015-4731 CVE-2015-4732 \n                   CVE-2015-4733 CVE-2015-4748 CVE-2015-4749 \n                   CVE-2015-4760 \n=====================================================================\n\n1. Summary:\n\nUpdated java-1.8.0-openjdk packages that fix multiple security issues are\nnow available for Red Hat Enterprise Linux 6 and 7. \n\nRed Hat Product Security has rated this update as having Important security\nimpact. Common Vulnerability Scoring System (CVSS) base scores, which give\ndetailed severity ratings, are available for each vulnerability from the\nCVE links in the References section. \n\n2. Relevant releases/architectures:\n\nRed Hat Enterprise Linux Client (v. 7) - x86_64\nRed Hat Enterprise Linux Client Optional (v. 7) - noarch, x86_64\nRed Hat Enterprise Linux ComputeNode (v. 7) - x86_64\nRed Hat Enterprise Linux ComputeNode Optional (v. 7) - noarch, x86_64\nRed Hat Enterprise Linux Desktop (v. 6) - i386, x86_64\nRed Hat Enterprise Linux Desktop Optional (v. 6) - i386, noarch, x86_64\nRed Hat Enterprise Linux HPC Node (v. 6) - x86_64\nRed Hat Enterprise Linux HPC Node Optional (v. 6) - noarch, x86_64\nRed Hat Enterprise Linux Server (v. 6) - i386, x86_64\nRed Hat Enterprise Linux Server (v. 7) - ppc64, ppc64le, s390x, x86_64\nRed Hat Enterprise Linux Server Optional (v. 6) - i386, noarch, x86_64\nRed Hat Enterprise Linux Server Optional (v. 7) - noarch, ppc64, ppc64le, s390x, x86_64\nRed Hat Enterprise Linux Workstation (v. 6) - i386, x86_64\nRed Hat Enterprise Linux Workstation (v. 7) - x86_64\nRed Hat Enterprise Linux Workstation Optional (v. 6) - i386, noarch, x86_64\nRed Hat Enterprise Linux Workstation Optional (v. 7) - noarch, x86_64\n\n3. Description:\n\nThe java-1.8.0-openjdk packages provide the OpenJDK 8 Java Runtime\nEnvironment and the OpenJDK 8 Java Software Development Kit. \n\nMultiple flaws were discovered in the 2D, CORBA, JMX, Libraries and RMI\ncomponents in OpenJDK. An untrusted Java application or applet could use\nthese flaws to bypass Java sandbox restrictions. (CVE-2015-4760,\nCVE-2015-2628, CVE-2015-4731, CVE-2015-2590, CVE-2015-4732, CVE-2015-4733)\n\nA flaw was found in the way the Libraries component of OpenJDK verified\nOnline Certificate Status Protocol (OCSP) responses. An OCSP response with\nno nextUpdate date specified was incorrectly handled as having unlimited\nvalidity, possibly causing a revoked X.509 certificate to be interpreted as\nvalid. (CVE-2015-4748)\n\nIt was discovered that the JCE component in OpenJDK failed to use constant\ntime comparisons in multiple cases. An attacker could possibly use these\nflaws to disclose sensitive information by measuring the time used to\nperform operations using these non-constant time comparisons. \n(CVE-2015-2601)\n\nIt was discovered that the GCM (Galois Counter Mode) implementation in the\nSecurity component of OpenJDK failed to properly perform a null check. \nThis could cause the Java Virtual Machine to crash when an application\nperformed encryption using a block cipher in the GCM mode. (CVE-2015-2659)\n\nA flaw was found in the RC4 encryption algorithm. When using certain keys\nfor RC4 encryption, an attacker could obtain portions of the plain text\nfrom the cipher text without the knowledge of the encryption key. \n(CVE-2015-2808)\n\nNote: With this update, OpenJDK now disables RC4 TLS/SSL cipher suites by\ndefault to address the CVE-2015-2808 issue. Refer to Red Hat Bugzilla bug\n1207101, linked to in the References section, for additional details about\nthis change. \n\nA flaw was found in the way the TLS protocol composed the Diffie-Hellman\n(DH) key exchange. A man-in-the-middle attacker could use this flaw to\nforce the use of weak 512 bit export-grade keys during the key exchange,\nallowing them do decrypt all traffic. (CVE-2015-4000)\n\nNote: This update forces the TLS/SSL client implementation in OpenJDK to\nreject DH key sizes below 768 bits, which prevents sessions to be\ndowngraded to export-grade keys. Refer to Red Hat Bugzilla bug 1223211,\nlinked to in the References section, for additional details about this\nchange. \n\nIt was discovered that the JNDI component in OpenJDK did not handle DNS\nresolutions correctly. An attacker able to trigger such DNS errors could\ncause a Java application using JNDI to consume memory and CPU time, and\npossibly block further DNS resolution. (CVE-2015-4749)\n\nMultiple information leak flaws were found in the JMX and 2D components in\nOpenJDK. An untrusted Java application or applet could use this flaw to\nbypass certain Java sandbox restrictions. (CVE-2015-2621, CVE-2015-2632)\n\nA flaw was found in the way the JSSE component in OpenJDK performed X.509\ncertificate identity verification when establishing a TLS/SSL connection to\na host identified by an IP address. In certain cases, the certificate was\naccepted as valid if it was issued for a host name to which the IP address\nresolves rather than for the IP address. (CVE-2015-2625)\n\nMultiple insecure temporary file use issues were found in the way the\nHotspot component in OpenJDK created performance statistics and error log\nfiles. A local attacker could possibly make a victim using OpenJDK\noverwrite arbitrary files using a symlink attack. Note: This issue was\noriginally fixed as CVE-2015-0383, but the fix was regressed in the\nRHSA-2015:0809 advisory. (CVE-2015-3149)\n\nAll users of java-1.8.0-openjdk are advised to upgrade to these updated\npackages, which resolve these issues. All running instances of OpenJDK Java\nmust be restarted for the update to take effect. \n\n4. Solution:\n\nBefore applying this update, make sure all previously released errata\nrelevant to your system have been applied. \n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258\n\n5. Bugs fixed (https://bugzilla.redhat.com/):\n\n1207101 - CVE-2015-2808 SSL/TLS: \"Invariance Weakness\" vulnerability in RC4 stream cipher\n1213365 - CVE-2015-3149 OpenJDK8: insecure hsperfdata temporary file handling, CVE-2015-0383 regression (Hotspot)\n1223211 - CVE-2015-4000 LOGJAM: TLS connections which support export grade DHE key-exchange are vulnerable to MITM attacks\n1241965 - CVE-2015-2625 OpenJDK: name for reverse DNS lookup used in certificate identity check (JSSE, 8067694)\n1242019 - CVE-2015-2601 OpenJDK: non-constant time comparisons in crypto code (JCE, 8074865)\n1242144 - CVE-2015-2659 OpenJDK: GCM cipher issue causing JVM crash (Security, 8067648)\n1242232 - CVE-2015-2628 OpenJDK: IIOPInputStream type confusion vulnerability (CORBA, 8076376)\n1242234 - CVE-2015-4731 OpenJDK: improper permission checks in MBeanServerInvocationHandler (JMX, 8076397)\n1242240 - CVE-2015-4732 OpenJDK: insufficient context checks during object deserialization (Libraries, 8076405)\n1242275 - CVE-2015-4733 OpenJDK: RemoteObjectInvocationHandler allows calling finalize() (RMI, 8076409)\n1242281 - CVE-2015-4748 OpenJDK: incorrect OCSP nextUpdate checking (Libraries, 8075374)\n1242372 - CVE-2015-2621 OpenJDK: incorrect code permission checks in RMIConnectionImpl (JMX, 8075853)\n1242379 - CVE-2015-4749 OpenJDK: DnsClient fails to release request information after error (JNDI, 8075378)\n1242394 - CVE-2015-2632 ICU: integer overflow in LETableReference verifyLength() (OpenJDK 2D, 8077520)\n1242447 - CVE-2015-4760 ICU: missing boundary checks in layout engine (OpenJDK 2D, 8071715)\n1243139 - CVE-2015-2590 OpenJDK: deserialization issue in ObjectInputStream.readSerialData() (Libraries, 8076401)\n\n6. Package List:\n\nRed Hat Enterprise Linux Desktop (v. 6):\n\nSource:\njava-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.src.rpm\n\ni386:\njava-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.i686.rpm\n\nx86_64:\njava-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.x86_64.rpm\n\nRed Hat Enterprise Linux Desktop Optional (v. 6):\n\ni386:\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.i686.rpm\n\nnoarch:\njava-1.8.0-openjdk-javadoc-1.8.0.51-0.b16.el6_6.noarch.rpm\n\nx86_64:\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.x86_64.rpm\n\nRed Hat Enterprise Linux HPC Node (v. 6):\n\nSource:\njava-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.src.rpm\n\nx86_64:\njava-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.x86_64.rpm\n\nRed Hat Enterprise Linux HPC Node Optional (v. 6):\n\nnoarch:\njava-1.8.0-openjdk-javadoc-1.8.0.51-0.b16.el6_6.noarch.rpm\n\nx86_64:\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.x86_64.rpm\n\nRed Hat Enterprise Linux Server (v. 6):\n\nSource:\njava-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.src.rpm\n\ni386:\njava-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.i686.rpm\n\nx86_64:\njava-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.x86_64.rpm\n\nRed Hat Enterprise Linux Server Optional (v. 6):\n\ni386:\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.i686.rpm\n\nnoarch:\njava-1.8.0-openjdk-javadoc-1.8.0.51-0.b16.el6_6.noarch.rpm\n\nx86_64:\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.x86_64.rpm\n\nRed Hat Enterprise Linux Workstation (v. 6):\n\nSource:\njava-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.src.rpm\n\ni386:\njava-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.i686.rpm\n\nx86_64:\njava-1.8.0-openjdk-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-0.b16.el6_6.x86_64.rpm\n\nRed Hat Enterprise Linux Workstation Optional (v. 6):\n\ni386:\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.i686.rpm\njava-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.i686.rpm\n\nnoarch:\njava-1.8.0-openjdk-javadoc-1.8.0.51-0.b16.el6_6.noarch.rpm\n\nx86_64:\njava-1.8.0-openjdk-debuginfo-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-0.b16.el6_6.x86_64.rpm\njava-1.8.0-openjdk-src-1.8.0.51-0.b16.el6_6.x86_64.rpm\n\nRed Hat Enterprise Linux Client (v. 7):\n\nSource:\njava-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.src.rpm\n\nx86_64:\njava-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-1.b16.el7_1.x86_64.rpm\n\nRed Hat Enterprise Linux Client Optional (v. 7):\n\nnoarch:\njava-1.8.0-openjdk-javadoc-1.8.0.51-1.b16.el7_1.noarch.rpm\n\nx86_64:\njava-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-src-1.8.0.51-1.b16.el7_1.x86_64.rpm\n\nRed Hat Enterprise Linux ComputeNode (v. 7):\n\nSource:\njava-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.src.rpm\n\nx86_64:\njava-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-1.b16.el7_1.x86_64.rpm\n\nRed Hat Enterprise Linux ComputeNode Optional (v. 7):\n\nnoarch:\njava-1.8.0-openjdk-javadoc-1.8.0.51-1.b16.el7_1.noarch.rpm\n\nx86_64:\njava-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-src-1.8.0.51-1.b16.el7_1.x86_64.rpm\n\nRed Hat Enterprise Linux Server (v. 7):\n\nSource:\njava-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.src.rpm\n\nppc64:\njava-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.ppc64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.ppc64.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-1.b16.el7_1.ppc64.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-1.b16.el7_1.ppc64.rpm\n\ns390x:\njava-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.s390x.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.s390x.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-1.b16.el7_1.s390x.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-1.b16.el7_1.s390x.rpm\n\nx86_64:\njava-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-1.b16.el7_1.x86_64.rpm\n\nRed Hat Enterprise Linux Server (v. 7):\n\nSource:\njava-1.8.0-openjdk-1.8.0.51-1.b16.ael7b_1.src.rpm\n\nppc64le:\njava-1.8.0-openjdk-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm\n\nRed Hat Enterprise Linux Server Optional (v. 7):\n\nnoarch:\njava-1.8.0-openjdk-javadoc-1.8.0.51-1.b16.el7_1.noarch.rpm\n\nppc64:\njava-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.el7_1.ppc64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.ppc64.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-1.b16.el7_1.ppc64.rpm\njava-1.8.0-openjdk-src-1.8.0.51-1.b16.el7_1.ppc64.rpm\n\ns390x:\njava-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.el7_1.s390x.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.s390x.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-1.b16.el7_1.s390x.rpm\njava-1.8.0-openjdk-src-1.8.0.51-1.b16.el7_1.s390x.rpm\n\nx86_64:\njava-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-src-1.8.0.51-1.b16.el7_1.x86_64.rpm\n\nRed Hat Enterprise Linux Server Optional (v. 7):\n\nnoarch:\njava-1.8.0-openjdk-javadoc-1.8.0.51-1.b16.ael7b_1.noarch.rpm\n\nppc64le:\njava-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm\njava-1.8.0-openjdk-src-1.8.0.51-1.b16.ael7b_1.ppc64le.rpm\n\nRed Hat Enterprise Linux Workstation (v. 7):\n\nSource:\njava-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.src.rpm\n\nx86_64:\njava-1.8.0-openjdk-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-devel-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-headless-1.8.0.51-1.b16.el7_1.x86_64.rpm\n\nRed Hat Enterprise Linux Workstation Optional (v. 7):\n\nnoarch:\njava-1.8.0-openjdk-javadoc-1.8.0.51-1.b16.el7_1.noarch.rpm\n\nx86_64:\njava-1.8.0-openjdk-accessibility-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-debuginfo-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-demo-1.8.0.51-1.b16.el7_1.x86_64.rpm\njava-1.8.0-openjdk-src-1.8.0.51-1.b16.el7_1.x86_64.rpm\n\nThese packages are GPG signed by Red Hat for security.  Our key and\ndetails on how to verify the signature are available from\nhttps://access.redhat.com/security/team/key/\n\n7. References:\n\nhttps://access.redhat.com/security/cve/CVE-2015-2590\nhttps://access.redhat.com/security/cve/CVE-2015-2601\nhttps://access.redhat.com/security/cve/CVE-2015-2621\nhttps://access.redhat.com/security/cve/CVE-2015-2625\nhttps://access.redhat.com/security/cve/CVE-2015-2628\nhttps://access.redhat.com/security/cve/CVE-2015-2632\nhttps://access.redhat.com/security/cve/CVE-2015-2659\nhttps://access.redhat.com/security/cve/CVE-2015-2808\nhttps://access.redhat.com/security/cve/CVE-2015-3149\nhttps://access.redhat.com/security/cve/CVE-2015-4000\nhttps://access.redhat.com/security/cve/CVE-2015-4731\nhttps://access.redhat.com/security/cve/CVE-2015-4732\nhttps://access.redhat.com/security/cve/CVE-2015-4733\nhttps://access.redhat.com/security/cve/CVE-2015-4748\nhttps://access.redhat.com/security/cve/CVE-2015-4749\nhttps://access.redhat.com/security/cve/CVE-2015-4760\nhttps://access.redhat.com/security/updates/classification/#important\nhttps://bugzilla.redhat.com/show_bug.cgi?id=1207101#c11\nhttps://bugzilla.redhat.com/show_bug.cgi?id=1223211#c33\n\n8. Contact:\n\nThe Red Hat security contact is \u003csecalert@redhat.com\u003e. More contact\ndetails at https://access.redhat.com/security/team/contact/\n\nCopyright 2015 Red Hat, Inc. \n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1\n\niD8DBQFVpldOXlSAg2UNWIIRAu9SAJ92MiEsuPBvTxxbyV6QS9HV1Y53rQCgpe2m\n01qo91WXwuMDSBGf90l0Ky4=\n=SsFY\n-----END PGP SIGNATURE-----\n\n\n--\nRHSA-announce mailing list\nRHSA-announce@redhat.com\nhttps://www.redhat.com/mailman/listinfo/rhsa-announce\n. \n\nThis release includes bug fixes and enhancements, as well as a new release\nof OpenSSL that addresses a number of outstanding security flaws. For\nfurther information, see the knowledge base article linked to in the\nReferences section. \n\nSecurity Fix(es):\n\n* A flaw was found in the way OpenSSL encoded certain ASN.1 data\nstructures. An attacker could use this flaw to create a specially crafted\ncertificate which, when verified or re-encoded by OpenSSL, could cause it\nto crash, or execute arbitrary code using the permissions of the user\nrunning an application compiled against the OpenSSL library. \n(CVE-2016-2108)\n\n* Multiple flaws were found in the way httpd parsed HTTP requests and\nresponses using chunked transfer encoding. A remote attacker could use\nthese flaws to create a specially crafted request, which httpd would decode\ndifferently from an HTTP proxy software in front of it, possibly leading to\nHTTP request smuggling attacks. (CVE-2015-3183)\n\n* A memory leak vulnerability was found in the way OpenSSL parsed PKCS#7\nand CMS data. A remote attacker could use this flaw to cause an application\nthat parses PKCS#7 or CMS data from untrusted sources to use an excessive\namount of memory and possibly crash. (CVE-2015-4000)\n\n* An integer overflow flaw, leading to a buffer overflow, was found in the\nway the EVP_EncodeUpdate() function of OpenSSL parsed very large amounts of\ninput data. A remote attacker could use this flaw to crash an application\nusing OpenSSL or, possibly, execute arbitrary code with the permissions of\nthe user running that application. (CVE-2016-2105)\n\n* An integer overflow flaw, leading to a buffer overflow, was found in the\nway the EVP_EncryptUpdate() function of OpenSSL parsed very large amounts\nof input data. A remote attacker could use this flaw to crash an\napplication using OpenSSL or, possibly, execute arbitrary code with the\npermissions of the user running that application. (CVE-2016-2106)\n\n* It was discovered that it is possible to remotely Segfault Apache http\nserver with a specially crafted string sent to the mod_cluster via service\nmessages (MCMP). (CVE-2016-3110)\n\n* A denial of service flaw was found in the way OpenSSL parsed certain\nASN.1-encoded data from BIO (OpenSSL\u0027s I/O abstraction) inputs. An\napplication using OpenSSL that accepts untrusted ASN.1 BIO input could be\nforced to allocate an excessive amount of data. (CVE-2016-2109)\n\n* It was discovered that specifying configuration with a JVMRoute path\nlonger than 80 characters will cause segmentation fault leading to a server\ncrash. (CVE-2016-4459)\n\nRed Hat would like to thank the OpenSSL project for reporting\nCVE-2016-2108, CVE-2016-2105, and CVE-2016-2106 and Michal Karm Babacek for\nreporting CVE-2016-3110. Upstream acknowledges Huzaifa Sidhpurwala (Red Hat), Hanno\nBAPck, and David Benjamin (Google) as the original reporters of\nCVE-2016-2108; and Guido Vranken as the original reporter of CVE-2016-2105\nand CVE-2016-2106. Bugs fixed (https://bugzilla.redhat.com/):\n\n1223211 - CVE-2015-4000 LOGJAM: TLS connections which support export grade DHE key-exchange are vulnerable to MITM attacks\n1243887 - CVE-2015-3183 httpd: HTTP request smuggling attack against chunked request parser\n1288322 - CVE-2015-3195 OpenSSL: X509_ATTRIBUTE memory leak\n1326320 - CVE-2016-3110 mod_cluster: remotely Segfault Apache http server\n1330101 - CVE-2016-2109 openssl: ASN.1 BIO handling of large amounts of data\n1331402 - CVE-2016-2108 openssl: Memory corruption in the ASN.1 encoder\n1331441 - CVE-2016-2105 openssl: EVP_EncodeUpdate overflow\n1331536 - CVE-2016-2106 openssl: EVP_EncryptUpdate overflow\n1341583 - CVE-2016-4459 mod_cluster: Buffer overflow in mod_manager when sending request with long JVMRoute\n1345987 - RHEL6 RPMs: Upgrade mod_cluster-native to 1.2.13.Final-redhat-1\n1345991 - RHEL6 RPMs: Upgrade mod_jk to 1.2.41.redhat-1\n1345995 - RHEL6 RPMs: Upgrade tomcat-native to 1.1.34\n\n6. \nHP Service Health Reporter v9.20, v9.30, v9.31, v9.32, and v9.40. There is a security vulnerability in the TLS protocol 1.2 and earlier versions. The vulnerability comes from that when the server enables the DHE_EXPORT cipher suite, the program does not pass the DHE_EXPORT option correctly. ============================================================================\nUbuntu Security Notice USN-2656-2\nJuly 15, 2015\n\nfirefox vulnerabilities\n============================================================================\n\nA security issue affects these releases of Ubuntu and its derivatives:\n\n- Ubuntu 12.04 LTS\n\nSummary:\n\nFirefox could be made to crash or run programs as your login if it\nopened a malicious website. \n\nSoftware Description:\n- firefox: Mozilla Open Source web browser\n\nDetails:\n\nUSN-2656-1 fixed vulnerabilities in Firefox for Ubuntu 14.04 LTS and\nlater releases. \n\nThis update provides the corresponding update for Ubuntu 12.04 LTS. \n\nOriginal advisory details:\n\n Karthikeyan Bhargavan discovered that NSS incorrectly handled state\n transitions for the TLS state machine. \n (CVE-2015-2721)\n \n Looben Yan discovered 2 use-after-free issues when using XMLHttpRequest in\n some circumstances. (CVE-2015-2722,\n CVE-2015-2733)\n \n Bob Clary, Christian Holler, Bobby Holley, Andrew McCreight, Terrence\n Cole, Steve Fink, Mats Palmgren, Wes Kocher, Andreas Pehrson, Tooru\n Fujisawa, Andrew Sutherland, and Gary Kwong discovered multiple memory\n safety issues in Firefox. (CVE-2015-2724,\n CVE-2015-2725, CVE-2015-2726)\n \n Armin Razmdjou discovered that opening hyperlinks with specific mouse\n and key combinations could allow a Chrome privileged URL to be opened\n without context restrictions being preserved. If a user were tricked in to\n opening a specially crafted website, an attacker could potentially exploit\n this to bypass security restrictions. (CVE-2015-2727)\n \n Paul Bandha discovered a type confusion bug in the Indexed DB Manager. (CVE-2015-2728)\n \n Holger Fuhrmannek discovered an out-of-bounds read in Web Audio. If a\n user were tricked in to opening a specially crafted website, an attacker\n could potentially exploit this to obtain sensitive information. \n (CVE-2015-2729)\n \n Watson Ladd discovered that NSS incorrectly handled Elliptical Curve\n Cryptography (ECC) multiplication. A remote attacker could possibly use\n this issue to spoof ECDSA signatures. (CVE-2015-2730)\n \n A use-after-free was discovered when a Content Policy modifies the DOM to\n remove a DOM object. (CVE-2015-2731)\n \n Ronald Crane discovered multiple security vulnerabilities. (CVE-2015-2734, CVE-2015-2735, CVE-2015-2736, CVE-2015-2737,\n CVE-2015-2738, CVE-2015-2739, CVE-2015-2740)\n \n David Keeler discovered that key pinning checks can be skipped when an\n overridable certificate error occurs. This allows a user to manually\n override an error for a fake certificate, but cannot be exploited on its\n own. (CVE-2015-2741)\n \n Jonas Jenwald discovered that some internal workers were incorrectly\n executed with a high privilege. An attacker could potentially exploit this to impersonate\n the server. (CVE-2015-4000)\n\nUpdate instructions:\n\nThe problem can be corrected by updating your system to the following\npackage versions:\n\nUbuntu 12.04 LTS:\n  firefox                         39.0+build5-0ubuntu0.12.04.2\n\nAfter a standard system update you need to restart Firefox to make\nall the necessary changes. 6) - i386, x86_64\n\n3. \n\nIBM Java SDK and JRE 5.0 will not receive software updates after September\n2015. This date is referred to as the End of Service (EOS) date. Customers\nare advised to migrate to current versions of IBM Java at this time. IBM\nJava SDK and JRE versions 6 and 7 are available via the Red Hat Enterprise\nLinux 5 and 6 Supplementary content sets and will continue to receive\nupdates based on IBM\u0027s lifecycle policy, linked to in the References\nsection. \n\nCustomers can also consider OpenJDK, an open source implementation of\nthe Java SE specification. OpenJDK is available by default on supported\nhardware architectures. \n\nRelease Date: 2015-08-05\nLast Updated: 2015-08-05\n\nPotential Security Impact: Remote disclosure of information\n\nSource: Hewlett-Packard Company, HP Software Security Response Team\n\nVULNERABILITY SUMMARY\nA potential security vulnerability has been identified with HP-UX running\nOpenSSL with SSL/TLS enabled. \nCVE-2015-1788: Malformed ECParameters causes infinite loop. \nCVE-2015-1790: PKCS7 crash with missing EnvelopedContent\nCVE-2015-1791: Race condition handling NewSessionTicket\nCVE-2015-1792: CMS verify infinite loop with unknown hash function\nCVE-2015-1793: Alternative Chain Certificate Forgery. \nHP-UX B.11.31 running OpenSSL 1.0.1m or earlier. \n\nBACKGROUND\n\nCVSS 2.0 Base Metrics\n===========================================================\n  Reference              Base Vector             Base Score\nCVE-2015-4000    (AV:N/AC:M/Au:N/C:N/I:P/A:N)       4.3\nCVE-2015-1788    (AV:N/AC:M/Au:N/C:N/I:N/A:P)       4.3\nCVE-2015-1789    (AV:N/AC:M/Au:N/C:N/I:N/A:P)       4.3\nCVE-2015-1790    (AV:N/AC:L/Au:N/C:N/I:N/A:P)       5.0\nCVE-2015-1791    (AV:N/AC:M/Au:N/C:P/I:P/A:P)       6.8\nCVE-2015-1792    (AV:N/AC:L/Au:N/C:N/I:N/A:P)       5.0\nCVE-2015-1793    (AV:N/AC:L/Au:N/C:P/I:P/A:N)       6.4\n===========================================================\n             Information on CVSS is documented\n            in HP Customer Notice: HPSN-2008-002\n\nRESOLUTION\n\nHP has provided an updated version of OpenSSL to resolve this vulnerability. \n\nA new B.11.31 depot for OpenSSL_A.01.00.01p is available here:\n\nhttps://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber\n=OPENSSL11I\n\nMANUAL ACTIONS: Yes - Update\n\nPRODUCT SPECIFIC INFORMATION\n\nHP-UX Software Assistant: HP-UX Software Assistant is an enhanced application\nthat replaces HP-UX Security Patch Check. It analyzes all Security Bulletins\nissued by HP and lists recommended actions that may apply to a specific HP-UX\nsystem. It can also download patches and create a depot automatically. For\nmore information see: https://www.hp.com/go/swa\nThe following text is for use by the HP-UX Software Assistant. \n\nAFFECTED VERSIONS\n\nHP-UX B.11.31\n==================\nopenssl.OPENSSL-CER\nopenssl.OPENSSL-CONF\nopenssl.OPENSSL-DOC\nopenssl.OPENSSL-INC\nopenssl.OPENSSL-LIB\nopenssl.OPENSSL-MAN\nopenssl.OPENSSL-MIS\nopenssl.OPENSSL-PRNG\nopenssl.OPENSSL-PVT\nopenssl.OPENSSL-RUN\nopenssl.OPENSSL-SRC\naction: install revision A.01.00.01p or subsequent\n\nEND AFFECTED VERSIONS\n\nHISTORY\nVersion:1 (rev.1) - 5 August 2015 Initial release\n\nThird Party Security Patches: Third party security patches that are to be\ninstalled on systems running HP software products should be applied in\naccordance with the customer\u0027s patch management policy. \n\nSupport: For issues about implementing the recommendations of this Security\nBulletin, contact normal HP Services support channel.  For other issues about\nthe content of this Security Bulletin, send e-mail to security-alert@hp.com. \n\nReport: To report a potential security vulnerability with any HP supported\nproduct, send Email to: security-alert@hp.com\n\nSubscribe: To initiate a subscription to receive future HP Security Bulletin\nalerts via Email:\nhttp://h41183.www4.hp.com/signup_alerts.php?jumpid=hpsc_secbulletins\n\nSecurity Bulletin Archive: A list of recently released Security Bulletins is\navailable here:\nhttps://h20564.www2.hp.com/portal/site/hpsc/public/kb/secBullArchive/\n\nSoftware Product Category: The Software Product Category is represented in\nthe title by the two characters following HPSB. \n\n3C = 3COM\n3P = 3rd Party Software\nGN = HP General Software\nHF = HP Hardware and Firmware\nMP = MPE/iX\nMU = Multi-Platform Software\nNS = NonStop Servers\nOV = OpenVMS\nPI = Printing and Imaging\nPV = ProCurve\nST = Storage Software\nTU = Tru64 UNIX\nUX = HP-UX\n\nCopyright 2015 Hewlett-Packard Development Company, L.P. \nHewlett-Packard Company shall not be liable for technical or editorial errors\nor omissions contained herein. The information provided is provided \"as is\"\nwithout warranty of any kind. To the extent permitted by law, neither HP or\nits affiliates, subcontractors or suppliers will be liable for\nincidental,special or consequential damages including downtime cost; lost\nprofits; damages relating to the procurement of substitute products or\nservices; or damages for loss of data, or software restoration. The\ninformation in this document is subject to change without notice. \nHewlett-Packard Company and the names of Hewlett-Packard products referenced\nherein are trademarks of Hewlett-Packard Company in the United States and\nother countries. Other product and company names mentioned herein may be\ntrademarks of their respective owners. \n\nCVE-2015-4000\n\n    David Adrian et al. reported that it may be feasible to attack\n    Diffie-Hellman-based cipher suites in certain circumstances,\n    compromising the confidentiality and integrity of data encrypted\n    with Transport Layer Security (TLS). \n\nCVE-2015-7181\nCVE-2015-7182\nCVE-2016-1950\n\n    Tyson Smith, David Keeler, and Francis Gabriel discovered\n    heap-based buffer overflows in the ASN.1 DER parser, potentially\n    leading to arbitrary code execution. \n\nCVE-2015-7575\n\n    Karthikeyan Bhargavan discovered that TLS client implementation\n    accepted MD5-based signatures for TLS 1.2 connections with forward\n    secrecy, weakening the intended security strength of TLS\n    connections. \n\nCVE-2016-1938\n\n    Hanno Boeck discovered that NSS miscomputed the result of integer\n    division for certain inputs.  This could weaken the cryptographic\n    protections provided by NSS.  However, NSS implements RSA-CRT leak\n    hardening, so RSA private keys are not directly disclosed by this\n    issue. \n\nCVE-2016-1978\n\n    Eric Rescorla discovered a user-after-free vulnerability in the\n    implementation of ECDH-based TLS handshakes, with unknown\n    consequences. \n\nCVE-2016-1979\n\n    Tim Taubert discovered a use-after-free vulnerability in ASN.1 DER\n    processing, with application-specific impact. \n\nCVE-2016-2834\n\n    Tyson Smith and Jed Davis discovered unspecified memory-safety\n    bugs in NSS. \n\nIn addition, the NSS library did not ignore environment variables in\nprocesses which underwent a SUID/SGID/AT_SECURE transition at process\nstart.  In certain system configurations, this allowed local users to\nescalate their privileges. \n\nFor the stable distribution (jessie), these problems have been fixed in\nversion 2:3.26-1+debu8u1. \n\nFor the unstable distribution (sid), these problems have been fixed in\nversion 2:3.23-1. \n\nWe recommend that you upgrade your nss packages. \nHP Performance Manager v9.0x and v9.20. OpenSSL Security Advisory [28th Jan 2016]\n=========================================\n\nNOTE: SUPPORT FOR VERSION 1.0.1 WILL BE ENDING ON 31ST DECEMBER 2016. NO\nSECURITY FIXES WILL BE PROVIDED AFTER THAT DATE. UNTIL THAT TIME SECURITY FIXES\nONLY ARE BEING APPLIED. \n\nDH small subgroups (CVE-2016-0701)\n==================================\n\nSeverity: High\n\nHistorically OpenSSL usually only ever generated DH parameters based on \"safe\"\nprimes. More recently (in version 1.0.2) support was provided for generating\nX9.42 style parameter files such as those required for RFC 5114 support. The\nprimes used in such files may not be \"safe\". Where an application is using DH\nconfigured with parameters based on primes that are not \"safe\" then an attacker\ncould use this fact to find a peer\u0027s private DH exponent. This attack requires\nthat the attacker complete multiple handshakes in which the peer uses the same\nprivate DH exponent. For example this could be used to discover a TLS server\u0027s\nprivate DH exponent if it\u0027s reusing the private DH exponent or it\u0027s using a\nstatic DH ciphersuite. \n\nOpenSSL provides the option SSL_OP_SINGLE_DH_USE for ephemeral DH (DHE) in TLS. \nIt is not on by default. If the option is not set then the server reuses the\nsame private DH exponent for the life of the server process and would be\nvulnerable to this attack. It is believed that many popular applications do set\nthis option and would therefore not be at risk. \n\nOpenSSL before 1.0.2f will reuse the key if:\n- SSL_CTX_set_tmp_dh()/SSL_set_tmp_dh() is used and SSL_OP_SINGLE_DH_USE is not\n  set. \n- SSL_CTX_set_tmp_dh_callback()/SSL_set_tmp_dh_callback() is used, and both the\n  parameters and the key are set and SSL_OP_SINGLE_DH_USE is not used. This is\n  an undocumted feature and parameter files don\u0027t contain the key. \n- Static DH ciphersuites are used. The key is part of the certificate and\n  so it will always reuse it. This is only supported in 1.0.2. \n\nIt will not reuse the key for DHE ciphers suites if:\n- SSL_OP_SINGLE_DH_USE is set\n- SSL_CTX_set_tmp_dh_callback()/SSL_set_tmp_dh_callback() is used and the\n  callback does not provide the key, only the parameters. The callback is\n  almost always used like this. \n\nNon-safe primes are generated by OpenSSL when using:\n- genpkey with the dh_rfc5114 option. This will write an X9.42 style file\n  including the prime-order subgroup size \"q\". This is supported since the 1.0.2\n  version. Older versions can\u0027t read files generated in this way. \n- dhparam with the -dsaparam option. This has always been documented as\n  requiring the single use. \n\nThe fix for this issue adds an additional check where a \"q\" parameter is\navailable (as is the case in X9.42 based parameters). This detects the\nonly known attack, and is the only possible defense for static DH ciphersuites. \nThis could have some performance impact. \n\nAdditionally the SSL_OP_SINGLE_DH_USE option has been switched on by default\nand cannot be disabled. This could have some performance impact. \n\nThis issue affects OpenSSL version 1.0.2. \n\nOpenSSL 1.0.2 users should upgrade to 1.0.2f\n\nOpenSSL 1.0.1 is not affected by this CVE because it does not support X9.42\nbased parameters. It is possible to generate parameters using non \"safe\" primes,\nbut this option has always been documented as requiring single use and is not\nthe default or believed to be common. However, as a precaution, the\nSSL_OP_SINGLE_DH_USE change has also been backported to 1.0.1r. \n\nThis issue was reported to OpenSSL on 12 January 2016 by Antonio Sanso (Adobe). \nThe fix was developed by Matt Caswell of the OpenSSL development team\n(incorporating some work originally written by Stephen Henson of the OpenSSL\ncore team). \n\nSSLv2 doesn\u0027t block disabled ciphers (CVE-2015-3197)\n====================================================\n\nSeverity: Low\n\nA malicious client can negotiate SSLv2 ciphers that have been disabled on the\nserver and complete SSLv2 handshakes even if all SSLv2 ciphers have been\ndisabled, provided that the SSLv2 protocol was not also disabled via\nSSL_OP_NO_SSLv2. \n\nThis issue affects OpenSSL versions 1.0.2 and 1.0.1. \n\nOpenSSL 1.0.2 users should upgrade to 1.0.2f\nOpenSSL 1.0.1 users should upgrade to 1.0.1r\n\nThis issue was reported to OpenSSL on 26th December 2015 by Nimrod Aviram and\nSebastian Schinzel. The fix was developed by Nimrod Aviram with further\ndevelopment by Viktor Dukhovni of the OpenSSL development team. \n\n\nAn update on DHE man-in-the-middle protection (Logjam)\n====================================================================\n\nA previously published vulnerability in the TLS protocol allows a\nman-in-the-middle attacker to downgrade vulnerable TLS connections\nusing ephemeral Diffie-Hellman key exchange to 512-bit export-grade\ncryptography. This vulnerability is known as Logjam\n(CVE-2015-4000). OpenSSL added Logjam mitigation for TLS clients by\nrejecting handshakes with DH parameters shorter than 768 bits in\nreleases 1.0.2b and 1.0.1n. \n\nThis limit has been increased to 1024 bits in this release, to offer\nstronger cryptographic assurance for all TLS connections using\nephemeral Diffie-Hellman key exchange. \n\nOpenSSL 1.0.2 users should upgrade to 1.0.2f\nOpenSSL 1.0.1 users should upgrade to 1.0.1r\n\nThe fix was developed by Kurt Roeckx of the OpenSSL development team. \n\nNote\n====\n\nAs per our previous announcements and our Release Strategy\n(https://www.openssl.org/policies/releasestrat.html), support for OpenSSL\nversion 1.0.1 will cease on 31st December 2016. No security updates for that\nversion will be provided after that date. \n\nSupport for versions 0.9.8 and 1.0.0 ended on 31st December 2015. Those versions\nare no longer receiving security updates. \n\nReferences\n==========\n\nURL for this Security Advisory:\nhttps://www.openssl.org/news/secadv/20160128.txt\n\nNote: the online version of the advisory may be updated with additional\ndetails over time. \n\nFor details of OpenSSL severity classifications please see:\nhttps://www.openssl.org/policies/secpolicy.html\n\n. \nHP Operations Agent Virtual Appliance v11.11, v11.12, v11.13, v11.14",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2015-4000"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-002764"
          },
          {
            "db": "BID",
            "id": "74733"
          },
          {
            "db": "PACKETSTORM",
            "id": "132921"
          },
          {
            "db": "PACKETSTORM",
            "id": "132696"
          },
          {
            "db": "PACKETSTORM",
            "id": "132728"
          },
          {
            "db": "PACKETSTORM",
            "id": "139115"
          },
          {
            "db": "PACKETSTORM",
            "id": "133324"
          },
          {
            "db": "PACKETSTORM",
            "id": "132803"
          },
          {
            "db": "VULHUB",
            "id": "VHN-81961"
          },
          {
            "db": "PACKETSTORM",
            "id": "132729"
          },
          {
            "db": "PACKETSTORM",
            "id": "132699"
          },
          {
            "db": "PACKETSTORM",
            "id": "132943"
          },
          {
            "db": "PACKETSTORM",
            "id": "132973"
          },
          {
            "db": "PACKETSTORM",
            "id": "139002"
          },
          {
            "db": "PACKETSTORM",
            "id": "133344"
          },
          {
            "db": "PACKETSTORM",
            "id": "169661"
          },
          {
            "db": "PACKETSTORM",
            "id": "133338"
          }
        ],
        "trust": 3.24
      },
      "exploit_availability": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/exploit_availability#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "reference": "https://www.scap.org.cn/vuln/vhn-81961",
            "trust": 0.1,
            "type": "unknown"
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-81961"
          }
        ]
      },
      "external_ids": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/external_ids#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "db": "NVD",
            "id": "CVE-2015-4000",
            "trust": 3.6
          },
          {
            "db": "JUNIPER",
            "id": "JSA10681",
            "trust": 1.4
          },
          {
            "db": "BID",
            "id": "74733",
            "trust": 1.4
          },
          {
            "db": "SECTRACK",
            "id": "1032864",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033341",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032777",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032727",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032871",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032475",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032783",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032653",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032702",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033222",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032865",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033065",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033208",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033019",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033991",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032759",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1040630",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032910",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033067",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032637",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033064",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032654",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032656",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1034087",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032932",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033385",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032652",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032688",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032699",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032649",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032960",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032647",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032474",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033210",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032778",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033416",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033891",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032884",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032651",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033760",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033433",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032476",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032784",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1036218",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032856",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033430",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1034884",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032655",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032650",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032648",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033513",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1033209",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1032645",
            "trust": 1.1
          },
          {
            "db": "SECTRACK",
            "id": "1034728",
            "trust": 1.1
          },
          {
            "db": "JUNIPER",
            "id": "JSA10727",
            "trust": 1.1
          },
          {
            "db": "BID",
            "id": "91787",
            "trust": 1.1
          },
          {
            "db": "MCAFEE",
            "id": "SB10122",
            "trust": 1.1
          },
          {
            "db": "OPENWALL",
            "id": "OSS-SECURITY/2015/05/20/8",
            "trust": 1.1
          },
          {
            "db": "SIEMENS",
            "id": "SSA-412672",
            "trust": 1.1
          },
          {
            "db": "JVN",
            "id": "JVNVU91445763",
            "trust": 0.8
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-002764",
            "trust": 0.8
          },
          {
            "db": "PACKETSTORM",
            "id": "139002",
            "trust": 0.2
          },
          {
            "db": "PACKETSTORM",
            "id": "133338",
            "trust": 0.2
          },
          {
            "db": "PACKETSTORM",
            "id": "133324",
            "trust": 0.2
          },
          {
            "db": "PACKETSTORM",
            "id": "132413",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132649",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132586",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132164",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132610",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "135506",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "136247",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "137744",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132439",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132652",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "135510",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132465",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132468",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "134232",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "134902",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "136975",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "134755",
            "trust": 0.1
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201505-428",
            "trust": 0.1
          },
          {
            "db": "VULHUB",
            "id": "VHN-81961",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "169661",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "133344",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132973",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132943",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132699",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132729",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132803",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "139115",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132728",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132696",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "132921",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-81961"
          },
          {
            "db": "BID",
            "id": "74733"
          },
          {
            "db": "PACKETSTORM",
            "id": "169661"
          },
          {
            "db": "PACKETSTORM",
            "id": "133344"
          },
          {
            "db": "PACKETSTORM",
            "id": "139002"
          },
          {
            "db": "PACKETSTORM",
            "id": "132973"
          },
          {
            "db": "PACKETSTORM",
            "id": "132943"
          },
          {
            "db": "PACKETSTORM",
            "id": "132699"
          },
          {
            "db": "PACKETSTORM",
            "id": "132729"
          },
          {
            "db": "PACKETSTORM",
            "id": "133338"
          },
          {
            "db": "PACKETSTORM",
            "id": "132803"
          },
          {
            "db": "PACKETSTORM",
            "id": "133324"
          },
          {
            "db": "PACKETSTORM",
            "id": "139115"
          },
          {
            "db": "PACKETSTORM",
            "id": "132728"
          },
          {
            "db": "PACKETSTORM",
            "id": "132696"
          },
          {
            "db": "PACKETSTORM",
            "id": "132921"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-002764"
          },
          {
            "db": "NVD",
            "id": "CVE-2015-4000"
          }
        ]
      },
      "id": "VAR-201505-0233",
      "iot": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/iot#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": true,
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-81961"
          }
        ],
        "trust": 0.30625
      },
      "last_update_date": "2025-12-22T23:16:33.731000Z",
      "patch": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/patch#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "title": "APPLE-SA-2015-06-30-1 iOS 8.4",
            "trust": 0.8,
            "url": "http://lists.apple.com/archives/security-announce/2015/Jun/msg00001.html"
          },
          {
            "title": "APPLE-SA-2015-06-30-2 OS X Yosemite v10.10.4 and Security Update 2015-005",
            "trust": 0.8,
            "url": "http://lists.apple.com/archives/security-announce/2015/Jun/msg00002.html"
          },
          {
            "title": "HT204941",
            "trust": 0.8,
            "url": "http://support.apple.com/en-us/HT204941"
          },
          {
            "title": "HT204942",
            "trust": 0.8,
            "url": "http://support.apple.com/en-us/HT204942"
          },
          {
            "title": "HT204941",
            "trust": 0.8,
            "url": "http://support.apple.com/ja-jp/HT204941"
          },
          {
            "title": "HT204942",
            "trust": 0.8,
            "url": "http://support.apple.com/ja-jp/HT204942"
          },
          {
            "title": "DSA-3324",
            "trust": 0.8,
            "url": "https://www.debian.org/security/2015/dsa-3324"
          },
          {
            "title": "Google Chrome",
            "trust": 0.8,
            "url": "https://www.google.co.jp/chrome/browser/desktop/index.html"
          },
          {
            "title": "HS15-026",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/soft1/global/security/info/vuls/HS15-026/index.html"
          },
          {
            "title": "HS16-004",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/soft1/global/security/info/vuls/HS16-004/index.html"
          },
          {
            "title": "hitachi-sec-2018-128",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/soft1/global/security/info/vuls/hitachi-sec-2018-128/index.html"
          },
          {
            "title": "HPSBGN03411",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=144061542602287\u0026w=2"
          },
          {
            "title": "HPSBGN03351",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=143557934009303\u0026w=2"
          },
          {
            "title": "HPSBMU03345",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=144043644216842\u0026w=2"
          },
          {
            "title": "HPSBGN03361",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=143628304012255\u0026w=2"
          },
          {
            "title": "HPSBMU03356",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=143506486712441\u0026w=2"
          },
          {
            "title": "HPSBGN03362",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=143558092609708\u0026w=2"
          },
          {
            "title": "HPSBMU03401",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=144104533800819\u0026w=2"
          },
          {
            "title": "HPSBGN03399",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=144060576831314\u0026w=2"
          },
          {
            "title": "HPSBUX03363",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=143637549705650\u0026w=2"
          },
          {
            "title": "HPSBGN03402",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=144069189622016\u0026w=2"
          },
          {
            "title": "HPSBUX03512",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=144493176821532\u0026w=2"
          },
          {
            "title": "HPSBUX03388",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=143880121627664\u0026w=2"
          },
          {
            "title": "HPSBGN03404",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=144050121701297\u0026w=2"
          },
          {
            "title": "HPSBGN03405",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=144060606031437\u0026w=2"
          },
          {
            "title": "HPSBGN03407",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=144102017024820\u0026w=2"
          },
          {
            "title": "HPSBGN03373",
            "trust": 0.8,
            "url": "https://h20566.www2.hpe.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c04740527"
          },
          {
            "title": "HPSBGN03533",
            "trust": 0.8,
            "url": "https://h20566.www2.hpe.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c04953655"
          },
          {
            "title": "HPSBGN03626",
            "trust": 0.8,
            "url": "https://h20566.www2.hpe.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c05193083"
          },
          {
            "title": "HPSBHF03510",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=145408559027301\u0026w=2"
          },
          {
            "title": "HPSBMU03546",
            "trust": 0.8,
            "url": "https://h20566.www2.hpe.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c05045763"
          },
          {
            "title": "HPSBST03586",
            "trust": 0.8,
            "url": "https://h20566.www2.hpe.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c05128722"
          },
          {
            "title": "HPSBUX03435",
            "trust": 0.8,
            "url": "http://marc.info/?l=bugtraq\u0026m=145249627028751\u0026w=2"
          },
          {
            "title": "1962455",
            "trust": 0.8,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962455"
          },
          {
            "title": "\u30a2\u30e9\u30a4\u30c9\u30c6\u30ec\u30b7\u30b9\u682a\u5f0f\u4f1a\u793e\u304b\u3089\u306e\u60c5\u5831",
            "trust": 0.8,
            "url": "http://jvn.jp/vu/JVNVU91445763/522154/index.html"
          },
          {
            "title": "Windows Internet Explorer",
            "trust": 0.8,
            "url": "http://windows.microsoft.com/ja-jp/internet-explorer/download-ie"
          },
          {
            "title": "NSS 3.19.1 release notes",
            "trust": 0.8,
            "url": "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.19.1_release_notes"
          },
          {
            "title": "Bug 1138554",
            "trust": 0.8,
            "url": "https://bugzilla.mozilla.org/show_bug.cgi?id=1138554"
          },
          {
            "title": "Firefox",
            "trust": 0.8,
            "url": "https://www.mozilla.org/ja/firefox/new/"
          },
          {
            "title": "MFSA2015-70",
            "trust": 0.8,
            "url": "http://www.mozilla.org/security/announce/2015/mfsa2015-70.html"
          },
          {
            "title": "MFSA2015-70",
            "trust": 0.8,
            "url": "http://www.mozilla-japan.org/security/announce/2015/mfsa2015-70.html"
          },
          {
            "title": "NV15-010",
            "trust": 0.8,
            "url": "http://jpn.nec.com/security-info/secinfo/nv15-010.html"
          },
          {
            "title": "Logjam, FREAK and Upcoming Changes in OpenSSL",
            "trust": 0.8,
            "url": "https://www.openssl.org/blog/blog/2015/05/20/logjam-freak-upcoming-changes/"
          },
          {
            "title": "DHE man-in-the-middle protection (Logjam)",
            "trust": 0.8,
            "url": "https://www.openssl.org/news/secadv/20150611.txt"
          },
          {
            "title": "SUSE-SU-2015:1269",
            "trust": 0.8,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00034.html"
          },
          {
            "title": "SUSE-SU-2015:1268",
            "trust": 0.8,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00033.html"
          },
          {
            "title": "Opera",
            "trust": 0.8,
            "url": "http://www.opera.com/ja"
          },
          {
            "title": "Oracle Critical Patch Update Advisory - July 2016",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/security-advisory/cpujul2016-2881720.html"
          },
          {
            "title": "Text Form of Oracle Critical Patch Update - July 2015 Risk Matrices",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujul2015verbose-2367947.html"
          },
          {
            "title": "Oracle Critical Patch Update Advisory - April 2016",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/security-advisory/cpuapr2016v3-2985753.html"
          },
          {
            "title": "Oracle Critical Patch Update CVSS V2 Risk Matrices - April 2016",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/cpuapr2016-2881694.html"
          },
          {
            "title": "Text Form of Oracle Critical Patch Update - April 2016 Risk Matrices",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/cpuapr2016verbose-2881709.html"
          },
          {
            "title": "Oracle Critical Patch Update Advisory - January 2016",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujan2016-2367955.html"
          },
          {
            "title": "Oracle Critical Patch Update Advisory - October 2015",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/cpuoct2015-2367953.html"
          },
          {
            "title": "Text Form of Oracle Critical Patch Update - January 2016 Risk Matrices",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujan2016verbose-2367956.html"
          },
          {
            "title": "Oracle Critical Patch Update Advisory - July 2015",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html"
          },
          {
            "title": "Text Form of Oracle Critical Patch Update - October 2015 Risk Matrices",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/cpuoct2015verbose-2367954.html"
          },
          {
            "title": "Oracle Solaris Third Party Bulletin - July 2015",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/bulletinjul2015-2511963.html"
          },
          {
            "title": "Oracle Solaris Third Party Bulletin - January 2016",
            "trust": 0.8,
            "url": "http://www.oracle.com/technetwork/topics/security/bulletinjan2016-2867206.html"
          },
          {
            "title": "October 2015 Critical Patch Update Released",
            "trust": 0.8,
            "url": "https://blogs.oracle.com/security/entry/october_2015_critical_patch_update"
          },
          {
            "title": "July 2015 Critical Patch Update Released",
            "trust": 0.8,
            "url": "https://blogs.oracle.com/security/entry/july_2015_critical_patch_update"
          },
          {
            "title": "April 2016 Critical Patch Update Released",
            "trust": 0.8,
            "url": "https://blogs.oracle.com/security/entry/april_2016_critical_patch_update"
          },
          {
            "title": "January 2016 Critical Patch Update Released",
            "trust": 0.8,
            "url": "https://blogs.oracle.com/security/entry/january_2016_critical_patch_update"
          },
          {
            "title": "SRM Profiler Module 6.2.3 Release Notes (CVE-2015-4000: \"Logjam\" TLS vulnerabilities)",
            "trust": 0.8,
            "url": "http://www.solarwinds.com/documentation/storage/storagemanager/docs/ReleaseNotes/releaseNotes.htm"
          },
          {
            "title": "CVE-2015-4000",
            "trust": 0.8,
            "url": "https://www.suse.com/security/cve/CVE-2015-4000.html"
          },
          {
            "title": "USN-2673-1",
            "trust": 0.8,
            "url": "http://www.ubuntu.com/usn/USN-2673-1"
          },
          {
            "title": "Safari",
            "trust": 0.8,
            "url": "https://www.apple.com/jp/safari/"
          },
          {
            "title": "Logjam\u3068\u547c\u3070\u308c\u308bTLS\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u8106\u5f31\u6027\u306b\u3088\u308bHA8500\u30b5\u30fc\u30d0\u3078\u306e\u5f71\u97ff\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/products/it/server/security/info/vulnerable/Logjam_ha8500.html"
          },
          {
            "title": "Logjam\u3068\u547c\u3070\u308c\u308bTLS\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u8106\u5f31\u6027\u306b\u3088\u308b\u65e5\u7acb\u30a2\u30c9\u30d0\u30f3\u30b9\u30c8\u30b5\u30fc\u30d0HA8000\u3078\u306e\u5f71\u97ff\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/products/it/server/security/info/vulnerable/Logjam_ha8000.html"
          },
          {
            "title": "Logjam\u3068\u547c\u3070\u308c\u308bTLS\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u8106\u5f31\u6027\u306b\u3088\u308b\u7121\u505c\u96fb\u96fb\u6e90\u88c5\u7f6e(UPS)\u3078\u306e\u5f71\u97ff\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/products/it/server/security/info/vulnerable/Logjam_ucp.html"
          },
          {
            "title": "hitachi-sec-2018-128",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/soft1/security/info/vuls/hitachi-sec-2018-128/index.html"
          },
          {
            "title": "HS15-026",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/soft1/security/info/vuls/HS15-026/index.html"
          },
          {
            "title": "HS16-004",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/soft1/security/info/vuls/HS16-004/index.html"
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-002764"
          }
        ]
      },
      "problemtype_data": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "problemtype": "CWE-310",
            "trust": 1.9
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-81961"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-002764"
          },
          {
            "db": "NVD",
            "id": "CVE-2015-4000"
          }
        ]
      },
      "references": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/references#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "trust": 2.2,
            "url": "https://weakdh.org/"
          },
          {
            "trust": 2.2,
            "url": "https://weakdh.org/imperfect-forward-secrecy.pdf"
          },
          {
            "trust": 1.5,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1228.html"
          },
          {
            "trust": 1.5,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1242.html"
          },
          {
            "trust": 1.5,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1243.html"
          },
          {
            "trust": 1.4,
            "url": "http://aix.software.ibm.com/aix/efixes/security/sendmail_advisory2.asc"
          },
          {
            "trust": 1.4,
            "url": "http://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c04876402"
          },
          {
            "trust": 1.4,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959111"
          },
          {
            "trust": 1.4,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959195"
          },
          {
            "trust": 1.4,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959325"
          },
          {
            "trust": 1.4,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959453"
          },
          {
            "trust": 1.4,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959481"
          },
          {
            "trust": 1.4,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959530"
          },
          {
            "trust": 1.4,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959636"
          },
          {
            "trust": 1.4,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959812"
          },
          {
            "trust": 1.4,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960191"
          },
          {
            "trust": 1.4,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962739"
          },
          {
            "trust": 1.4,
            "url": "http://www.oracle.com/technetwork/security-advisory/cpujul2016-2881720.html"
          },
          {
            "trust": 1.4,
            "url": "http://www.oracle.com/technetwork/topics/security/bulletinjan2016-2867206.html"
          },
          {
            "trust": 1.4,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujan2016-2367955.html"
          },
          {
            "trust": 1.4,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html"
          },
          {
            "trust": 1.4,
            "url": "https://h20564.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c04918839"
          },
          {
            "trust": 1.4,
            "url": "https://support.citrix.com/article/ctx216642"
          },
          {
            "trust": 1.4,
            "url": "https://www-304.ibm.com/support/docview.wss?uid=swg21959745"
          },
          {
            "trust": 1.4,
            "url": "https://www-947.ibm.com/support/entry/portal/docdisplay?lndocid=migr-5098403"
          },
          {
            "trust": 1.4,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1072.html"
          },
          {
            "trust": 1.4,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1185.html"
          },
          {
            "trust": 1.4,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1229.html"
          },
          {
            "trust": 1.4,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1230.html"
          },
          {
            "trust": 1.4,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1241.html"
          },
          {
            "trust": 1.4,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1604.html"
          },
          {
            "trust": 1.4,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-4000"
          },
          {
            "trust": 1.2,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1486.html"
          },
          {
            "trust": 1.2,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1544.html"
          },
          {
            "trust": 1.2,
            "url": "http://www.ubuntu.com/usn/usn-2656-1"
          },
          {
            "trust": 1.2,
            "url": "http://www.ubuntu.com/usn/usn-2656-2"
          },
          {
            "trust": 1.1,
            "url": "http://lists.apple.com/archives/security-announce/2015/jun/msg00001.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.apple.com/archives/security-announce/2015/jun/msg00002.html"
          },
          {
            "trust": 1.1,
            "url": "http://www.securityfocus.com/bid/74733"
          },
          {
            "trust": 1.1,
            "url": "http://www.securityfocus.com/bid/91787"
          },
          {
            "trust": 1.1,
            "url": "https://cert-portal.siemens.com/productcert/pdf/ssa-412672.pdf"
          },
          {
            "trust": 1.1,
            "url": "http://fortiguard.com/advisory/2015-07-09-cve-2015-1793-openssl-alternative-chains-certificate-forgery"
          },
          {
            "trust": 1.1,
            "url": "http://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c04949778"
          },
          {
            "trust": 1.1,
            "url": "http://support.apple.com/kb/ht204941"
          },
          {
            "trust": 1.1,
            "url": "http://support.apple.com/kb/ht204942"
          },
          {
            "trust": 1.1,
            "url": "http://support.citrix.com/article/ctx201114"
          },
          {
            "trust": 1.1,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959517"
          },
          {
            "trust": 1.1,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959539"
          },
          {
            "trust": 1.1,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21961717"
          },
          {
            "trust": 1.1,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962455"
          },
          {
            "trust": 1.1,
            "url": "http://www-304.ibm.com/support/docview.wss?uid=swg21958984"
          },
          {
            "trust": 1.1,
            "url": "http://www-304.ibm.com/support/docview.wss?uid=swg21959132"
          },
          {
            "trust": 1.1,
            "url": "http://www-304.ibm.com/support/docview.wss?uid=swg21960041"
          },
          {
            "trust": 1.1,
            "url": "http://www-304.ibm.com/support/docview.wss?uid=swg21960194"
          },
          {
            "trust": 1.1,
            "url": "http://www-304.ibm.com/support/docview.wss?uid=swg21960380"
          },
          {
            "trust": 1.1,
            "url": "http://www-304.ibm.com/support/docview.wss?uid=swg21960418"
          },
          {
            "trust": 1.1,
            "url": "http://www-304.ibm.com/support/docview.wss?uid=swg21962816"
          },
          {
            "trust": 1.1,
            "url": "http://www-304.ibm.com/support/docview.wss?uid=swg21967893"
          },
          {
            "trust": 1.1,
            "url": "http://www.fortiguard.com/advisory/2015-05-20-logjam-attack"
          },
          {
            "trust": 1.1,
            "url": "http://www.mozilla.org/security/announce/2015/mfsa2015-70.html"
          },
          {
            "trust": 1.1,
            "url": "http://www.oracle.com/technetwork/security-advisory/cpuapr2016v3-2985753.html"
          },
          {
            "trust": 1.1,
            "url": "http://www.oracle.com/technetwork/topics/security/bulletinjul2015-2511963.html"
          },
          {
            "trust": 1.1,
            "url": "http://www.oracle.com/technetwork/topics/security/cpuoct2015-2367953.html"
          },
          {
            "trust": 1.1,
            "url": "http://www.solarwinds.com/documentation/storage/storagemanager/docs/releasenotes/releasenotes.htm"
          },
          {
            "trust": 1.1,
            "url": "https://bto.bluecoat.com/security-advisory/sa98"
          },
          {
            "trust": 1.1,
            "url": "https://bugzilla.mozilla.org/show_bug.cgi?id=1138554"
          },
          {
            "trust": 1.1,
            "url": "https://developer.mozilla.org/en-us/docs/mozilla/projects/nss/nss_3.19.1_release_notes"
          },
          {
            "trust": 1.1,
            "url": "https://h20564.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c04770140"
          },
          {
            "trust": 1.1,
            "url": "https://h20564.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c04772190"
          },
          {
            "trust": 1.1,
            "url": "https://h20564.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c04773119"
          },
          {
            "trust": 1.1,
            "url": "https://h20564.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c04773241"
          },
          {
            "trust": 1.1,
            "url": "https://h20564.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c04832246"
          },
          {
            "trust": 1.1,
            "url": "https://h20564.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c04923929"
          },
          {
            "trust": 1.1,
            "url": "https://h20564.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c04926789"
          },
          {
            "trust": 1.1,
            "url": "https://h20566.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c04740527"
          },
          {
            "trust": 1.1,
            "url": "https://h20566.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c04953655"
          },
          {
            "trust": 1.1,
            "url": "https://h20566.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c05045763"
          },
          {
            "trust": 1.1,
            "url": "https://h20566.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c05128722"
          },
          {
            "trust": 1.1,
            "url": "https://h20566.www2.hpe.com/portal/site/hpsc/public/kb/docdisplay?docid=emr_na-c05193083"
          },
          {
            "trust": 1.1,
            "url": "https://help.ecostruxureit.com/display/public/uadco8x/struxureware+data+center+operation+software+vulnerability+fixes"
          },
          {
            "trust": 1.1,
            "url": "https://openssl.org/news/secadv/20150611.txt"
          },
          {
            "trust": 1.1,
            "url": "https://puppet.com/security/cve/cve-2015-4000"
          },
          {
            "trust": 1.1,
            "url": "https://security.netapp.com/advisory/ntap-20150619-0001/"
          },
          {
            "trust": 1.1,
            "url": "https://www.openssl.org/blog/blog/2015/05/20/logjam-freak-upcoming-changes/"
          },
          {
            "trust": 1.1,
            "url": "https://www.openssl.org/news/secadv_20150611.txt"
          },
          {
            "trust": 1.1,
            "url": "https://www.suse.com/security/cve/cve-2015-4000.html"
          },
          {
            "trust": 1.1,
            "url": "http://www.debian.org/security/2015/dsa-3287"
          },
          {
            "trust": 1.1,
            "url": "http://www.debian.org/security/2015/dsa-3300"
          },
          {
            "trust": 1.1,
            "url": "http://www.debian.org/security/2015/dsa-3316"
          },
          {
            "trust": 1.1,
            "url": "http://www.debian.org/security/2015/dsa-3324"
          },
          {
            "trust": 1.1,
            "url": "http://www.debian.org/security/2015/dsa-3339"
          },
          {
            "trust": 1.1,
            "url": "http://www.debian.org/security/2016/dsa-3688"
          },
          {
            "trust": 1.1,
            "url": "http://lists.fedoraproject.org/pipermail/package-announce/2015-june/159351.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.fedoraproject.org/pipermail/package-announce/2015-june/159314.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.fedoraproject.org/pipermail/package-announce/2015-june/160117.html"
          },
          {
            "trust": 1.1,
            "url": "https://security.gentoo.org/glsa/201506-02"
          },
          {
            "trust": 1.1,
            "url": "https://security.gentoo.org/glsa/201512-10"
          },
          {
            "trust": 1.1,
            "url": "https://security.gentoo.org/glsa/201603-11"
          },
          {
            "trust": 1.1,
            "url": "https://security.gentoo.org/glsa/201701-46"
          },
          {
            "trust": 1.1,
            "url": "https://h20564.www2.hp.com/hpsc/doc/public/display?docid=emr_na-c04718196"
          },
          {
            "trust": 1.1,
            "url": "https://blog.cloudflare.com/logjam-the-latest-tls-vulnerability-explained/"
          },
          {
            "trust": 1.1,
            "url": "https://www.oracle.com/security-alerts/cpujan2021.html"
          },
          {
            "trust": 1.1,
            "url": "http://openwall.com/lists/oss-security/2015/05/20/8"
          },
          {
            "trust": 1.1,
            "url": "http://ftp.netbsd.org/pub/netbsd/security/advisories/netbsd-sa2015-008.txt.asc"
          },
          {
            "trust": 1.1,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1197.html"
          },
          {
            "trust": 1.1,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1485.html"
          },
          {
            "trust": 1.1,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1488.html"
          },
          {
            "trust": 1.1,
            "url": "http://rhn.redhat.com/errata/rhsa-2015-1526.html"
          },
          {
            "trust": 1.1,
            "url": "http://rhn.redhat.com/errata/rhsa-2016-1624.html"
          },
          {
            "trust": 1.1,
            "url": "http://rhn.redhat.com/errata/rhsa-2016-2056.html"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032474"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032475"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032476"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032637"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032645"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032647"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032648"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032649"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032650"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032651"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032652"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032653"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032654"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032655"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032656"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032688"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032699"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032702"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032727"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032759"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032777"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032778"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032783"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032784"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032856"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032864"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032865"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032871"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032884"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032910"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032932"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1032960"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033019"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033064"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033065"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033067"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033208"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033209"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033210"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033222"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033341"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033385"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033416"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033430"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033433"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033513"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033760"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033891"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1033991"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1034087"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1034728"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1034884"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1036218"
          },
          {
            "trust": 1.1,
            "url": "http://www.securitytracker.com/id/1040630"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-06/msg00024.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-06/msg00026.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00001.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00003.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00004.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00005.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00006.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00007.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00033.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00034.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00046.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00047.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-08/msg00021.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-09/msg00017.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-10/msg00001.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2016-01/msg00031.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2016-01/msg00040.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-06/msg00023.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-updates/2015-07/msg00016.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00025.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00031.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00037.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00039.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2015-07/msg00040.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-updates/2015-10/msg00011.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2016-01/msg00032.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2016-01/msg00037.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-security-announce/2016-01/msg00039.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-updates/2016-02/msg00094.html"
          },
          {
            "trust": 1.1,
            "url": "http://lists.opensuse.org/opensuse-updates/2016-02/msg00097.html"
          },
          {
            "trust": 1.1,
            "url": "http://www.ubuntu.com/usn/usn-2673-1"
          },
          {
            "trust": 1.1,
            "url": "http://www.ubuntu.com/usn/usn-2696-1"
          },
          {
            "trust": 1.1,
            "url": "http://www.ubuntu.com/usn/usn-2706-1"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=144102017024820\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=145409266329539\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=144069189622016\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=143506486712441\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=144043644216842\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=144060606031437\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "https://kc.mcafee.com/corporate/index?page=content\u0026id=sb10122"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=143655800220052\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://kb.juniper.net/infocenter/index?page=content\u0026id=jsa10727"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=144060576831314\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=144050121701297\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=144061542602287\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://kb.juniper.net/infocenter/index?page=content\u0026id=jsa10681"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=143557934009303\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=143637549705650\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=144493176821532\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=144104533800819\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=143628304012255\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=143880121627664\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "https://support.hpe.com/hpsc/doc/public/display?doclocale=en_us\u0026docid=emr_na-hpesbhf03831en_us"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=143558092609708\u0026w=2"
          },
          {
            "trust": 0.8,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2015-4000"
          },
          {
            "trust": 0.8,
            "url": "http://jvn.jp/vu/jvnvu91445763/"
          },
          {
            "trust": 0.8,
            "url": "http://web.nvd.nist.gov/view/vuln/detail?vulnid=cve-2015-4000"
          },
          {
            "trust": 0.6,
            "url": "https://access.redhat.com/security/cve/cve-2015-4000"
          },
          {
            "trust": 0.6,
            "url": "https://access.redhat.com/articles/11258"
          },
          {
            "trust": 0.6,
            "url": "https://access.redhat.com/security/team/contact/"
          },
          {
            "trust": 0.6,
            "url": "https://www.redhat.com/mailman/listinfo/rhsa-announce"
          },
          {
            "trust": 0.6,
            "url": "https://bugzilla.redhat.com/):"
          },
          {
            "trust": 0.6,
            "url": "https://access.redhat.com/security/team/key/"
          },
          {
            "trust": 0.5,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-4732"
          },
          {
            "trust": 0.5,
            "url": "https://access.redhat.com/security/cve/cve-2015-4760"
          },
          {
            "trust": 0.5,
            "url": "https://access.redhat.com/security/cve/cve-2015-2621"
          },
          {
            "trust": 0.5,
            "url": "https://access.redhat.com/security/cve/cve-2015-2601"
          },
          {
            "trust": 0.5,
            "url": "https://access.redhat.com/security/cve/cve-2015-4732"
          },
          {
            "trust": 0.5,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-4760"
          },
          {
            "trust": 0.5,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2601"
          },
          {
            "trust": 0.5,
            "url": "https://access.redhat.com/security/cve/cve-2015-2632"
          },
          {
            "trust": 0.5,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2632"
          },
          {
            "trust": 0.5,
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1223211#c33"
          },
          {
            "trust": 0.5,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2621"
          },
          {
            "trust": 0.5,
            "url": "https://access.redhat.com/security/cve/cve-2015-4733"
          },
          {
            "trust": 0.5,
            "url": "https://access.redhat.com/security/cve/cve-2015-4748"
          },
          {
            "trust": 0.5,
            "url": "https://access.redhat.com/security/cve/cve-2015-4731"
          },
          {
            "trust": 0.5,
            "url": "https://access.redhat.com/security/cve/cve-2015-4749"
          },
          {
            "trust": 0.5,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2590"
          },
          {
            "trust": 0.5,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-4733"
          },
          {
            "trust": 0.5,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-4749"
          },
          {
            "trust": 0.5,
            "url": "https://access.redhat.com/security/cve/cve-2015-2590"
          },
          {
            "trust": 0.5,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-4731"
          },
          {
            "trust": 0.5,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-4748"
          },
          {
            "trust": 0.4,
            "url": "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/secbullarchive/"
          },
          {
            "trust": 0.4,
            "url": "http://h41183.www4.hp.com/signup_alerts.php?jumpid=hpsc_secbulletins"
          },
          {
            "trust": 0.4,
            "url": "https://h20564.www2.hpe.com/portal/site/hpsc/public/kb/"
          },
          {
            "trust": 0.4,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2808"
          },
          {
            "trust": 0.4,
            "url": "https://access.redhat.com/security/updates/classification/#important"
          },
          {
            "trust": 0.4,
            "url": "https://access.redhat.com/security/cve/cve-2015-2664"
          },
          {
            "trust": 0.4,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2638"
          },
          {
            "trust": 0.4,
            "url": "https://access.redhat.com/security/cve/cve-2015-2638"
          },
          {
            "trust": 0.4,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2664"
          },
          {
            "trust": 0.4,
            "url": "https://access.redhat.com/security/cve/cve-2015-2637"
          },
          {
            "trust": 0.4,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2637"
          },
          {
            "trust": 0.4,
            "url": "https://access.redhat.com/security/cve/cve-2015-2625"
          },
          {
            "trust": 0.4,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2625"
          },
          {
            "trust": 0.3,
            "url": "https://support.asperasoft.com/entries/94843988-security-bulletin-openssl-,-tls-vulnerabilities-logjam-cve-2015-4000"
          },
          {
            "trust": 0.3,
            "url": "http://seclists.org/bugtraq/2015/aug/158"
          },
          {
            "trust": 0.3,
            "url": "http://seclists.org/bugtraq/2016/mar/108"
          },
          {
            "trust": 0.3,
            "url": "http://seclists.org/bugtraq/2015/jun/111"
          },
          {
            "trust": 0.3,
            "url": "http://seclists.org/bugtraq/2015/aug/13"
          },
          {
            "trust": 0.3,
            "url": "http://kb.juniper.net/infocenter/index?page=content\u0026id=jsa10681\u0026cat=sirt_1\u0026actp=list"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=isg3t1022754"
          },
          {
            "trust": 0.3,
            "url": "http://www.oracle.com/technetwork/topics/security/cpuapr2016-2881694.html"
          },
          {
            "trust": 0.3,
            "url": "https://kb.netapp.com/support/index?page=content\u0026id=9010039\u0026actp=rss"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hp.com/hpsc/doc/public/display?docid=emr_na-c04710027"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hp.com/hpsc/doc/public/display?docid=emr_na-c04725761"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hp.com/hpsc/doc/public/display?docid=emr_na-c04724996"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c04767175"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c04772190"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c04773004"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c04774058"
          },
          {
            "trust": 0.3,
            "url": "http://seclists.org/bugtraq/2016/jan/167"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c05193083"
          },
          {
            "trust": 0.3,
            "url": "http://seclists.org/bugtraq/2016/jan/163"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c04773241"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c04770140"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c05128722"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hp.com/hpsc/doc/public/display?docid=emr_na-c04725401"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c04926789"
          },
          {
            "trust": 0.3,
            "url": "https://h20564.www2.hpe.com/hpsc/doc/public/display?docid=emr_na-c04832246"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=isg3t1022361"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=isg3t1022395"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=isg3t1022527"
          },
          {
            "trust": 0.3,
            "url": "https://www-947.ibm.com/support/entry/portal/docdisplay?lndocid=migr-5098451"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=ssg1s1005290"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=ssg1s1005293"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=ssg1s1005295"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=ssg1s1005342"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21957979"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21957980"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21958984"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21959030"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959033"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959048"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959060"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959076"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959304"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959308"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959356"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21959371"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21959372"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959536"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21959539"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959548"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959591"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21959625"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21959658"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21959671"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21959676"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21959696"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959742"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959743"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21960019"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21960160"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960225"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960226"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960227"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960236"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960343"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960356"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960418"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960454"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960507"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960508"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960528"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21960567"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21960580"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21960614"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21960619"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21960758"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960935"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960963"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21960986"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21961048"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21961049"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21961086"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21961088"
          },
          {
            "trust": 0.3,
            "url": "https://www-304.ibm.com/support/docview.wss?uid=swg21961119"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21961205"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21961206"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21961214"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21961554"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21961558"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21961570"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21961717"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21961812"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21961837"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21961993"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962162"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21962214"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21962216"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21962398"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962409"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21962455"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962520"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21963232"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21963330"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21963331"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21963412"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21963451"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21963818"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21963910"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21964526"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21964808"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21966177"
          },
          {
            "trust": 0.3,
            "url": "http://www.ibm.com/support/docview.wss?uid=swg21966650"
          },
          {
            "trust": 0.3,
            "url": "http://aix.software.ibm.com/aix/efixes/security/sendmail_advisory.asc"
          },
          {
            "trust": 0.3,
            "url": "http://aix.software.ibm.com/aix/efixes/security/openssl_advisory17.asc"
          },
          {
            "trust": 0.3,
            "url": "https://downloads.avaya.com/css/p8/documents/101012625"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21965448"
          },
          {
            "trust": 0.3,
            "url": "https://www.mozilla.org/en-us/security/advisories/mfsa2015-70/"
          },
          {
            "trust": 0.3,
            "url": "https://downloads.avaya.com/css/p8/documents/101012338"
          },
          {
            "trust": 0.3,
            "url": "https://downloads.avaya.com/css/p8/documents/101013879"
          },
          {
            "trust": 0.3,
            "url": "https://www.alienvault.com/forums/discussion/6075/security-advisory-alienvault-v5-2-addresses-55-vulnerabilities"
          },
          {
            "trust": 0.3,
            "url": "http://supportdocs.polycom.com/polycomservice/support/global/documents/support/documentation/security_advisory_logjam_v1_6.pdf"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962045"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=ssg1s1005339"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=ssg1s1005344"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21963468"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962519"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962726"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=ssg1s1005351"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21964174"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21964027"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960194"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21961125"
          },
          {
            "trust": 0.3,
            "url": "http://aix.software.ibm.com/aix/efixes/security/java_july2015_advisory.asc"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21964231"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=ssg1s1005275"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=nas8n1020805"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21961179"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962493"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962623"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?rs=0\u0026uid=swg21963438"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959518"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21961438"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21961569"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21963270"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959084"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=isg3t1022656"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959628"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959667"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960718"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960231"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959209"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21964501"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959203"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959290"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21964797"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21964801"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962816"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962244"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21964035"
          },
          {
            "trust": 0.3,
            "url": "https://www-947.ibm.com/support/entry/portal/docdisplay?lndocid=migr-5098522"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959132"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960859"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960862"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21963151"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960681"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960373"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959585"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959610"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21961128"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=ssg1s1005280"
          },
          {
            "trust": 0.3,
            "url": "https://www-304.ibm.com/support/docview.wss?uid=ssg1s1005368\u0026myns=s034\u0026mynp=ocstcmml7\u0026mynp=ochw211\u0026mync=e\u0026cm_sp=s034-_-ocstcmml7-ochw211-_-e"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=ssg1s1005281"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21958955"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21961697"
          },
          {
            "trust": 0.3,
            "url": "www-01.ibm.com/support/docview.wss?uid=swg21964981"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960041"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960045"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21960895"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21962676"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21965554"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21966873"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21967384"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21967709"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21967893"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21972376"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21974623"
          },
          {
            "trust": 0.3,
            "url": "http://www.ietf.org/rfc/rfc5246.txt"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21966381"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959412"
          },
          {
            "trust": 0.3,
            "url": "http://www-01.ibm.com/support/docview.wss?uid=swg21959411"
          },
          {
            "trust": 0.3,
            "url": "www-01.ibm.com/support/docview.wss?uid=swg21961390"
          },
          {
            "trust": 0.3,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2628"
          },
          {
            "trust": 0.3,
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1207101#c11"
          },
          {
            "trust": 0.3,
            "url": "https://access.redhat.com/security/cve/cve-2015-2808"
          },
          {
            "trust": 0.3,
            "url": "https://access.redhat.com/security/cve/cve-2015-2628"
          },
          {
            "trust": 0.2,
            "url": "https://www.debian.org/security/faq"
          },
          {
            "trust": 0.2,
            "url": "https://www.debian.org/security/"
          },
          {
            "trust": 0.2,
            "url": "https://www.ibm.com/developerworks/java/jdk/alerts/"
          },
          {
            "trust": 0.2,
            "url": "https://access.redhat.com/security/cve/cve-2015-1931"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-1931"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2740"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2737"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2721"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2739"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2734"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2724"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2735"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2736"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2738"
          },
          {
            "trust": 0.2,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2627"
          },
          {
            "trust": 0.2,
            "url": "https://access.redhat.com/security/cve/cve-2015-2627"
          },
          {
            "trust": 0.2,
            "url": "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html#appendixjava"
          },
          {
            "trust": 0.2,
            "url": "https://access.redhat.com/security/updates/classification/#critical"
          },
          {
            "trust": 0.1,
            "url": "http://kb.juniper.net/infocenter/index?page=content\u0026amp;id=jsa10681"
          },
          {
            "trust": 0.1,
            "url": "http://kb.juniper.net/infocenter/index?page=content\u0026amp;id=jsa10727"
          },
          {
            "trust": 0.1,
            "url": "https://kc.mcafee.com/corporate/index?page=content\u0026amp;id=sb10122"
          },
          {
            "trust": 0.1,
            "url": "https://support.hpe.com/hpsc/doc/public/display?doclocale=en_us\u0026amp;docid=emr_na-hpesbhf03831en_us"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=143557934009303\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=143628304012255\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=143558092609708\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=143655800220052\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=144060576831314\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=144069189622016\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=144050121701297\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=144060606031437\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=144102017024820\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=144061542602287\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=145409266329539\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=144043644216842\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=143506486712441\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=144104533800819\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=143637549705650\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=143880121627664\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "http://marc.info/?l=bugtraq\u0026amp;m=144493176821532\u0026amp;w=2"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-3197"
          },
          {
            "trust": 0.1,
            "url": "https://www.openssl.org/policies/secpolicy.html"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-0701"
          },
          {
            "trust": 0.1,
            "url": "https://www.openssl.org/news/secadv/20160128.txt"
          },
          {
            "trust": 0.1,
            "url": "https://www.openssl.org/policies/releasestrat.html),"
          },
          {
            "trust": 0.1,
            "url": "https://softwaresupport.hp.com/group/softwaresupport/search-result/-/fa"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-2834"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-1979"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-1938"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-7182"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-1950"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-1978"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-7181"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-7575"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-1790"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-1789"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-1793"
          },
          {
            "trust": 0.1,
            "url": "https://h20392.www2.hp.com/portal/swdepot/displayproductinfo.do?productnumber"
          },
          {
            "trust": 0.1,
            "url": "https://www.hp.com/go/swa"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-1791"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-1788"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-1792"
          },
          {
            "trust": 0.1,
            "url": "https://www.ibm.com/developerworks/java/jdk/lifecycle/"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2733"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2728"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2730"
          },
          {
            "trust": 0.1,
            "url": "https://launchpad.net/ubuntu/+source/firefox/39.0+build5-0ubuntu0.12.04.2"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2727"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2725"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2731"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2741"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2726"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2722"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2729"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2743"
          },
          {
            "trust": 0.1,
            "url": "https://softwaresupport.hp.com/group/softwaresupport/search-result/-/facetsea"
          },
          {
            "trust": 0.1,
            "url": "https://softwaresupport.hp.com/group/softwaresupport/search-result/-/facets"
          },
          {
            "trust": 0.1,
            "url": "https://rhn.redhat.com/errata/rhsa-2016-2055.html"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/articles/2688611"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/solutions/222023"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-2109"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-2106"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2016-2109"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-4459"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-3195"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-3183"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2016-2106"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2016-2105"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2016-3110"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2016-4459"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-2108"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2015-3195"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2015-3183"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-2105"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/documentation/en-us/jboss_enterprise_application_platform/6.4/index.html"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-3110"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/jbossnetwork/restricted/listsoftware.html?product=appplatform\u0026downloadtype=securitypatches\u0026version=6.4"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2016-2108"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2619"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2015-2613"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-4729"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2015-4736"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-4736"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2015-4729"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2596"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2613"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2015-2619"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2015-2596"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-3149"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2015-3149"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2015-2659"
          },
          {
            "trust": 0.1,
            "url": "https://access.redhat.com/security/cve/cve-2015-2659"
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-81961"
          },
          {
            "db": "BID",
            "id": "74733"
          },
          {
            "db": "PACKETSTORM",
            "id": "169661"
          },
          {
            "db": "PACKETSTORM",
            "id": "133344"
          },
          {
            "db": "PACKETSTORM",
            "id": "139002"
          },
          {
            "db": "PACKETSTORM",
            "id": "132973"
          },
          {
            "db": "PACKETSTORM",
            "id": "132943"
          },
          {
            "db": "PACKETSTORM",
            "id": "132699"
          },
          {
            "db": "PACKETSTORM",
            "id": "132729"
          },
          {
            "db": "PACKETSTORM",
            "id": "133338"
          },
          {
            "db": "PACKETSTORM",
            "id": "132803"
          },
          {
            "db": "PACKETSTORM",
            "id": "133324"
          },
          {
            "db": "PACKETSTORM",
            "id": "139115"
          },
          {
            "db": "PACKETSTORM",
            "id": "132728"
          },
          {
            "db": "PACKETSTORM",
            "id": "132696"
          },
          {
            "db": "PACKETSTORM",
            "id": "132921"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-002764"
          },
          {
            "db": "NVD",
            "id": "CVE-2015-4000"
          }
        ]
      },
      "sources": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "db": "VULHUB",
            "id": "VHN-81961"
          },
          {
            "db": "BID",
            "id": "74733"
          },
          {
            "db": "PACKETSTORM",
            "id": "169661"
          },
          {
            "db": "PACKETSTORM",
            "id": "133344"
          },
          {
            "db": "PACKETSTORM",
            "id": "139002"
          },
          {
            "db": "PACKETSTORM",
            "id": "132973"
          },
          {
            "db": "PACKETSTORM",
            "id": "132943"
          },
          {
            "db": "PACKETSTORM",
            "id": "132699"
          },
          {
            "db": "PACKETSTORM",
            "id": "132729"
          },
          {
            "db": "PACKETSTORM",
            "id": "133338"
          },
          {
            "db": "PACKETSTORM",
            "id": "132803"
          },
          {
            "db": "PACKETSTORM",
            "id": "133324"
          },
          {
            "db": "PACKETSTORM",
            "id": "139115"
          },
          {
            "db": "PACKETSTORM",
            "id": "132728"
          },
          {
            "db": "PACKETSTORM",
            "id": "132696"
          },
          {
            "db": "PACKETSTORM",
            "id": "132921"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-002764"
          },
          {
            "db": "NVD",
            "id": "CVE-2015-4000"
          }
        ]
      },
      "sources_release_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2015-05-21T00:00:00",
            "db": "VULHUB",
            "id": "VHN-81961"
          },
          {
            "date": "2015-05-19T00:00:00",
            "db": "BID",
            "id": "74733"
          },
          {
            "date": "2016-01-28T12:12:12",
            "db": "PACKETSTORM",
            "id": "169661"
          },
          {
            "date": "2015-08-27T13:19:00",
            "db": "PACKETSTORM",
            "id": "133344"
          },
          {
            "date": "2016-10-06T20:59:47",
            "db": "PACKETSTORM",
            "id": "139002"
          },
          {
            "date": "2015-08-06T10:10:00",
            "db": "PACKETSTORM",
            "id": "132973"
          },
          {
            "date": "2015-08-04T17:55:43",
            "db": "PACKETSTORM",
            "id": "132943"
          },
          {
            "date": "2015-07-16T17:45:50",
            "db": "PACKETSTORM",
            "id": "132699"
          },
          {
            "date": "2015-07-17T19:49:52",
            "db": "PACKETSTORM",
            "id": "132729"
          },
          {
            "date": "2015-08-26T23:42:39",
            "db": "PACKETSTORM",
            "id": "133338"
          },
          {
            "date": "2015-07-22T22:38:54",
            "db": "PACKETSTORM",
            "id": "132803"
          },
          {
            "date": "2015-08-26T01:35:03",
            "db": "PACKETSTORM",
            "id": "133324"
          },
          {
            "date": "2016-10-12T20:28:07",
            "db": "PACKETSTORM",
            "id": "139115"
          },
          {
            "date": "2015-07-17T19:49:22",
            "db": "PACKETSTORM",
            "id": "132728"
          },
          {
            "date": "2015-07-16T17:45:20",
            "db": "PACKETSTORM",
            "id": "132696"
          },
          {
            "date": "2015-08-04T01:08:37",
            "db": "PACKETSTORM",
            "id": "132921"
          },
          {
            "date": "2015-05-22T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2015-002764"
          },
          {
            "date": "2015-05-21T00:59:00.087000",
            "db": "NVD",
            "id": "CVE-2015-4000"
          }
        ]
      },
      "sources_update_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2023-02-09T00:00:00",
            "db": "VULHUB",
            "id": "VHN-81961"
          },
          {
            "date": "2018-10-08T08:00:00",
            "db": "BID",
            "id": "74733"
          },
          {
            "date": "2018-09-21T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2015-002764"
          },
          {
            "date": "2025-04-12T10:46:40.837000",
            "db": "NVD",
            "id": "CVE-2015-4000"
          }
        ]
      },
      "threat_type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/threat_type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "network",
        "sources": [
          {
            "db": "BID",
            "id": "74733"
          }
        ],
        "trust": 0.3
      },
      "title": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/title#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "TLS Vulnerabilities that can be used to perform cryptographic algorithm downgrade attacks in protocols",
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-002764"
          }
        ],
        "trust": 0.8
      },
      "type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "Design Error",
        "sources": [
          {
            "db": "BID",
            "id": "74733"
          }
        ],
        "trust": 0.3
      }
    }

    VAR-202209-1859

    Vulnerability from variot - Updated: 2025-11-18 15:12

    Layer 2 network filtering capabilities such as IPv6 RA guard or ARP inspection can be bypassed using combinations of VLAN 0 headers and LLC/SNAP headers. Layer-2 (L2) network security controls provided by various devices, such as switches, routers, and operating systems, can be bypassed by stacking Ethernet protocol headers. An attacker can send crafted packets through vulnerable devices to cause Denial-of-service (DoS) or to perform a man-in-the-middle (MitM) attack against a target network.CVE-2021-27853 Affected CVE-2021-27854 Affected CVE-2021-27861 Affected CVE-2021-27862 AffectedCVE-2021-27853 Affected CVE-2021-27854 Affected CVE-2021-27861 Affected CVE-2021-27862 Affected. IEEE of ieee 802.2 Products from multiple other vendors contain vulnerabilities related to authentication bypass through spoofing.Information may be tampered with

    Show details on source website

    {
      "@context": {
        "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#",
        "affected_products": {
          "@id": "https://www.variotdbs.pl/ref/affected_products"
        },
        "credits": {
          "@id": "https://www.variotdbs.pl/ref/credits"
        },
        "cvss": {
          "@id": "https://www.variotdbs.pl/ref/cvss/"
        },
        "description": {
          "@id": "https://www.variotdbs.pl/ref/description/"
        },
        "exploit_availability": {
          "@id": "https://www.variotdbs.pl/ref/exploit_availability/"
        },
        "external_ids": {
          "@id": "https://www.variotdbs.pl/ref/external_ids/"
        },
        "iot": {
          "@id": "https://www.variotdbs.pl/ref/iot/"
        },
        "iot_taxonomy": {
          "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/"
        },
        "patch": {
          "@id": "https://www.variotdbs.pl/ref/patch/"
        },
        "problemtype_data": {
          "@id": "https://www.variotdbs.pl/ref/problemtype_data/"
        },
        "references": {
          "@id": "https://www.variotdbs.pl/ref/references/"
        },
        "sources": {
          "@id": "https://www.variotdbs.pl/ref/sources/"
        },
        "sources_release_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_release_date/"
        },
        "sources_update_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_update_date/"
        },
        "threat_type": {
          "@id": "https://www.variotdbs.pl/ref/threat_type/"
        },
        "title": {
          "@id": "https://www.variotdbs.pl/ref/title/"
        },
        "type": {
          "@id": "https://www.variotdbs.pl/ref/type/"
        }
      },
      "@id": "https://www.variotdbs.pl/vuln/VAR-202209-1859",
      "affected_products": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/affected_products#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "model": "meraki ms420",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "nexus 93108tc-fx",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "n9k-x9464px",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 9736pq",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus x9636q-r",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "meraki ms350",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "sg500x-48p",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "nexus 9516",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "n9k-x9736c-ex",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "catalyst 6509-v-e",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "nexus 93108tc-ex",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "sg500-28mpp",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "n9k-c9348d-gx2a",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "sf-500-24mp",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "meraki ms250",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "nexus 9364c-gx",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "n9k-x9636c-rx",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 9336c-fx2-e",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "sf500-18p",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "ios xe",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "17.4.1"
          },
          {
            "model": "meraki ms450",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "sf500-48mp",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "catalyst 6503-e",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "n9k-x9788tc-fx",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 9716d-gx",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "sf500-48",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "sg500x-48",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "nexus 93108tc-fx3p",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 9636pq",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "n9k-x9636c-r",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "sg500-28",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "sg500x-24mpp",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "nexus 92160yc-x",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "catalyst c6840-x-le-40g",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "sg500-52mp",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "802.2",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "ieee",
            "version": "802.2h-1997"
          },
          {
            "model": "sg500-28p",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "catalyst 6880-x",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "nexus 93240yc-fx2",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "catalyst 6506-e",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "n9k-x9564px",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 9508",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "n9k-c93600cd-gx",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "sg500x-48mpp",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "ios xe",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "17.6.1"
          },
          {
            "model": "nexus 92348gc-x",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 9536pq",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "meraki ms390",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "catalyst 6509-neb-a",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "catalyst 6509-e",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "n9k-x9732c-fx",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "meraki ms425",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "nexus 9236c",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 9504",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 93120tx",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 9364c",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "n9k-x9464tx2",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "n9k-x9732c-ex",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "meraki ms410",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "nexus 93216tc-fx2",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "n9k-c9364d-gx2a",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "ios xe",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.2\\(07\\)e03"
          },
          {
            "model": "ios xe",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.2\\(07\\)e02"
          },
          {
            "model": "meraki ms210",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "nexus 93180yc-fx",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 92304qc",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "catalyst 6513-e",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "catalyst c6824-x-le-40g",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "catalyst c6832-x-le",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "sg500-52p",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "nexus 92300yc",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 93360yc-fx2",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 93180yc-fx3",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 9348gc-fxp",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "sf500-24p",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "n9k-c9316d-gx",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 9272q",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "catalyst 6800ia",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "catalyst 6840-x",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "nexus 9800",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "sg500-52",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "catalyst 6504-e",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "nexus 93180yc-ex",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "sg500x-24p",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "sg500x-24",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "n9k-x9564tx",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "sf500-24",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.0.61"
          },
          {
            "model": "n9k-x9432c-s",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "ios xe",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "17.3.3"
          },
          {
            "model": "n9k-x9736c-fx",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "n9k-c9332d-gx2b",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "p802.1q",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "ietf",
            "version": "d1.0"
          },
          {
            "model": "catalyst 6807-xl",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "nexus 9432pq",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 9336c-fx2",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "nexus 9332c",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "meraki ms355",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "catalyst c6816-x-le",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "15.5\\(01.01.85\\)sy07"
          },
          {
            "model": "n9k-x97160yc-ex",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "9.3\\(5\\)"
          },
          {
            "model": "meraki ms225",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "cisco ios xe",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "802.2",
            "scope": null,
            "trust": 0.8,
            "vendor": "ieee",
            "version": null
          },
          {
            "model": "catalyst 6509-e",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "catalyst 6840-x",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "catalyst 6509-neb-a",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "catalyst 6506-e",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "catalyst c6816-x-le",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "ios xe",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "catalyst c6824-x-le-40g",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "catalyst 6509-v-e",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "p802.1q",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u6280\u8853\u30bf\u30b9\u30af\u30d5\u30a9\u30fc\u30b9 ietf",
            "version": null
          },
          {
            "model": "catalyst 6880-x",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "catalyst 6807-xl",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "catalyst c6832-x-le",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "catalyst 6800ia",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "catalyst c6840-x-le-40g",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "catalyst 6503-e",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "catalyst 6504-e",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          },
          {
            "model": "catalyst 6513-e",
            "scope": null,
            "trust": 0.8,
            "vendor": "\u30b7\u30b9\u30b3\u30b7\u30b9\u30c6\u30e0\u30ba",
            "version": null
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2021-020376"
          },
          {
            "db": "NVD",
            "id": "CVE-2021-27853"
          }
        ]
      },
      "credits": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/credits#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "This document was written by Timur Snoke.Statement Date:\u00a0\u00a0 September 27, 2022",
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#855201"
          }
        ],
        "trust": 0.8
      },
      "cve": "CVE-2021-27853",
      "cvss": {
        "@context": {
          "cvssV2": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2"
          },
          "cvssV3": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/"
          },
          "severity": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/cvss/severity#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/severity"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "cvssV2": [],
            "cvssV3": [
              {
                "attackComplexity": "LOW",
                "attackVector": "ADJACENT",
                "author": "nvd@nist.gov",
                "availabilityImpact": "NONE",
                "baseScore": 4.7,
                "baseSeverity": "MEDIUM",
                "confidentialityImpact": "NONE",
                "exploitabilityScore": 2.8,
                "id": "CVE-2021-27853",
                "impactScore": 1.4,
                "integrityImpact": "LOW",
                "privilegesRequired": "NONE",
                "scope": "CHANGED",
                "trust": 2.0,
                "userInteraction": "NONE",
                "vectorString": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N",
                "version": "3.1"
              },
              {
                "attackComplexity": "Low",
                "attackVector": "Adjacent Network",
                "author": "NVD",
                "availabilityImpact": "None",
                "baseScore": 4.7,
                "baseSeverity": "Medium",
                "confidentialityImpact": "None",
                "exploitabilityScore": null,
                "id": "CVE-2021-27853",
                "impactScore": null,
                "integrityImpact": "Low",
                "privilegesRequired": "None",
                "scope": "Changed",
                "trust": 0.8,
                "userInteraction": "None",
                "vectorString": "CVSS:3.0/AV:A/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N",
                "version": "3.0"
              }
            ],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2021-27853",
                "trust": 1.0,
                "value": "MEDIUM"
              },
              {
                "author": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
                "id": "CVE-2021-27853",
                "trust": 1.0,
                "value": "MEDIUM"
              },
              {
                "author": "NVD",
                "id": "CVE-2021-27853",
                "trust": 0.8,
                "value": "Medium"
              },
              {
                "author": "CNNVD",
                "id": "CNNVD-202209-2794",
                "trust": 0.6,
                "value": "MEDIUM"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-202209-2794"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2021-020376"
          },
          {
            "db": "NVD",
            "id": "CVE-2021-27853"
          },
          {
            "db": "NVD",
            "id": "CVE-2021-27853"
          }
        ]
      },
      "description": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/description#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "Layer 2 network filtering capabilities such as IPv6 RA guard or ARP inspection can be bypassed using combinations of VLAN 0 headers and LLC/SNAP headers. Layer-2 (L2) network security controls provided by various devices, such as switches, routers, and operating systems, can be bypassed by stacking Ethernet protocol headers. An attacker can send crafted packets through vulnerable devices to cause Denial-of-service (DoS) or to perform a man-in-the-middle (MitM) attack against a target network.CVE-2021-27853 Affected\nCVE-2021-27854 Affected\nCVE-2021-27861 Affected\nCVE-2021-27862 AffectedCVE-2021-27853 Affected\nCVE-2021-27854 Affected\nCVE-2021-27861 Affected\nCVE-2021-27862 Affected. IEEE of ieee 802.2 Products from multiple other vendors contain vulnerabilities related to authentication bypass through spoofing.Information may be tampered with",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2021-27853"
          },
          {
            "db": "CERT/CC",
            "id": "VU#855201"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2021-020376"
          },
          {
            "db": "VULMON",
            "id": "CVE-2021-27853"
          }
        ],
        "trust": 2.43
      },
      "external_ids": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/external_ids#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "db": "NVD",
            "id": "CVE-2021-27853",
            "trust": 4.1
          },
          {
            "db": "CERT/CC",
            "id": "VU#855201",
            "trust": 3.2
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2021-020376",
            "trust": 0.8
          },
          {
            "db": "AUSCERT",
            "id": "ESB-2022.4805",
            "trust": 0.6
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-202209-2794",
            "trust": 0.6
          },
          {
            "db": "VULMON",
            "id": "CVE-2021-27853",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#855201"
          },
          {
            "db": "VULMON",
            "id": "CVE-2021-27853"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-202209-2794"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2021-020376"
          },
          {
            "db": "NVD",
            "id": "CVE-2021-27853"
          }
        ]
      },
      "id": "VAR-202209-1859",
      "iot": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/iot#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": true,
        "sources": [
          {
            "db": "VARIoT devices database",
            "id": null
          }
        ],
        "trust": 1.0
      },
      "last_update_date": "2025-11-18T15:12:14.158000Z",
      "patch": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/patch#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "title": "draft-ietf-v6ops-ra-guard-08 Cisco Systems Cisco\u00a0Security\u00a0Advisory",
            "trust": 0.8,
            "url": "https://standards.ieee.org/ieee/802.1Q/10323/"
          },
          {
            "title": "Multiple Cisco Product security vulnerabilities",
            "trust": 0.6,
            "url": "http://123.124.177.30/web/xxk/bdxqById.tag?id=209667"
          }
        ],
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-202209-2794"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2021-020376"
          }
        ]
      },
      "problemtype_data": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "problemtype": "CWE-290",
            "trust": 1.0
          },
          {
            "problemtype": "Avoid authentication by spoofing (CWE-290) [NVD evaluation ]",
            "trust": 0.8
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2021-020376"
          },
          {
            "db": "NVD",
            "id": "CVE-2021-27853"
          }
        ]
      },
      "references": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/references#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "trust": 2.4,
            "url": "https://blog.champtar.fr/vlan0_llc_snap/"
          },
          {
            "trust": 2.4,
            "url": "https://kb.cert.org/vuls/id/855201"
          },
          {
            "trust": 1.7,
            "url": "https://standards.ieee.org/ieee/802.2/1048/"
          },
          {
            "trust": 1.7,
            "url": "https://datatracker.ietf.org/doc/draft-ietf-v6ops-ra-guard/08/"
          },
          {
            "trust": 1.7,
            "url": "https://standards.ieee.org/ieee/802.1q/10323/"
          },
          {
            "trust": 1.7,
            "url": "https://tools.cisco.com/security/center/content/ciscosecurityadvisory/cisco-sa-vu855201-j3z8cktx"
          },
          {
            "trust": 1.0,
            "url": "https://www.kb.cert.org/vuls/id/855201"
          },
          {
            "trust": 0.8,
            "url": "https://jvn.jp/ta/jvnta96784241/"
          },
          {
            "trust": 0.8,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2021-27853"
          },
          {
            "trust": 0.6,
            "url": "https://cxsecurity.com/cveshow/cve-2021-27853/"
          },
          {
            "trust": 0.6,
            "url": "https://www.auscert.org.au/bulletins/esb-2022.4805"
          },
          {
            "trust": 0.6,
            "url": "https://vigilance.fr/vulnerability/cisco-juniper-ingress-filtrering-bypass-via-layer-2-39380"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov"
          }
        ],
        "sources": [
          {
            "db": "VULMON",
            "id": "CVE-2021-27853"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-202209-2794"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2021-020376"
          },
          {
            "db": "NVD",
            "id": "CVE-2021-27853"
          }
        ]
      },
      "sources": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#855201"
          },
          {
            "db": "VULMON",
            "id": "CVE-2021-27853"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-202209-2794"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2021-020376"
          },
          {
            "db": "NVD",
            "id": "CVE-2021-27853"
          }
        ]
      },
      "sources_release_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2022-09-27T00:00:00",
            "db": "CERT/CC",
            "id": "VU#855201"
          },
          {
            "date": "2022-09-27T00:00:00",
            "db": "VULMON",
            "id": "CVE-2021-27853"
          },
          {
            "date": "2022-09-27T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-202209-2794"
          },
          {
            "date": "2023-10-20T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2021-020376"
          },
          {
            "date": "2022-09-27T18:15:09.527000",
            "db": "NVD",
            "id": "CVE-2021-27853"
          }
        ]
      },
      "sources_update_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2022-10-03T00:00:00",
            "db": "CERT/CC",
            "id": "VU#855201"
          },
          {
            "date": "2022-09-27T00:00:00",
            "db": "VULMON",
            "id": "CVE-2021-27853"
          },
          {
            "date": "2022-10-13T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-202209-2794"
          },
          {
            "date": "2023-10-20T06:17:00",
            "db": "JVNDB",
            "id": "JVNDB-2021-020376"
          },
          {
            "date": "2025-11-04T20:15:59.233000",
            "db": "NVD",
            "id": "CVE-2021-27853"
          }
        ]
      },
      "threat_type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/threat_type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "remote or local",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-202209-2794"
          }
        ],
        "trust": 0.6
      },
      "title": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/title#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "L2 network security controls can be bypassed using VLAN 0 stacking and/or 802.3 headers",
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#855201"
          }
        ],
        "trust": 0.8
      },
      "type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "other",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-202209-2794"
          }
        ],
        "trust": 0.6
      }
    }

    VAR-201609-0068

    Vulnerability from variot - Updated: 2025-04-13 23:32

    The TLS protocol 1.2 and earlier supports the rsa_fixed_dh, dss_fixed_dh, rsa_fixed_ecdh, and ecdsa_fixed_ecdh values for ClientCertificateType but does not directly document the ability to compute the master secret in certain situations with a client secret key and server public key but not a server secret key, which makes it easier for man-in-the-middle attackers to spoof TLS servers by leveraging knowledge of the secret key for an arbitrary installed client X.509 certificate, aka the "Key Compromise Impersonation (KCI)" issue. TLS is prone to security-bypass vulnerability. Successfully exploiting this issue may allow attackers to perform unauthorized actions by conducting a man-in-the-middle attack. This may lead to other attacks. TLS (full name Transport Layer Security) protocol is a set of protocols used to provide confidentiality and data integrity between two communication applications. There are security holes in TLS protocol 1.2 and earlier versions

    Show details on source website

    {
      "@context": {
        "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#",
        "affected_products": {
          "@id": "https://www.variotdbs.pl/ref/affected_products"
        },
        "configurations": {
          "@id": "https://www.variotdbs.pl/ref/configurations"
        },
        "credits": {
          "@id": "https://www.variotdbs.pl/ref/credits"
        },
        "cvss": {
          "@id": "https://www.variotdbs.pl/ref/cvss/"
        },
        "description": {
          "@id": "https://www.variotdbs.pl/ref/description/"
        },
        "exploit_availability": {
          "@id": "https://www.variotdbs.pl/ref/exploit_availability/"
        },
        "external_ids": {
          "@id": "https://www.variotdbs.pl/ref/external_ids/"
        },
        "iot": {
          "@id": "https://www.variotdbs.pl/ref/iot/"
        },
        "iot_taxonomy": {
          "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/"
        },
        "patch": {
          "@id": "https://www.variotdbs.pl/ref/patch/"
        },
        "problemtype_data": {
          "@id": "https://www.variotdbs.pl/ref/problemtype_data/"
        },
        "references": {
          "@id": "https://www.variotdbs.pl/ref/references/"
        },
        "sources": {
          "@id": "https://www.variotdbs.pl/ref/sources/"
        },
        "sources_release_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_release_date/"
        },
        "sources_update_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_update_date/"
        },
        "threat_type": {
          "@id": "https://www.variotdbs.pl/ref/threat_type/"
        },
        "title": {
          "@id": "https://www.variotdbs.pl/ref/title/"
        },
        "type": {
          "@id": "https://www.variotdbs.pl/ref/type/"
        }
      },
      "@id": "https://www.variotdbs.pl/vuln/VAR-201609-0068",
      "affected_products": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/affected_products#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "model": "solidfire \\\u0026 hci management node",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "model": "smi-s provider",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "model": "snapmanager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "model": "clustered data ontap antivirus connector",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "model": "data ontap edge",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "model": "transport layer security",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "ietf",
            "version": "1.2"
          },
          {
            "model": "oncommand shift",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "model": "host agent",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "model": "plug-in for symantec netbackup",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "model": "system setup",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "model": "snapprotect",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "model": "snap creator framework",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "model": "snapdrive",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "netapp",
            "version": null
          },
          {
            "model": "chrome",
            "scope": null,
            "trust": 0.8,
            "vendor": "google",
            "version": null
          },
          {
            "model": "firefox",
            "scope": null,
            "trust": 0.8,
            "vendor": "mozilla",
            "version": null
          },
          {
            "model": "opera",
            "scope": null,
            "trust": 0.8,
            "vendor": "opera asa",
            "version": null
          },
          {
            "model": "safari",
            "scope": null,
            "trust": 0.8,
            "vendor": "apple",
            "version": null
          },
          {
            "model": "internet explorer",
            "scope": null,
            "trust": 0.8,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "opera",
            "scope": null,
            "trust": 0.6,
            "vendor": "opera",
            "version": null
          },
          {
            "model": "tls",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "1.2"
          },
          {
            "model": "tls",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "1.1"
          },
          {
            "model": "tls",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "1.0"
          }
        ],
        "sources": [
          {
            "db": "BID",
            "id": "93071"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-007257"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201609-496"
          },
          {
            "db": "NVD",
            "id": "CVE-2015-8960"
          }
        ]
      },
      "configurations": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/configurations#",
          "children": {
            "@container": "@list"
          },
          "cpe_match": {
            "@container": "@list"
          },
          "data": {
            "@container": "@list"
          },
          "nodes": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "CVE_data_version": "4.0",
            "nodes": [
              {
                "cpe_match": [
                  {
                    "cpe22Uri": "cpe:/a:google:chrome",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:mozilla:firefox",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:opera:opera_browser",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:apple:safari",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/a:microsoft:internet_explorer",
                    "vulnerable": true
                  }
                ],
                "operator": "OR"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-007257"
          }
        ]
      },
      "credits": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/credits#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "RISE GmbH",
        "sources": [
          {
            "db": "BID",
            "id": "93071"
          }
        ],
        "trust": 0.3
      },
      "cve": "CVE-2015-8960",
      "cvss": {
        "@context": {
          "cvssV2": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2"
          },
          "cvssV3": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/"
          },
          "severity": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/cvss/severity#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/severity"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "cvssV2": [
              {
                "accessComplexity": "MEDIUM",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "nvd@nist.gov",
                "availabilityImpact": "PARTIAL",
                "baseScore": 6.8,
                "confidentialityImpact": "PARTIAL",
                "exploitabilityScore": 8.6,
                "id": "CVE-2015-8960",
                "impactScore": 6.4,
                "integrityImpact": "PARTIAL",
                "severity": "MEDIUM",
                "trust": 1.9,
                "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
                "version": "2.0"
              },
              {
                "accessComplexity": "MEDIUM",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "VULHUB",
                "availabilityImpact": "PARTIAL",
                "baseScore": 6.8,
                "confidentialityImpact": "PARTIAL",
                "exploitabilityScore": 8.6,
                "id": "VHN-86921",
                "impactScore": 6.4,
                "integrityImpact": "PARTIAL",
                "severity": "MEDIUM",
                "trust": 0.1,
                "vectorString": "AV:N/AC:M/AU:N/C:P/I:P/A:P",
                "version": "2.0"
              }
            ],
            "cvssV3": [
              {
                "attackComplexity": "HIGH",
                "attackVector": "NETWORK",
                "author": "nvd@nist.gov",
                "availabilityImpact": "HIGH",
                "baseScore": 8.1,
                "baseSeverity": "HIGH",
                "confidentialityImpact": "HIGH",
                "exploitabilityScore": 2.2,
                "id": "CVE-2015-8960",
                "impactScore": 5.9,
                "integrityImpact": "HIGH",
                "privilegesRequired": "NONE",
                "scope": "UNCHANGED",
                "trust": 1.0,
                "userInteraction": "NONE",
                "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
                "version": "3.1"
              },
              {
                "attackComplexity": "High",
                "attackVector": "Network",
                "author": "NVD",
                "availabilityImpact": "High",
                "baseScore": 8.1,
                "baseSeverity": "High",
                "confidentialityImpact": "High",
                "exploitabilityScore": null,
                "id": "CVE-2015-8960",
                "impactScore": null,
                "integrityImpact": "High",
                "privilegesRequired": "None",
                "scope": "Unchanged",
                "trust": 0.8,
                "userInteraction": "None",
                "vectorString": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
                "version": "3.0"
              }
            ],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2015-8960",
                "trust": 1.0,
                "value": "HIGH"
              },
              {
                "author": "NVD",
                "id": "CVE-2015-8960",
                "trust": 0.8,
                "value": "High"
              },
              {
                "author": "CNNVD",
                "id": "CNNVD-201609-496",
                "trust": 0.6,
                "value": "HIGH"
              },
              {
                "author": "VULHUB",
                "id": "VHN-86921",
                "trust": 0.1,
                "value": "MEDIUM"
              },
              {
                "author": "VULMON",
                "id": "CVE-2015-8960",
                "trust": 0.1,
                "value": "MEDIUM"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-86921"
          },
          {
            "db": "VULMON",
            "id": "CVE-2015-8960"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-007257"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201609-496"
          },
          {
            "db": "NVD",
            "id": "CVE-2015-8960"
          }
        ]
      },
      "description": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/description#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "The TLS protocol 1.2 and earlier supports the rsa_fixed_dh, dss_fixed_dh, rsa_fixed_ecdh, and ecdsa_fixed_ecdh values for ClientCertificateType but does not directly document the ability to compute the master secret in certain situations with a client secret key and server public key but not a server secret key, which makes it easier for man-in-the-middle attackers to spoof TLS servers by leveraging knowledge of the secret key for an arbitrary installed client X.509 certificate, aka the \"Key Compromise Impersonation (KCI)\" issue. TLS is prone to security-bypass vulnerability. \nSuccessfully exploiting this issue may allow attackers to perform unauthorized actions by conducting a man-in-the-middle attack. This may lead to other attacks. TLS (full name Transport Layer Security) protocol is a set of protocols used to provide confidentiality and data integrity between two communication applications. There are security holes in TLS protocol 1.2 and earlier versions",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2015-8960"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-007257"
          },
          {
            "db": "BID",
            "id": "93071"
          },
          {
            "db": "VULHUB",
            "id": "VHN-86921"
          },
          {
            "db": "VULMON",
            "id": "CVE-2015-8960"
          }
        ],
        "trust": 2.07
      },
      "external_ids": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/external_ids#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "db": "NVD",
            "id": "CVE-2015-8960",
            "trust": 2.9
          },
          {
            "db": "BID",
            "id": "93071",
            "trust": 2.1
          },
          {
            "db": "OPENWALL",
            "id": "OSS-SECURITY/2016/09/20/4",
            "trust": 1.8
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-007257",
            "trust": 0.8
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201609-496",
            "trust": 0.7
          },
          {
            "db": "VULHUB",
            "id": "VHN-86921",
            "trust": 0.1
          },
          {
            "db": "VULMON",
            "id": "CVE-2015-8960",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-86921"
          },
          {
            "db": "VULMON",
            "id": "CVE-2015-8960"
          },
          {
            "db": "BID",
            "id": "93071"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-007257"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201609-496"
          },
          {
            "db": "NVD",
            "id": "CVE-2015-8960"
          }
        ]
      },
      "id": "VAR-201609-0068",
      "iot": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/iot#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": true,
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-86921"
          }
        ],
        "trust": 0.01
      },
      "last_update_date": "2025-04-13T23:32:37.955000Z",
      "patch": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/patch#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "title": "Google Chrome",
            "trust": 0.8,
            "url": "https://www.google.com/intl/ja/chrome/browser/features.html"
          },
          {
            "title": "Firefox",
            "trust": 0.8,
            "url": "https://www.mozilla.org/ja/firefox/desktop/"
          },
          {
            "title": "Opera",
            "trust": 0.8,
            "url": "http://www.opera.com/ja"
          },
          {
            "title": "Safari",
            "trust": 0.8,
            "url": "http://www.apple.com/jp/safari/"
          },
          {
            "title": "Internet Explorer",
            "trust": 0.8,
            "url": "https://support.microsoft.com/ja-jp/products/internet-explorer"
          },
          {
            "title": "TLS protocol Security vulnerabilities",
            "trust": 0.6,
            "url": "http://123.124.177.30/web/xxk/bdxqById.tag?id=64220"
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-007257"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201609-496"
          }
        ]
      },
      "problemtype_data": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "problemtype": "CWE-295",
            "trust": 1.1
          },
          {
            "problemtype": "CWE-310",
            "trust": 0.9
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-86921"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-007257"
          },
          {
            "db": "NVD",
            "id": "CVE-2015-8960"
          }
        ]
      },
      "references": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/references#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "trust": 2.6,
            "url": "http://twitter.com/matthew_d_green/statuses/630908726950674433"
          },
          {
            "trust": 2.6,
            "url": "https://www.usenix.org/system/files/conference/woot15/woot15-paper-hlauschek.pdf"
          },
          {
            "trust": 1.9,
            "url": "http://www.securityfocus.com/bid/93071"
          },
          {
            "trust": 1.8,
            "url": "https://security.netapp.com/advisory/ntap-20180626-0002/"
          },
          {
            "trust": 1.8,
            "url": "https://kcitls.org"
          },
          {
            "trust": 1.8,
            "url": "http://www.openwall.com/lists/oss-security/2016/09/20/4"
          },
          {
            "trust": 1.1,
            "url": "https://kcitls.org/"
          },
          {
            "trust": 0.8,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2015-8960"
          },
          {
            "trust": 0.8,
            "url": "http://web.nvd.nist.gov/view/vuln/detail?vulnid=cve-2015-8960"
          },
          {
            "trust": 0.3,
            "url": "http://seclists.org/oss-sec/2016/q3/576"
          },
          {
            "trust": 0.1,
            "url": "https://cwe.mitre.org/data/definitions/310.html"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov"
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-86921"
          },
          {
            "db": "VULMON",
            "id": "CVE-2015-8960"
          },
          {
            "db": "BID",
            "id": "93071"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-007257"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201609-496"
          },
          {
            "db": "NVD",
            "id": "CVE-2015-8960"
          }
        ]
      },
      "sources": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "db": "VULHUB",
            "id": "VHN-86921"
          },
          {
            "db": "VULMON",
            "id": "CVE-2015-8960"
          },
          {
            "db": "BID",
            "id": "93071"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-007257"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201609-496"
          },
          {
            "db": "NVD",
            "id": "CVE-2015-8960"
          }
        ]
      },
      "sources_release_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2016-09-21T00:00:00",
            "db": "VULHUB",
            "id": "VHN-86921"
          },
          {
            "date": "2016-09-21T00:00:00",
            "db": "VULMON",
            "id": "CVE-2015-8960"
          },
          {
            "date": "2016-09-19T00:00:00",
            "db": "BID",
            "id": "93071"
          },
          {
            "date": "2016-09-27T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2015-007257"
          },
          {
            "date": "2016-09-21T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-201609-496"
          },
          {
            "date": "2016-09-21T02:59:00.133000",
            "db": "NVD",
            "id": "CVE-2015-8960"
          }
        ]
      },
      "sources_update_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2023-01-30T00:00:00",
            "db": "VULHUB",
            "id": "VHN-86921"
          },
          {
            "date": "2018-06-28T00:00:00",
            "db": "VULMON",
            "id": "CVE-2015-8960"
          },
          {
            "date": "2016-10-03T00:02:00",
            "db": "BID",
            "id": "93071"
          },
          {
            "date": "2016-09-27T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2015-007257"
          },
          {
            "date": "2023-02-01T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-201609-496"
          },
          {
            "date": "2025-04-12T10:46:40.837000",
            "db": "NVD",
            "id": "CVE-2015-8960"
          }
        ]
      },
      "threat_type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/threat_type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "remote",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-201609-496"
          }
        ],
        "trust": 0.6
      },
      "title": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/title#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "TLS In the protocol  TLS Vulnerability impersonating a server",
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2015-007257"
          }
        ],
        "trust": 0.8
      },
      "type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "trust management problem",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-201609-496"
          }
        ],
        "trust": 0.6
      }
    }

    VAR-201103-0090

    Vulnerability from variot - Updated: 2025-04-11 21:38

    The STARTTLS implementation in the server in Ipswitch IMail 11.03 and earlier does not properly restrict I/O buffering, which allows man-in-the-middle attackers to insert commands into encrypted SMTP sessions by sending a cleartext command that is processed after TLS is in place, related to a "plaintext command injection" attack, a similar issue to CVE-2011-0411. Some STARTTLS implementations could allow a remote attacker to inject commands during the plaintext phase of the protocol. This vulnerability is related to plain text command injection attacks. An attacker can exploit this issue to execute arbitrary commands in the context of the user running the application. Successful exploits can allow attackers to obtain email usernames and passwords. The following vendors are affected: Ipswitch Kerio Postfix Qmail-TLS Oracle (note that the affected application is unknown) SCO Group spamdyke ISC. Ipswitch IMail Server is an American Ipswitch company's mail server running on the Microsoft Windows operating system.

    SOLUTION: Restrict access to trusted hosts only.

    PROVIDED AND/OR DISCOVERED BY: Wietse Venema via US-CERT. ----------------------------------------------------------------------

    Alerts when vulnerabilities pose a threat to your infrastructure The enhanced reporting module of the Secunia Vulnerability Intelligence Manager (VIM) enables you to combine advisory and ticket information, and generate policy compliance statistics. Using your asset list preferences, customised notifications are issued as soon as a new vulnerability is discovered - a valuable tool for documenting mitigation strategies.

    SOLUTION: Apply fixes. ----------------------------------------------------------------------

    Get a tax break on purchases of Secunia Solutions!

    If you are a U.S. company, you may be qualified for a tax break for your software purchases. Learn more at: http://secunia.com/products/corporate/vim/section_179/


    TITLE: Kerio Connect "STARTTLS" Plaintext Injection Vulnerability

    SECUNIA ADVISORY ID: SA43678

    VERIFY ADVISORY: Secunia.com http://secunia.com/advisories/43678/ Customer Area (Credentials Required) https://ca.secunia.com/?page=viewadvisory&vuln_id=43678

    RELEASE DATE: 2011-03-12

    DISCUSS ADVISORY: http://secunia.com/advisories/43678/#comments

    AVAILABLE ON SITE AND IN CUSTOMER AREA: * Last Update * Popularity * Comments * Criticality Level * Impact * Where * Solution Status * Operating System / Software * CVE Reference(s)

    http://secunia.com/advisories/43678/

    ONLY AVAILABLE IN CUSTOMER AREA: * Authentication Level * Report Reliability * Secunia PoC * Secunia Analysis * Systems Affected * Approve Distribution * Remediation Status * Secunia CVSS Score * CVSS

    https://ca.secunia.com/?page=viewadvisory&vuln_id=43678

    ONLY AVAILABLE WITH SECUNIA CSI AND SECUNIA PSI: * AUTOMATED SCANNING

    http://secunia.com/vulnerability_scanning/personal/ http://secunia.com/vulnerability_scanning/corporate/wsus_sccm_3rd_third_party_patching/

    DESCRIPTION: A vulnerability has been reported in Kerio Connect, which can be exploited by malicious people to manipulate certain data.

    The vulnerability is caused due to the TLS implementation not properly clearing transport layer buffers when upgrading from plaintext to ciphertext after receiving the "STARTTLS" command. This can be exploited to insert arbitrary plaintext data (e.g. SMTP commands) during the plaintext phase, which will then be executed after upgrading to the TLS ciphertext phase.

    The vulnerability is reported in version 7.1.4 build 2985. Other versions may also be affected.

    SOLUTION: Reportedly, the vendor will fix this in an upcoming version.

    PROVIDED AND/OR DISCOVERED BY: Wietse Venema

    ORIGINAL ADVISORY: US-CERT VU#555316: http://www.kb.cert.org/vuls/id/555316 http://www.kb.cert.org/vuls/id/MAPG-8D9M4P

    OTHER REFERENCES: Further details available in Customer Area: http://secunia.com/products/corporate/EVM/

    DEEP LINKS: Further details available in Customer Area: http://secunia.com/products/corporate/EVM/

    EXTENDED DESCRIPTION: Further details available in Customer Area: http://secunia.com/products/corporate/EVM/

    EXTENDED SOLUTION: Further details available in Customer Area: http://secunia.com/products/corporate/EVM/

    EXPLOIT: Further details available in Customer Area: http://secunia.com/products/corporate/EVM/


    About: This Advisory was delivered by Secunia as a free service to help private users keeping their systems up to date against the latest vulnerabilities.

    Subscribe: http://secunia.com/advisories/secunia_security_advisories/

    Definitions: (Criticality, Where etc.) http://secunia.com/advisories/about_secunia_advisories/

    Please Note: Secunia recommends that you verify all advisories you receive by clicking the link. Secunia NEVER sends attached files with advisories. Secunia does not advise people to install third party patches, only use those supplied by the vendor.


    Unsubscribe: Secunia Security Advisories http://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org


    Show details on source website

    {
      "@context": {
        "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#",
        "affected_products": {
          "@id": "https://www.variotdbs.pl/ref/affected_products"
        },
        "configurations": {
          "@id": "https://www.variotdbs.pl/ref/configurations"
        },
        "credits": {
          "@id": "https://www.variotdbs.pl/ref/credits"
        },
        "cvss": {
          "@id": "https://www.variotdbs.pl/ref/cvss/"
        },
        "description": {
          "@id": "https://www.variotdbs.pl/ref/description/"
        },
        "exploit_availability": {
          "@id": "https://www.variotdbs.pl/ref/exploit_availability/"
        },
        "external_ids": {
          "@id": "https://www.variotdbs.pl/ref/external_ids/"
        },
        "iot": {
          "@id": "https://www.variotdbs.pl/ref/iot/"
        },
        "iot_taxonomy": {
          "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/"
        },
        "patch": {
          "@id": "https://www.variotdbs.pl/ref/patch/"
        },
        "problemtype_data": {
          "@id": "https://www.variotdbs.pl/ref/problemtype_data/"
        },
        "references": {
          "@id": "https://www.variotdbs.pl/ref/references/"
        },
        "sources": {
          "@id": "https://www.variotdbs.pl/ref/sources/"
        },
        "sources_release_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_release_date/"
        },
        "sources_update_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_update_date/"
        },
        "threat_type": {
          "@id": "https://www.variotdbs.pl/ref/threat_type/"
        },
        "title": {
          "@id": "https://www.variotdbs.pl/ref/title/"
        },
        "type": {
          "@id": "https://www.variotdbs.pl/ref/type/"
        }
      },
      "@id": "https://www.variotdbs.pl/vuln/VAR-201103-0090",
      "affected_products": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/affected_products#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "ipswitch",
            "version": "7.0.5"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "ipswitch",
            "version": "5.0.5"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "ipswitch",
            "version": "7.0.2"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "ipswitch",
            "version": "7.0.3"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "ipswitch",
            "version": "5.0.6"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "ipswitch",
            "version": "7.0.4"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "ipswitch",
            "version": "5.0"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "ipswitch",
            "version": "2006.2"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "ipswitch",
            "version": "6.0.1"
          },
          {
            "model": "imail",
            "scope": "lte",
            "trust": 1.8,
            "vendor": "ipswitch",
            "version": "11.03"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "ipswitch",
            "version": "2006"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "6.1"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "8.22"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "6.0.2"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "8.01"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "7.0.1"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "8.11"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "5.0.8"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "8.13"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "6.4"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "8.0.3"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "7.12"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "8.0.5"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "6.0.3"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "8.1"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "6.0.4"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "6.0"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "7.0.7"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "6.0.6"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "6.0.5"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "6.3"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "7.1"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "5.0.7"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "6.2"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "ipswitch",
            "version": "7.0.6"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ipswitch",
            "version": "11.02"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ipswitch",
            "version": "2006.1"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ipswitch",
            "version": "6.00"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ipswitch",
            "version": "11"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ipswitch",
            "version": "6.06"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ipswitch",
            "version": "*"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ipswitch",
            "version": "8.12"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ipswitch",
            "version": "server_8.2_hotfix_2"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ipswitch",
            "version": "10.01"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ipswitch",
            "version": "10"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ipswitch",
            "version": "10.02"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "ipswitch",
            "version": "11.01"
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "cyrus imap",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "debian gnu linux",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "ipswitch",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "kerio",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "postfix",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "qmail tls",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "red hat",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "sun microsystems",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "ubuntu",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "watchguard",
            "version": null
          },
          {
            "model": "linux armel",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.3.1"
          },
          {
            "model": "spamdyke",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "spamdyke",
            "version": "4.2.1"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.7.3"
          },
          {
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.7"
          },
          {
            "model": "imap server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cyrus",
            "version": "2.4"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.5.4"
          },
          {
            "model": "enterprise linux hpc node optional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.0"
          },
          {
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "model": "linux hppa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "model": "linux enterprise sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "model": "groupware server 2.2-rc3",
            "scope": null,
            "trust": 0.3,
            "vendor": "kolab",
            "version": null
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.9"
          },
          {
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.6"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.4.9"
          },
          {
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.0.3"
          },
          {
            "model": "enterprise linux server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.5.5"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.1.5"
          },
          {
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.8"
          },
          {
            "model": "corporate server x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "4.0"
          },
          {
            "model": "enterprise linux server optional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.3.2"
          },
          {
            "model": "linux lts powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.2.3"
          },
          {
            "model": "enterprise server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "5"
          },
          {
            "model": "pure-ftpd",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "pureftpd",
            "version": "1.0.30"
          },
          {
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "11.3"
          },
          {
            "model": "linux lts",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.2"
          },
          {
            "model": "enterprise linux es",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.0"
          },
          {
            "model": "enterprise linux desktop version",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "model": "linux lts amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "model": "enterprise linux workstation",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "linux i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.10"
          },
          {
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.5"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.6"
          },
          {
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.8"
          },
          {
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.4"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "20011115"
          },
          {
            "model": "groupware server -rc2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2"
          },
          {
            "model": "linux lts powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2.3"
          },
          {
            "model": "enterprise linux desktop client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "model": "java system messaging server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "7.0"
          },
          {
            "model": "mailserver patch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.7.01"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.2.2"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.5"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.1"
          },
          {
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "pardus",
            "version": "20110"
          },
          {
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.5.2"
          },
          {
            "model": "linux lts i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.6.3"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.3"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.1.3"
          },
          {
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "imail hotfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.22"
          },
          {
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "11.4"
          },
          {
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.1"
          },
          {
            "model": "enterprise linux workstation optional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "mailserver patch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.6.23"
          },
          {
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.2"
          },
          {
            "model": "linux enterprise sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "model": "linux i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "model": "pure-ftpd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "pureftpd",
            "version": "1.0.29"
          },
          {
            "model": "groupware server 2.1.beta3",
            "scope": null,
            "trust": 0.3,
            "vendor": "kolab",
            "version": null
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.0"
          },
          {
            "model": "linux lts sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "model": "aura communication manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0"
          },
          {
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.3.3"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.4.1"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.3"
          },
          {
            "model": "linux lts amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "model": "groupware server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.3.2"
          },
          {
            "model": "inn",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.5.3"
          },
          {
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.8"
          },
          {
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.10"
          },
          {
            "model": "linux lts i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.4.8"
          },
          {
            "model": "spamdyke",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "spamdyke",
            "version": "4.2"
          },
          {
            "model": "linux mandrake",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2009.0"
          },
          {
            "model": "mailserver patch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.1.31"
          },
          {
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.1"
          },
          {
            "model": "messaging storage server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.4"
          },
          {
            "model": "messaging storage server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "1.1.13"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "19991231"
          },
          {
            "model": "linux alpha",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "linux ia-32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0"
          },
          {
            "model": "linux mipsel",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "linux mips",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.1"
          },
          {
            "model": "imap server",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cyrus",
            "version": "2.4.7"
          },
          {
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.10"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.7"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.6.1"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.3.1"
          },
          {
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "model": "linux lpia",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "model": "connect build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "7.1.42985"
          },
          {
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.3"
          },
          {
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2"
          },
          {
            "model": "linux enterprise sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "10"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.6.2"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.4.2"
          },
          {
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.1"
          },
          {
            "model": "groupware server 2.1beta2",
            "scope": null,
            "trust": 0.3,
            "vendor": "kolab",
            "version": null
          },
          {
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.10"
          },
          {
            "model": "linux lts sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "6.06"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.6-20080902"
          },
          {
            "model": "corporate server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "4.0"
          },
          {
            "model": "linux enterprise sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "11"
          },
          {
            "model": "linux s/390",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.2"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.5"
          },
          {
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.6"
          },
          {
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "model": "scooffice server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sco",
            "version": "0"
          },
          {
            "model": "enterprise linux desktop optional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.9"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.20"
          },
          {
            "model": "linux mandrake x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2010.1"
          },
          {
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.7"
          },
          {
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.3.1"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.1"
          },
          {
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.2"
          },
          {
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "3.1"
          },
          {
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2.2"
          },
          {
            "model": "linux",
            "scope": null,
            "trust": 0.3,
            "vendor": "gentoo",
            "version": null
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.1.3"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "1.1.12"
          },
          {
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.2.4"
          },
          {
            "model": "enterprise linux hpc node",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "1.1.11"
          },
          {
            "model": "aura communication manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "6.0.1"
          },
          {
            "model": "linux alpha",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "model": "xcs",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "watchguard",
            "version": "9.1"
          },
          {
            "model": "netqmail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "qmail smtpd auth",
            "version": "0"
          },
          {
            "model": "linux powerpc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.2"
          },
          {
            "model": "linux lts lpia",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "8.04"
          },
          {
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "10.04"
          },
          {
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.4.0"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.14"
          },
          {
            "model": "linux i386",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.4.1"
          },
          {
            "model": "enterprise linux server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "1.0.21"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.0"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.1"
          },
          {
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2.4"
          },
          {
            "model": "java system messaging server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sun",
            "version": "6.3"
          },
          {
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "4.0"
          },
          {
            "model": "enterprise linux as",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "model": "linux enterprise server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "suse",
            "version": "9"
          },
          {
            "model": "groupware server 2.2-rc1",
            "scope": null,
            "trust": 0.3,
            "vendor": "kolab",
            "version": null
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.10"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.6.5"
          },
          {
            "model": "linux s/390",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "model": "message networking",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.5"
          },
          {
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.4"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.8"
          },
          {
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6"
          },
          {
            "model": "linux m68k",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "message networking sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.8"
          },
          {
            "model": "groupware server beta3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2"
          },
          {
            "model": "linux amd64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "model": "inn",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "isc",
            "version": "2.3"
          },
          {
            "model": "linux ia-64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "linux armel",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "mac os",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.1"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.10"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.6"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "20010228"
          },
          {
            "model": "enterprise linux ws",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "4"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.6.4"
          },
          {
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.0.2"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.1.1"
          },
          {
            "model": "linux sparc",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "imail",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "0"
          },
          {
            "model": "linux hppa",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "enterprise linux desktop workstation client",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "5"
          },
          {
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "model": "messaging storage server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "model": "imail hotfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ipswitch",
            "version": "8.151"
          },
          {
            "model": "imap server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cyrus",
            "version": "2.4.6"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.0.2"
          },
          {
            "model": "starttls",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "0"
          },
          {
            "model": "mailserver build",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "6.6.17069"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "7.0"
          },
          {
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "pardus",
            "version": "20090"
          },
          {
            "model": "opensuse",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "s u s e",
            "version": "11.2"
          },
          {
            "model": "linux ia-32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "model": "messaging storage server sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2"
          },
          {
            "model": "linux mipsel",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "model": "groupware server beta1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.2"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.5"
          },
          {
            "model": "linux mips",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "model": "enterprise server x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandrakesoft",
            "version": "5"
          },
          {
            "model": "venema postfix patchlevel",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.5.44"
          },
          {
            "model": "messaging storage server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.2.2"
          },
          {
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.0.1"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.4"
          },
          {
            "model": "enterprise linux desktop",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "redhat",
            "version": "6"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.7"
          },
          {
            "model": "groupware server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kolab",
            "version": "2.0.4"
          },
          {
            "model": "linux mandrake x86 64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2009.0"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "2.2.10"
          },
          {
            "model": "venema postfix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "wietse",
            "version": "19990906"
          },
          {
            "model": "linux m68k",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ubuntu",
            "version": "9.10"
          },
          {
            "model": "messaging storage server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "5.1"
          },
          {
            "model": "linux arm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          },
          {
            "model": "linux",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "4.0"
          },
          {
            "model": "mailserver",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "kerio",
            "version": "5.7.6"
          },
          {
            "model": "xcs",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "watchguard",
            "version": "9.0"
          },
          {
            "model": "linux mandrake",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "mandriva",
            "version": "2010.1"
          },
          {
            "model": "mac os server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "apple",
            "version": "x10.6.3"
          },
          {
            "model": "linux ia-64",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "debian",
            "version": "5.0"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#555316"
          },
          {
            "db": "BID",
            "id": "46767"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2011-004393"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-223"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-1430"
          }
        ]
      },
      "configurations": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/configurations#",
          "children": {
            "@container": "@list"
          },
          "cpe_match": {
            "@container": "@list"
          },
          "data": {
            "@container": "@list"
          },
          "nodes": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "CVE_data_version": "4.0",
            "nodes": [
              {
                "cpe_match": [
                  {
                    "cpe22Uri": "cpe:/a:ipswitch:imail",
                    "vulnerable": true
                  }
                ],
                "operator": "OR"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2011-004393"
          }
        ]
      },
      "credits": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/credits#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "Secunia",
        "sources": [
          {
            "db": "PACKETSTORM",
            "id": "104917"
          },
          {
            "db": "PACKETSTORM",
            "id": "101909"
          },
          {
            "db": "PACKETSTORM",
            "id": "99104"
          },
          {
            "db": "PACKETSTORM",
            "id": "99217"
          }
        ],
        "trust": 0.4
      },
      "cve": "CVE-2011-1430",
      "cvss": {
        "@context": {
          "cvssV2": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2"
          },
          "cvssV3": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/"
          },
          "severity": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/cvss/severity#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/severity"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "cvssV2": [
              {
                "accessComplexity": "MEDIUM",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "nvd@nist.gov",
                "availabilityImpact": "PARTIAL",
                "baseScore": 6.8,
                "confidentialityImpact": "PARTIAL",
                "exploitabilityScore": 8.6,
                "id": "CVE-2011-1430",
                "impactScore": 6.4,
                "integrityImpact": "PARTIAL",
                "severity": "MEDIUM",
                "trust": 1.8,
                "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P",
                "version": "2.0"
              },
              {
                "accessComplexity": "MEDIUM",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "VULHUB",
                "availabilityImpact": "PARTIAL",
                "baseScore": 6.8,
                "confidentialityImpact": "PARTIAL",
                "exploitabilityScore": 8.6,
                "id": "VHN-49375",
                "impactScore": 6.4,
                "integrityImpact": "PARTIAL",
                "severity": "MEDIUM",
                "trust": 0.1,
                "vectorString": "AV:N/AC:M/AU:N/C:P/I:P/A:P",
                "version": "2.0"
              }
            ],
            "cvssV3": [],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2011-1430",
                "trust": 1.0,
                "value": "MEDIUM"
              },
              {
                "author": "CARNEGIE MELLON",
                "id": "VU#555316",
                "trust": 0.8,
                "value": "1.39"
              },
              {
                "author": "NVD",
                "id": "CVE-2011-1430",
                "trust": 0.8,
                "value": "Medium"
              },
              {
                "author": "CNNVD",
                "id": "CNNVD-201103-223",
                "trust": 0.6,
                "value": "MEDIUM"
              },
              {
                "author": "VULHUB",
                "id": "VHN-49375",
                "trust": 0.1,
                "value": "MEDIUM"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#555316"
          },
          {
            "db": "VULHUB",
            "id": "VHN-49375"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2011-004393"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-223"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-1430"
          }
        ]
      },
      "description": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/description#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "The STARTTLS implementation in the server in Ipswitch IMail 11.03 and earlier does not properly restrict I/O buffering, which allows man-in-the-middle attackers to insert commands into encrypted SMTP sessions by sending a cleartext command that is processed after TLS is in place, related to a \"plaintext command injection\" attack, a similar issue to CVE-2011-0411. Some STARTTLS implementations could allow a remote attacker to inject commands during the plaintext phase of the protocol. This vulnerability is related to plain text command injection attacks. \nAn attacker can exploit this issue to execute arbitrary commands in the  context of the user running the application. Successful exploits can  allow attackers to obtain email usernames and passwords. \nThe following vendors are affected:\nIpswitch\nKerio\nPostfix\nQmail-TLS\nOracle (note that the affected application is unknown)\nSCO Group\nspamdyke\nISC. Ipswitch IMail Server is an American Ipswitch company\u0027s mail server running on the Microsoft Windows operating system. \n\nSOLUTION:\nRestrict access to trusted hosts only. \n\nPROVIDED AND/OR DISCOVERED BY:\nWietse Venema via US-CERT. ----------------------------------------------------------------------\n\n\nAlerts when vulnerabilities pose a threat to your infrastructure\nThe enhanced reporting module of the Secunia Vulnerability Intelligence Manager (VIM) enables you to combine advisory and ticket information, and generate policy compliance statistics. Using your asset list preferences, customised notifications are issued as soon as a new vulnerability is discovered - a valuable tool for documenting mitigation strategies. \n\nSOLUTION:\nApply fixes. ----------------------------------------------------------------------\n\n\nGet a tax break on purchases of Secunia Solutions!\n\nIf you are a U.S. company, you may be qualified for a tax break for your software purchases. Learn more at:\nhttp://secunia.com/products/corporate/vim/section_179/\n\n\n----------------------------------------------------------------------\n\nTITLE:\nKerio Connect \"STARTTLS\" Plaintext Injection Vulnerability\n\nSECUNIA ADVISORY ID:\nSA43678\n\nVERIFY ADVISORY:\nSecunia.com\nhttp://secunia.com/advisories/43678/\nCustomer Area (Credentials Required)\nhttps://ca.secunia.com/?page=viewadvisory\u0026vuln_id=43678\n\nRELEASE DATE:\n2011-03-12\n\nDISCUSS ADVISORY:\nhttp://secunia.com/advisories/43678/#comments\n\nAVAILABLE ON SITE AND IN CUSTOMER AREA:\n * Last Update\n * Popularity\n * Comments\n * Criticality Level\n * Impact\n * Where\n * Solution Status\n * Operating System / Software\n * CVE Reference(s)\n\nhttp://secunia.com/advisories/43678/\n\nONLY AVAILABLE IN CUSTOMER AREA:\n * Authentication Level\n * Report Reliability\n * Secunia PoC\n * Secunia Analysis\n * Systems Affected\n * Approve Distribution\n * Remediation Status\n * Secunia CVSS Score\n * CVSS\n\nhttps://ca.secunia.com/?page=viewadvisory\u0026vuln_id=43678\n\nONLY AVAILABLE WITH SECUNIA CSI AND SECUNIA PSI:\n * AUTOMATED SCANNING\n\nhttp://secunia.com/vulnerability_scanning/personal/\nhttp://secunia.com/vulnerability_scanning/corporate/wsus_sccm_3rd_third_party_patching/\n\nDESCRIPTION:\nA vulnerability has been reported in Kerio Connect, which can be\nexploited by malicious people to manipulate certain data. \n\nThe vulnerability is caused due to the TLS implementation not\nproperly clearing transport layer buffers when upgrading from\nplaintext to ciphertext after receiving the \"STARTTLS\" command. This\ncan be exploited to insert arbitrary plaintext data (e.g. SMTP\ncommands) during the plaintext phase, which will then be executed\nafter upgrading to the TLS ciphertext phase. \n\nThe vulnerability is reported in version 7.1.4 build 2985. Other\nversions may also be affected. \n\nSOLUTION:\nReportedly, the vendor will fix this in an upcoming version. \n\nPROVIDED AND/OR DISCOVERED BY:\nWietse Venema\n\nORIGINAL ADVISORY:\nUS-CERT VU#555316:\nhttp://www.kb.cert.org/vuls/id/555316\nhttp://www.kb.cert.org/vuls/id/MAPG-8D9M4P\n\nOTHER REFERENCES:\nFurther details available in Customer Area:\nhttp://secunia.com/products/corporate/EVM/\n\nDEEP LINKS:\nFurther details available in Customer Area:\nhttp://secunia.com/products/corporate/EVM/\n\nEXTENDED DESCRIPTION:\nFurther details available in Customer Area:\nhttp://secunia.com/products/corporate/EVM/\n\nEXTENDED SOLUTION:\nFurther details available in Customer Area:\nhttp://secunia.com/products/corporate/EVM/\n\nEXPLOIT:\nFurther details available in Customer Area:\nhttp://secunia.com/products/corporate/EVM/\n\n----------------------------------------------------------------------\n\nAbout:\nThis Advisory was delivered by Secunia as a free service to help\nprivate users keeping their systems up to date against the latest\nvulnerabilities. \n\nSubscribe:\nhttp://secunia.com/advisories/secunia_security_advisories/\n\nDefinitions: (Criticality, Where etc.)\nhttp://secunia.com/advisories/about_secunia_advisories/\n\n\nPlease Note:\nSecunia recommends that you verify all advisories you receive by\nclicking the link. \nSecunia NEVER sends attached files with advisories. \nSecunia does not advise people to install third party patches, only\nuse those supplied by the vendor. \n\n----------------------------------------------------------------------\n\nUnsubscribe: Secunia Security Advisories\nhttp://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org\n\n----------------------------------------------------------------------\n\n\n",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2011-1430"
          },
          {
            "db": "CERT/CC",
            "id": "VU#555316"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2011-004393"
          },
          {
            "db": "BID",
            "id": "46767"
          },
          {
            "db": "VULHUB",
            "id": "VHN-49375"
          },
          {
            "db": "PACKETSTORM",
            "id": "104917"
          },
          {
            "db": "PACKETSTORM",
            "id": "101909"
          },
          {
            "db": "PACKETSTORM",
            "id": "99104"
          },
          {
            "db": "PACKETSTORM",
            "id": "99217"
          }
        ],
        "trust": 3.06
      },
      "external_ids": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/external_ids#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#555316",
            "trust": 4.0
          },
          {
            "db": "NVD",
            "id": "CVE-2011-1430",
            "trust": 2.8
          },
          {
            "db": "BID",
            "id": "46767",
            "trust": 2.0
          },
          {
            "db": "SECUNIA",
            "id": "43676",
            "trust": 1.9
          },
          {
            "db": "VUPEN",
            "id": "ADV-2011-0609",
            "trust": 1.7
          },
          {
            "db": "OSVDB",
            "id": "71020",
            "trust": 1.7
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2011-004393",
            "trust": 0.8
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-223",
            "trust": 0.7
          },
          {
            "db": "XF",
            "id": "65932",
            "trust": 0.6
          },
          {
            "db": "SECUNIA",
            "id": "45857",
            "trust": 0.2
          },
          {
            "db": "SECUNIA",
            "id": "44753",
            "trust": 0.2
          },
          {
            "db": "SECUNIA",
            "id": "43678",
            "trust": 0.2
          },
          {
            "db": "VULHUB",
            "id": "VHN-49375",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "104917",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "101909",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "99104",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "99217",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#555316"
          },
          {
            "db": "VULHUB",
            "id": "VHN-49375"
          },
          {
            "db": "BID",
            "id": "46767"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2011-004393"
          },
          {
            "db": "PACKETSTORM",
            "id": "104917"
          },
          {
            "db": "PACKETSTORM",
            "id": "101909"
          },
          {
            "db": "PACKETSTORM",
            "id": "99104"
          },
          {
            "db": "PACKETSTORM",
            "id": "99217"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-223"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-1430"
          }
        ]
      },
      "id": "VAR-201103-0090",
      "iot": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/iot#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": true,
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-49375"
          }
        ],
        "trust": 0.01
      },
      "last_update_date": "2025-04-11T21:38:49.359000Z",
      "patch": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/patch#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "title": "Top Page",
            "trust": 0.8,
            "url": "http://www.ipswitch.com/"
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2011-004393"
          }
        ]
      },
      "problemtype_data": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "problemtype": "CWE-20",
            "trust": 1.9
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-49375"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2011-004393"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-1430"
          }
        ]
      },
      "references": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/references#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "trust": 3.2,
            "url": "http://www.kb.cert.org/vuls/id/555316"
          },
          {
            "trust": 1.8,
            "url": "http://www.kb.cert.org/vuls/id/mapg-8dbrd4"
          },
          {
            "trust": 1.7,
            "url": "http://www.securityfocus.com/bid/46767"
          },
          {
            "trust": 1.7,
            "url": "http://www.osvdb.org/71020"
          },
          {
            "trust": 1.7,
            "url": "http://secunia.com/advisories/43676"
          },
          {
            "trust": 1.7,
            "url": "http://www.vupen.com/english/advisories/2011/0609"
          },
          {
            "trust": 1.1,
            "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/65932"
          },
          {
            "trust": 0.8,
            "url": "http://tools.ietf.org/html/rfc2595"
          },
          {
            "trust": 0.8,
            "url": "http://tools.ietf.org/html/rfc3207"
          },
          {
            "trust": 0.8,
            "url": "http://tools.ietf.org/html/rfc4642"
          },
          {
            "trust": 0.8,
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=674814"
          },
          {
            "trust": 0.8,
            "url": "http://www.watchguard.com/archive/softwarecenter.asp"
          },
          {
            "trust": 0.8,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2011-1430"
          },
          {
            "trust": 0.8,
            "url": "http://web.nvd.nist.gov/view/vuln/detail?vulnid=cve-2011-1430"
          },
          {
            "trust": 0.6,
            "url": "http://xforce.iss.net/xforce/xfdb/65932"
          },
          {
            "trust": 0.4,
            "url": "http://www.kb.cert.org/vuls/id/mapg-8d9m4p"
          },
          {
            "trust": 0.4,
            "url": "http://www.watchguard.com/support/release-notes/xcs/9/en-us/en_releasenotes_xcs_9_1_1/en_releasenotes_wg_xcs_9_1_tls_hotfix.pdf"
          },
          {
            "trust": 0.4,
            "url": "http://secunia.com/vulnerability_scanning/corporate/wsus_sccm_3rd_third_party_patching/"
          },
          {
            "trust": 0.4,
            "url": "http://secunia.com/advisories/secunia_security_advisories/"
          },
          {
            "trust": 0.4,
            "url": "http://secunia.com/vulnerability_scanning/personal/"
          },
          {
            "trust": 0.4,
            "url": "http://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org"
          },
          {
            "trust": 0.4,
            "url": "http://secunia.com/advisories/about_secunia_advisories/"
          },
          {
            "trust": 0.3,
            "url": "http://kolab.org/pipermail/kolab-announce/2011/000101.html"
          },
          {
            "trust": 0.3,
            "url": "http://bugzilla.cyrusimap.org/show_bug.cgi?id=3424"
          },
          {
            "trust": 0.3,
            "url": "http://cyrusimap.org/mediawiki/index.php/bugs_resolved_in_2.4.7"
          },
          {
            "trust": 0.3,
            "url": "https://www.isc.org/software/inn/2.5.3article"
          },
          {
            "trust": 0.3,
            "url": "http://files.kolab.org/server/release/kolab-server-2.3.2/sources/release-notes.txt"
          },
          {
            "trust": 0.3,
            "url": "http://www.postfix.org/cve-2011-0411.html"
          },
          {
            "trust": 0.3,
            "url": "http://www.pureftpd.org/project/pure-ftpd/news"
          },
          {
            "trust": 0.3,
            "url": "http://www.spamdyke.org/documentation/changelog.txt"
          },
          {
            "trust": 0.3,
            "url": "http://datatracker.ietf.org/doc/draft-josefsson-kerberos5-starttls/?include_text=1"
          },
          {
            "trust": 0.3,
            "url": "/archive/1/516901"
          },
          {
            "trust": 0.3,
            "url": "http://support.avaya.com/css/p8/documents/100134676"
          },
          {
            "trust": 0.3,
            "url": "http://support.avaya.com/css/p8/documents/100141041"
          },
          {
            "trust": 0.3,
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=850478"
          },
          {
            "trust": 0.3,
            "url": "http://www.oracle.com/technetwork/topics/security/cpuapr2011-301950.html"
          },
          {
            "trust": 0.3,
            "url": "http://inoa.net/qmail-tls/vu555316.patch"
          },
          {
            "trust": 0.3,
            "url": "http://secunia.com/products/corporate/evm/"
          },
          {
            "trust": 0.2,
            "url": "http://secunia.com/products/corporate/vim/section_179/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/45857/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/vulnerability_intelligence/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/blog/242"
          },
          {
            "trust": 0.1,
            "url": "https://ca.secunia.com/?page=viewadvisory\u0026vuln_id=45857"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/45857/#comments"
          },
          {
            "trust": 0.1,
            "url": "http://www.kb.cert.org/vuls/id/mapg-8d9m6a"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/44753/"
          },
          {
            "trust": 0.1,
            "url": "http://www.kb.cert.org/vuls/id/mapg-8d9m75"
          },
          {
            "trust": 0.1,
            "url": "http://www.youtube.com/user/secunia#p/a/u/0/m1y9sjqr2sy"
          },
          {
            "trust": 0.1,
            "url": "https://ca.secunia.com/?page=viewadvisory\u0026vuln_id=44753"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/44753/#comments"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/43676/#comments"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/43676/"
          },
          {
            "trust": 0.1,
            "url": "https://ca.secunia.com/?page=viewadvisory\u0026vuln_id=43676"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/43678/#comments"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/43678/"
          },
          {
            "trust": 0.1,
            "url": "https://ca.secunia.com/?page=viewadvisory\u0026vuln_id=43678"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#555316"
          },
          {
            "db": "VULHUB",
            "id": "VHN-49375"
          },
          {
            "db": "BID",
            "id": "46767"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2011-004393"
          },
          {
            "db": "PACKETSTORM",
            "id": "104917"
          },
          {
            "db": "PACKETSTORM",
            "id": "101909"
          },
          {
            "db": "PACKETSTORM",
            "id": "99104"
          },
          {
            "db": "PACKETSTORM",
            "id": "99217"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-223"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-1430"
          }
        ]
      },
      "sources": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#555316"
          },
          {
            "db": "VULHUB",
            "id": "VHN-49375"
          },
          {
            "db": "BID",
            "id": "46767"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2011-004393"
          },
          {
            "db": "PACKETSTORM",
            "id": "104917"
          },
          {
            "db": "PACKETSTORM",
            "id": "101909"
          },
          {
            "db": "PACKETSTORM",
            "id": "99104"
          },
          {
            "db": "PACKETSTORM",
            "id": "99217"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-223"
          },
          {
            "db": "NVD",
            "id": "CVE-2011-1430"
          }
        ]
      },
      "sources_release_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2011-03-07T00:00:00",
            "db": "CERT/CC",
            "id": "VU#555316"
          },
          {
            "date": "2011-03-16T00:00:00",
            "db": "VULHUB",
            "id": "VHN-49375"
          },
          {
            "date": "2011-03-07T00:00:00",
            "db": "BID",
            "id": "46767"
          },
          {
            "date": "2012-03-27T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2011-004393"
          },
          {
            "date": "2011-09-08T08:14:47",
            "db": "PACKETSTORM",
            "id": "104917"
          },
          {
            "date": "2011-06-01T04:21:33",
            "db": "PACKETSTORM",
            "id": "101909"
          },
          {
            "date": "2011-03-09T06:30:49",
            "db": "PACKETSTORM",
            "id": "99104"
          },
          {
            "date": "2011-03-14T11:35:55",
            "db": "PACKETSTORM",
            "id": "99217"
          },
          {
            "date": "2011-03-17T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-201103-223"
          },
          {
            "date": "2011-03-16T22:55:04.747000",
            "db": "NVD",
            "id": "CVE-2011-1430"
          }
        ]
      },
      "sources_update_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2011-09-08T00:00:00",
            "db": "CERT/CC",
            "id": "VU#555316"
          },
          {
            "date": "2017-08-17T00:00:00",
            "db": "VULHUB",
            "id": "VHN-49375"
          },
          {
            "date": "2015-04-13T21:35:00",
            "db": "BID",
            "id": "46767"
          },
          {
            "date": "2012-03-27T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2011-004393"
          },
          {
            "date": "2011-03-17T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-201103-223"
          },
          {
            "date": "2025-04-11T00:51:21.963000",
            "db": "NVD",
            "id": "CVE-2011-1430"
          }
        ]
      },
      "threat_type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/threat_type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "remote",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-223"
          }
        ],
        "trust": 0.6
      },
      "title": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/title#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "STARTTLS plaintext command injection vulnerability",
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#555316"
          }
        ],
        "trust": 0.8
      },
      "type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "input validation",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-201103-223"
          }
        ],
        "trust": 0.6
      }
    }

    VAR-200505-0908

    Vulnerability from variot - Updated: 2025-04-03 22:40

    Certain configurations of IPsec, when using Encapsulating Security Payload (ESP) in tunnel mode, integrity protection at a higher layer, or Authentication Header (AH), allow remote attackers to decrypt IPSec communications by modifying the outer packet in ways that cause plaintext data from the inner packet to be returned in ICMP messages, as demonstrated using bit-flipping attacks and (1) Destination Address Rewriting, (2) a modified header length that causes portions of the packet to be interpreted as IP Options, or (3) a modified protocol field and source address. IPSec Confidentiality when communicating (Confidentiality) Protection only, integrity (Integrity) A vulnerability has been discovered that occurs when protection is not set. ESP Keys used (AES , DES , Triple-DES) Occurs regardless of the version or key size. The vulnerability was encrypted IPSec For communication bit-flipping By using the technique IP header ( Source address, header length, protocol field ) It is abused by tampering with the data inside. After data has been tampered with, it is sent to the sender ICMP There is a possibility that the communication contents will be acquired by receiving the error message.IPSec As a result, it is possible that important information is acquired. A vulnerability affects certain configurations of IPSec. Reports indicate that these attacks may also potentially be possible against IPSec when AH is in use, but only under certain unspecified configurations. The reported attacks take advantage of the fact that no ESP packet payload integrity checks exist when ESP is configured in the vulnerable aforementioned manner. This issue may be leveraged by an attacker to reveal plaintext IP datagrams and potentially sensitive information. Information harvested in this manner may be used to aid in further attacks. This BID will be updated as further information is made available.


    Bist Du interessiert an einem neuen Job in IT-Sicherheit?

    Secunia hat zwei freie Stellen als Junior und Senior Spezialist in IT- Sicherheit: http://secunia.com/secunia_vacancies/


    TITLE: HP Tru64 UNIX IPsec Tunnel ESP Mode Encrypted Data Disclosure

    SECUNIA ADVISORY ID: SA16401

    VERIFY ADVISORY: http://secunia.com/advisories/16401/

    CRITICAL: Less critical

    IMPACT: Exposure of sensitive information

    WHERE:

    From remote

    OPERATING SYSTEM: HP Tru64 UNIX 5.x http://secunia.com/product/2/

    DESCRIPTION: HP has acknowledged a vulnerability in HP Tru64 UNIX, which can be exploited by malicious people to disclose certain sensitive information.

    The vulnerability affects the following supported versions: * HP Tru64 UNIX 5.1B-3 * HP Tru64 UNIX 5.1B-2/PK4

    SOLUTION: Apply ERP kits.

    PROVIDED AND/OR DISCOVERED BY: NISCC

    ORIGINAL ADVISORY: HP SSRT5957: http://itrc.hp.com/service/cki/docDisplay.do?docId=HPSBTU01217

    NISCC: http://www.niscc.gov.uk/niscc/docs/al-20050509-00386.html


    About: This Advisory was delivered by Secunia as a free service to help everybody keeping their systems up to date against the latest vulnerabilities.

    Subscribe: http://secunia.com/secunia_security_advisories/

    Definitions: (Criticality, Where etc.) http://secunia.com/about_secunia_advisories/

    Please Note: Secunia recommends that you verify all advisories you receive by clicking the link. Secunia NEVER sends attached files with advisories. Secunia does not advise people to install third party patches, only use those supplied by the vendor.


    Unsubscribe: Secunia Security Advisories http://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org


    . Some configurations using AH to provide integrity protection are also vulnerable. Some configurations using AH to provide integrity protection are also vulnerable.

    Impact


    If exploited, it is possible for an active attacker to obtain the plaintext version of the IPsec- protected communications using only moderate effort.

    Severity


    This is rated as high.

    Summary


    IP Security (IPsec) is a set of protocols developed by the Internet Engineering Task Force (IETF) to support secure exchange of packets at the IP layer; IPsec has been deployed widely to implement Virtual Private Networks (VPNs). Some configurations using AH to provide integrity protection are also vulnerable. In these configurations, an attacker can modify sections of the IPsec packet, causing either the cleartext inner packet to be redirected or a network host to generate an error message. In the latter case, these errors are relayed via the Internet Control Message Protocol (ICMP); because of the design of ICMP, these messages directly reveal segments of the header and payload of the inner datagram in cleartext. An attacker who can intercept the ICMP messages can then retrieve plaintext data. The attacks have been implemented and

    demonstrated to work under realistic conditions.

    [Please note that revisions to this advisory will not be notified by email. All subscribers are advised to regularly check the UNIRAS website for updates to this notice.]

    Details


    CVE number: CAN-2005-0039

    IPsec consists of several separate protocols; these include:

    * Authentication Header (AH): provides authenticity guarantees for packets, by attaching strong
    
      cryptographic checksum to packets.
    
    * Encapsulating Security Payload (ESP): provides confidentiality guarantees for packets, by 
      encrypting packets with encryption algorithms. ESP also provides optional authentication
    

    services for packets.

    * Internet Key Exchange (IKE): provide ways to securely negotiate shared keys.
    

    AH and ESP has two modes of use: transport mode and tunnel mode. However, without some form of integrity protection, CBC-mode encrypted data is vulnerable to modification by an active attacker.

    By making careful modifications to selected portions of the payload of the outer packet, an attacker can effect controlled changes to the header of the inner (encrypted) packet. The modified inner packet is subsequently processed by the IP software on the receiving security gateway or the endpoint host; the inner packet, in cleartext form, may be redirected or certain error messages may be produced and communicated by ICMP. Because of the design of ICMP, these messages directly reveal cleartext segments of the header and payload of the inner packet. If these messages can be intercepted by an attacker, then plaintext data is revealed.

    Attacks exploiting these vulnerabilities rely on the following:

    * Exploitation of the well-known bit flipping weakness of CBC mode encryption.
    
    * Lack of integrity protection for inner packets.
    
    * Interaction between IPsec processing and IP processing on security gateways and end hosts.
    

    These attacks can be fully automated so as to recover the entire contents of multiple IPsec-protected inner packets. Destination Address Rewriting

    * An attacker modifies the destination IP address of the encrypted (inner) packet by bit-
      flipping in the payload of the outer packet. 
    * The security gateway decrypts the outer payload to recover the (modified) inner packet. 
    * The gateway then routes the inner packet according to its (modified) destination IP address. 
    * If successful, the "plaintext" inner datagram arrives at a host of the attacker's choice.
    
    1. IP Options

      • An attacker modifies the header length of the encrypted (inner) packet by bit-flipping in the

      payload of the outer packet. * The security gateway decrypts the outer payload to recover the (modified) inner packet. * The gateway then performs IP options processing on the inner packet because of the modified header length, with the first part of the inner payload being interpreted as options bytes. * With some probability, options processing will result in the generation of an ICMP "parameter

      problem" message. * The ICMP message is routed to the now modified source address of the inner packet. * An attacker intercepts the ICMP message and retrieves the "plaintext" payload of the inner packet.

    2. Protocol Field

      • An attacker modifies the protocol field and source address field of the encrypted (inner) packet by bit-flipping in the payload of the outer packet.
      • The security gateway decrypts the outer payload to recover the (modified) inner packet.
      • The gateway forwards the inner packet to the intended recipient.
      • The intended recipient inspects the protocol field of the inner packet and generates an ICMP "protocol unreachable" message.
      • The ICMP message is routed to the now modified source address of the inner packet.
      • An attacker intercepts the ICMP message and retrieves the "plaintext" payload of the inner packet.

    The attacks are probabilistic in nature and may need to be iterated many times in a first phase in order to be successful. Once this first phase is complete, the results can be reused to efficiently recover the contents of further inner packets.

    Naturally, the attacker must be able to intercept traffic passing between the security gateways in order to mount the attacks. For the second and third attacks to be successful, the attacker must be

    able intercept the relevant ICMP messages. Variants of these attacks in which the destination of the ICMP messages can be controlled by the attacker are also possible.

    Solution


    Any of the following methods can be used to rectify this issue:

    1. This is the recommended solution.

    2. Use the AH protocol alongside ESP to provide integrity protection. However, this must be done carefully: for example, the configuration where AH in transport mode is applied end-to-end and tunnelled inside ESP is still vulnerable.

    3. Remove the error reporting by restricting the generation of ICMP messages or by filtering these messages at a firewall or security gateway.

    Vendor Information


    A list of vendors affected by this vulnerability is not currently available. Please visit the web site in order to check for updates.

    Credits


    The NISCC Vulnerability Team would like to thank all vendors for their co-operation with the handling of this vulnerability.

    Contact Information


    The NISCC Vulnerability Management Team can be contacted as follows:

    Email vulteam@niscc.gov.uk Please quote the advisory reference in the subject line

    Telephone +44 (0)870 487 0748 Ext 4511 Monday - Friday 08:30 - 17:00

    Fax +44 (0)870 487 0749

    Post Vulnerability Management Team NISCC PO Box 832 London SW1P 1BG

    We encourage those who wish to communicate via email to make use of our PGP key. This is available from http://www.niscc.gov.uk/niscc/publicKey2-en.pop.

    Please note that UK government protectively marked material should not be sent to the email address above.

    If you wish to be added to our email distribution list please email your request to uniras@niscc.gov.uk.

    What is NISCC?


    For further information regarding the UK National Infrastructure Security Co-ordination Centre, please visit http://www.niscc.gov.uk/.

    Reference to any specific commercial product, process, or service by trade name, trademark manufacturer, or otherwise, does not constitute or imply its endorsement, recommendation, or favouring by NISCC. The views and opinions of authors expressed within this notice shall not be used for advertising or product endorsement purposes.

    Neither shall NISCC accept responsibility for any errors or omissions contained within this advisory. In particular, they shall not be liable for any loss or damage whatsoever, arising from or in connection with the usage of information contained within this notice.

    C 2005 Crown Copyright

    Acknowledgements

    UNIRAS wishes to acknowledge the contributions of NISCC Vulnerability Team for the information contained in this Briefing. Updates

    This advisory contains the information released by the original author. If the vulnerability affects you, it may be prudent to retrieve the advisory from the canonical site to ensure that you receive the most current information concerning that problem. Legal Disclaimer

    Reference to any specific commercial product, process, or service by trade name, trademark manufacturer, or otherwise, does not constitute or imply its endorsement, recommendation, or favouring by UNIRAS or NISCC. The views and opinions of authors expressed within this notice shall not be used for advertising or product endorsement purposes.

    Neither UNIRAS or NISCC shall also accept responsibility for any errors or omissions contained within this briefing notice. In particular, they shall not be liable for any loss or damage whatsoever, arising from or in connection with the usage of information contained within this notice. FIRST

    UNIRAS is a member of the Forum of Incident Response and Security Teams (FIRST) and has contacts with other international Incident Response Teams (IRTs) in order to foster cooperation and coordination in incident prevention, to prompt rapid reaction to incidents, and to promote information sharing amongst its members and the community at large.

    SOLUTION: The vendor recommends configuring ESP to use both encryption and authentication (see vendor's advisory for more information)

    Show details on source website

    {
      "@context": {
        "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#",
        "affected_products": {
          "@id": "https://www.variotdbs.pl/ref/affected_products"
        },
        "configurations": {
          "@id": "https://www.variotdbs.pl/ref/configurations"
        },
        "credits": {
          "@id": "https://www.variotdbs.pl/ref/credits"
        },
        "cvss": {
          "@id": "https://www.variotdbs.pl/ref/cvss/"
        },
        "description": {
          "@id": "https://www.variotdbs.pl/ref/description/"
        },
        "exploit_availability": {
          "@id": "https://www.variotdbs.pl/ref/exploit_availability/"
        },
        "external_ids": {
          "@id": "https://www.variotdbs.pl/ref/external_ids/"
        },
        "iot": {
          "@id": "https://www.variotdbs.pl/ref/iot/"
        },
        "iot_taxonomy": {
          "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/"
        },
        "patch": {
          "@id": "https://www.variotdbs.pl/ref/patch/"
        },
        "problemtype_data": {
          "@id": "https://www.variotdbs.pl/ref/problemtype_data/"
        },
        "references": {
          "@id": "https://www.variotdbs.pl/ref/references/"
        },
        "sources": {
          "@id": "https://www.variotdbs.pl/ref/sources/"
        },
        "sources_release_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_release_date/"
        },
        "sources_update_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_update_date/"
        },
        "threat_type": {
          "@id": "https://www.variotdbs.pl/ref/threat_type/"
        },
        "title": {
          "@id": "https://www.variotdbs.pl/ref/title/"
        },
        "type": {
          "@id": "https://www.variotdbs.pl/ref/type/"
        }
      },
      "@id": "https://www.variotdbs.pl/vuln/VAR-200505-0908",
      "affected_products": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/affected_products#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "model": "ipsec",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "nissc",
            "version": "1.0"
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "router",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "allied telesis",
            "version": "(ipsec all products that support )"
          },
          {
            "model": "ax2000r series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "alaxala",
            "version": null
          },
          {
            "model": "seil/neu",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "atm 1.10 (pogo) ~  1.39 (smith grind)"
          },
          {
            "model": "seil/neu",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "ver. 1.x 1.52 (inkknot) ~  1.93 (harness)"
          },
          {
            "model": "seil/neu",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "ver. 2.x 2.00 (belay) ~  2.27 (ridge)"
          },
          {
            "model": "seil/plus",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "1.00 (snappy) ~  1.51 (swisssingle)"
          },
          {
            "model": "seil/turbo",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "internet initiative",
            "version": "1.00 (union) ~  1.51 (riodell)"
          },
          {
            "model": "hp-ux",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hewlett packard",
            "version": "11.00"
          },
          {
            "model": "hp-ux",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hewlett packard",
            "version": "11.11"
          },
          {
            "model": "hp-ux",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hewlett packard",
            "version": "11.23"
          },
          {
            "model": "rt series",
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "model": "fitelnet-f series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "furukawa electric",
            "version": "fitelnet-f30 (fitelnet-f40 or f100 when grouped with )"
          },
          {
            "model": "fitelnet-f series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "furukawa electric",
            "version": "fitelnet-f40"
          },
          {
            "model": "mucho series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "furukawa electric",
            "version": "mucho-ev"
          },
          {
            "model": "mucho series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "furukawa electric",
            "version": "mucho-ev/pk"
          },
          {
            "model": "ip38x series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "model": "ix1000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "model": "ix2000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "model": "ix3000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "model": "ix5000 series",
            "scope": null,
            "trust": 0.8,
            "vendor": "nec",
            "version": null
          },
          {
            "model": "qx series",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "nec",
            "version": "qx-r"
          },
          {
            "model": "gr2000",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "(b_model) (route-os6bsec"
          },
          {
            "model": "gr2000",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "hitachi",
            "version": "route-os8bsec applying equipment )"
          },
          {
            "model": "rfc ipsec",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "2406:"
          },
          {
            "model": "tru64 b-3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5.1"
          },
          {
            "model": "tru64 b-2 pk4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "hp",
            "version": "5.1"
          },
          {
            "model": "hp-ux b.11.23",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "hp-ux b.11.11",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "hp-ux b.11.00",
            "scope": null,
            "trust": 0.3,
            "vendor": "hp",
            "version": null
          },
          {
            "model": "gr2000-bh",
            "scope": null,
            "trust": 0.3,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "gr2000-2b+",
            "scope": null,
            "trust": 0.3,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "gr2000-2b",
            "scope": null,
            "trust": 0.3,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "gr2000-1b",
            "scope": null,
            "trust": 0.3,
            "vendor": "hitachi",
            "version": null
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#302220"
          },
          {
            "db": "BID",
            "id": "13562"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000714"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-937"
          },
          {
            "db": "NVD",
            "id": "CVE-2005-0039"
          }
        ]
      },
      "configurations": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/configurations#",
          "children": {
            "@container": "@list"
          },
          "cpe_match": {
            "@container": "@list"
          },
          "data": {
            "@container": "@list"
          },
          "nodes": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "CVE_data_version": "4.0",
            "nodes": [
              {
                "cpe_match": [
                  {
                    "cpe22Uri": "cpe:/h:allied_telesis_k.k.:router",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:alaxala:ax2000r",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:hp:hp-ux",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:yamaha:rt",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:furukawa_electric:fitelnet-f",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:furukawa_electric:mucho",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ip38x",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix1000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix2000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix3000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:ix5000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:nec:qx",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/h:hitachi:gr2000",
                    "vulnerable": true
                  }
                ],
                "operator": "OR"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000714"
          }
        ]
      },
      "credits": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/credits#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "NISCC albatross@tim.it",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-937"
          }
        ],
        "trust": 0.6
      },
      "cve": "CVE-2005-0039",
      "cvss": {
        "@context": {
          "cvssV2": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2"
          },
          "cvssV3": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/"
          },
          "severity": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/cvss/severity#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/severity"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "cvssV2": [
              {
                "accessComplexity": "LOW",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "nvd@nist.gov",
                "availabilityImpact": "NONE",
                "baseScore": 6.4,
                "confidentialityImpact": "PARTIAL",
                "exploitabilityScore": 10.0,
                "id": "CVE-2005-0039",
                "impactScore": 4.9,
                "integrityImpact": "PARTIAL",
                "severity": "MEDIUM",
                "trust": 1.8,
                "vectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:N",
                "version": "2.0"
              }
            ],
            "cvssV3": [],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2005-0039",
                "trust": 1.0,
                "value": "MEDIUM"
              },
              {
                "author": "CARNEGIE MELLON",
                "id": "VU#302220",
                "trust": 0.8,
                "value": "4.32"
              },
              {
                "author": "NVD",
                "id": "CVE-2005-0039",
                "trust": 0.8,
                "value": "Medium"
              },
              {
                "author": "CNNVD",
                "id": "CNNVD-200505-937",
                "trust": 0.6,
                "value": "MEDIUM"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#302220"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000714"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-937"
          },
          {
            "db": "NVD",
            "id": "CVE-2005-0039"
          }
        ]
      },
      "description": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/description#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "Certain configurations of IPsec, when using Encapsulating Security Payload (ESP) in tunnel mode, integrity protection at a higher layer, or Authentication Header (AH), allow remote attackers to decrypt IPSec communications by modifying the outer packet in ways that cause plaintext data from the inner packet to be returned in ICMP messages, as demonstrated using bit-flipping attacks and (1) Destination Address Rewriting, (2) a modified header length that causes portions of the packet to be interpreted as IP Options, or (3) a modified protocol field and source address. IPSec Confidentiality when communicating (Confidentiality) Protection only, integrity (Integrity) A vulnerability has been discovered that occurs when protection is not set. ESP Keys used (AES , DES , Triple-DES) Occurs regardless of the version or key size. The vulnerability was encrypted IPSec For communication bit-flipping By using the technique IP header ( Source address, header length, protocol field ) It is abused by tampering with the data inside. After data has been tampered with, it is sent to the sender ICMP There is a possibility that the communication contents will be acquired by receiving the error message.IPSec As a result, it is possible that important information is acquired. A vulnerability affects certain configurations of IPSec. \nReports indicate that these attacks may also potentially be possible against IPSec when AH is in use, but only under certain unspecified configurations. \nThe reported attacks take advantage of the fact that no ESP packet payload integrity checks exist when ESP is configured in the vulnerable aforementioned manner. \nThis issue may be leveraged by an attacker to reveal plaintext IP datagrams and potentially sensitive information. Information harvested in this manner may be used to aid in further attacks. \nThis BID will be updated as further information is made available. \n\n----------------------------------------------------------------------\n\nBist Du interessiert an einem neuen Job in IT-Sicherheit?\n\n\nSecunia hat zwei freie Stellen als Junior und Senior Spezialist in IT-\nSicherheit:\nhttp://secunia.com/secunia_vacancies/\n\n----------------------------------------------------------------------\n\nTITLE:\nHP Tru64 UNIX IPsec Tunnel ESP Mode Encrypted Data Disclosure\n\nSECUNIA ADVISORY ID:\nSA16401\n\nVERIFY ADVISORY:\nhttp://secunia.com/advisories/16401/\n\nCRITICAL:\nLess critical\n\nIMPACT:\nExposure of sensitive information\n\nWHERE:\n\u003eFrom remote\n\nOPERATING SYSTEM:\nHP Tru64 UNIX 5.x\nhttp://secunia.com/product/2/\n\nDESCRIPTION:\nHP has acknowledged a vulnerability in HP Tru64 UNIX, which can be\nexploited by malicious people to disclose certain sensitive\ninformation. \n\nThe vulnerability affects the following supported versions:\n* HP Tru64 UNIX 5.1B-3\n* HP Tru64 UNIX 5.1B-2/PK4\n\nSOLUTION:\nApply ERP kits. \n\nPROVIDED AND/OR DISCOVERED BY:\nNISCC\n\nORIGINAL ADVISORY:\nHP SSRT5957:\nhttp://itrc.hp.com/service/cki/docDisplay.do?docId=HPSBTU01217\n\nNISCC:\nhttp://www.niscc.gov.uk/niscc/docs/al-20050509-00386.html\n\n----------------------------------------------------------------------\n\nAbout:\nThis Advisory was delivered by Secunia as a free service to help\neverybody keeping their systems up to date against the latest\nvulnerabilities. \n\nSubscribe:\nhttp://secunia.com/secunia_security_advisories/\n\nDefinitions: (Criticality, Where etc.)\nhttp://secunia.com/about_secunia_advisories/\n\n\nPlease Note:\nSecunia recommends that you verify all advisories you receive by\nclicking the link. \nSecunia NEVER sends attached files with advisories. \nSecunia does not advise people to install third party patches, only\nuse those supplied by the vendor. \n\n----------------------------------------------------------------------\n\nUnsubscribe: Secunia Security Advisories\nhttp://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org\n\n----------------------------------------------------------------------\n\n\n. Some configurations using AH to provide integrity protection are also vulnerable. Some configurations using AH to provide integrity protection are also vulnerable. \n\nImpact\n- - ------\nIf exploited, it is possible for an active attacker to obtain the plaintext version of the IPsec-\nprotected communications using only moderate effort. \n\nSeverity \n- - --------\nThis is rated as high. \n\nSummary\n- - -------\nIP Security (IPsec) is a set of protocols developed by the Internet Engineering Task Force (IETF) \nto support secure exchange of packets at the IP layer; IPsec has been deployed widely to implement \nVirtual Private Networks (VPNs). Some configurations using \nAH to provide integrity protection are also vulnerable. In these configurations, an attacker can \nmodify sections of the IPsec packet, causing either the cleartext inner packet to be redirected or \na network host to generate an error message. In the latter case, these errors are relayed via the \nInternet Control Message Protocol (ICMP); because of the design of ICMP, these messages directly \nreveal segments of the header and payload of the inner datagram in cleartext. An attacker who can \nintercept the ICMP messages can then retrieve plaintext data. The attacks have been implemented and \n\ndemonstrated to work under realistic conditions. \n\n[Please note that revisions to this advisory will not be notified by email. All \nsubscribers are advised to regularly check the UNIRAS website for updates to this notice.]\n\nDetails\n- - -------\nCVE number: CAN-2005-0039\n\nIPsec consists of several separate protocols; these include:\n\n    * Authentication Header (AH): provides authenticity guarantees for packets, by attaching strong \n\n      cryptographic checksum to packets. \n\n    * Encapsulating Security Payload (ESP): provides confidentiality guarantees for packets, by \n      encrypting packets with encryption algorithms. ESP also provides optional authentication \nservices\n      for packets. \n\n    * Internet Key Exchange (IKE): provide ways to securely negotiate shared keys. \n\nAH and ESP has two modes of use: transport mode and tunnel mode. However, without some form of integrity protection, CBC-mode encrypted \ndata is vulnerable to modification by an active attacker. \n\nBy making careful modifications to selected portions of the payload of the outer packet, an \nattacker can effect controlled changes to the header of the inner (encrypted) packet. The modified \ninner packet is subsequently processed by the IP software on the receiving security gateway or the \nendpoint host; the inner packet, in cleartext form, may be redirected or certain error messages \nmay be produced and communicated by ICMP. Because of the design of ICMP, these messages directly\nreveal cleartext segments of the header and payload of the inner packet. If these messages can be \nintercepted by an attacker, then plaintext data is revealed. \n\nAttacks exploiting these vulnerabilities rely on the following:\n\n    * Exploitation of the well-known bit flipping weakness of CBC mode encryption. \n  \n    * Lack of integrity protection for inner packets. \n\n    * Interaction between IPsec processing and IP processing on security gateways and end hosts. \n\n  \nThese attacks can be fully automated so as to recover the entire contents of multiple \nIPsec-protected inner packets. Destination Address Rewriting\n\n    * An attacker modifies the destination IP address of the encrypted (inner) packet by bit-\n      flipping in the payload of the outer packet. \n    * The security gateway decrypts the outer payload to recover the (modified) inner packet. \n    * The gateway then routes the inner packet according to its (modified) destination IP address. \n    * If successful, the \"plaintext\" inner datagram arrives at a host of the attacker\u0027s choice. \n\n2. IP Options\n\n    * An attacker modifies the header length of the encrypted (inner) packet by bit-flipping in the \n\n      payload of the outer packet. \n    * The security gateway decrypts the outer payload to recover the (modified) inner packet. \n    * The gateway then performs IP options processing on the inner packet because of the modified \n      header length, with the first part of the inner payload being interpreted as options bytes. \n    * With some probability, options processing will result in the generation of an ICMP \"parameter \n\n      problem\" message. \n    * The ICMP message is routed to the now modified source address of the inner packet. \n    * An attacker intercepts the ICMP message and retrieves the \"plaintext\" payload of the inner \n      packet. \n\n3. Protocol Field\n\n    * An attacker modifies the protocol field and source address field of the encrypted (inner) \n      packet by bit-flipping in the payload of the outer packet. \n    * The security gateway decrypts the outer payload to recover the (modified) inner packet. \n    * The gateway forwards the inner packet to the intended recipient. \n    * The intended recipient inspects the protocol field of the inner packet and generates an ICMP\n      \"protocol unreachable\" message. \n    * The ICMP message is routed to the now modified source address of the inner packet. \n    * An attacker intercepts the ICMP message and retrieves the \"plaintext\" payload of the inner \n      packet. \n\nThe attacks are probabilistic in nature and may need to be iterated many times in a first phase in \norder to be successful. Once this first phase is complete, the results can be reused to efficiently\nrecover the contents of further inner packets. \n\nNaturally, the attacker must be able to intercept traffic passing between the security gateways in \norder to mount the attacks. For the second and third attacks to be successful, the attacker must be \n\nable intercept the relevant ICMP messages. Variants of these attacks in which the destination of \nthe ICMP messages can be controlled by the attacker are also possible. \n\nSolution\n- - --------\nAny of the following methods can be used to rectify this issue:\n\n1. This is the recommended \nsolution. \n\n2. Use the AH protocol alongside ESP to provide integrity protection. However, this must be done \ncarefully: for example, the configuration where AH in transport mode is applied end-to-end and \ntunnelled inside ESP is still vulnerable. \n\n3. Remove the error reporting by restricting the generation of ICMP messages or by filtering \nthese messages at a firewall or security gateway. \n\nVendor Information\n- - ------------------\nA list of vendors affected by this vulnerability is not currently available. Please visit the web \nsite in order to check for updates. \n\nCredits\n- - -------\nThe NISCC Vulnerability Team would like to thank all vendors for their co-operation with \nthe handling of this vulnerability. \n\nContact Information\n- - -------------------\nThe NISCC Vulnerability Management Team can be contacted as follows:\n\nEmail\t   vulteam@niscc.gov.uk \n           Please quote the advisory reference in the subject line\n\nTelephone  +44 (0)870 487 0748 Ext 4511\n           Monday - Friday 08:30 - 17:00\n\nFax\t   +44 (0)870 487 0749\n\nPost\t   Vulnerability Management Team\n           NISCC\n           PO Box 832\n           London\n           SW1P 1BG\n\nWe encourage those who wish to communicate via email to make use of our PGP key. This is \navailable from http://www.niscc.gov.uk/niscc/publicKey2-en.pop. \n\nPlease note that UK government protectively marked material should not be sent to the email \naddress above. \n\nIf you wish to be added to our email distribution list please email your request to \nuniras@niscc.gov.uk. \n \nWhat is NISCC?\n- - --------------\nFor further information regarding the UK National Infrastructure Security Co-ordination Centre, \nplease visit http://www.niscc.gov.uk/. \n \nReference to any specific commercial product, process, or service by trade name, trademark \nmanufacturer, or otherwise, does not constitute or imply its endorsement, recommendation, or \nfavouring by NISCC. The views and opinions of authors expressed within this notice shall not \nbe used for advertising or product endorsement purposes. \n\nNeither shall NISCC accept responsibility for any errors or omissions contained within this \nadvisory. In particular, they shall not be liable for any loss or damage whatsoever, \narising from or in connection with the usage of information contained within this notice. \n\nC 2005 Crown Copyright \n\u003cEnd of NISCC Vulnerability Advisory\u003e\n \n \n\nAcknowledgements\n\nUNIRAS wishes to acknowledge the contributions of NISCC Vulnerability Team for the information contained in this Briefing. \nUpdates\n\nThis advisory contains the information released by the original author. If the vulnerability affects you, it may be prudent to retrieve the advisory from the canonical site to ensure that you receive the most current information concerning that problem. \nLegal Disclaimer\n\nReference to any specific commercial product, process, or service by trade name, trademark manufacturer, or otherwise, does not constitute or imply its endorsement, recommendation, or favouring by UNIRAS or NISCC. The views and opinions of authors expressed within this notice shall not be used for advertising or product endorsement purposes. \n\nNeither UNIRAS or NISCC shall also accept responsibility for any errors or omissions contained within this briefing notice. In particular, they shall not be liable for any loss or damage whatsoever, arising from or in connection with the usage of information contained within this notice. \nFIRST\n\nUNIRAS is a member of the Forum of Incident Response and Security Teams (FIRST) and has contacts with other international Incident Response Teams (IRTs) in order to foster cooperation and coordination in incident prevention, to prompt rapid reaction to incidents, and to promote information sharing amongst its members and the community at large. \n\nSOLUTION:\nThe vendor recommends configuring ESP to use both encryption and\nauthentication (see vendor\u0027s advisory for more information)",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2005-0039"
          },
          {
            "db": "CERT/CC",
            "id": "VU#302220"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000714"
          },
          {
            "db": "BID",
            "id": "13562"
          },
          {
            "db": "PACKETSTORM",
            "id": "39223"
          },
          {
            "db": "PACKETSTORM",
            "id": "39123"
          },
          {
            "db": "PACKETSTORM",
            "id": "42158"
          }
        ],
        "trust": 2.88
      },
      "external_ids": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/external_ids#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#302220",
            "trust": 3.5
          },
          {
            "db": "NVD",
            "id": "CVE-2005-0039",
            "trust": 2.8
          },
          {
            "db": "BID",
            "id": "13562",
            "trust": 2.7
          },
          {
            "db": "SECUNIA",
            "id": "17938",
            "trust": 1.7
          },
          {
            "db": "VUPEN",
            "id": "ADV-2005-2806",
            "trust": 1.6
          },
          {
            "db": "VUPEN",
            "id": "ADV-2005-0507",
            "trust": 1.6
          },
          {
            "db": "SECTRACK",
            "id": "1015320",
            "trust": 1.6
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000714",
            "trust": 0.8
          },
          {
            "db": "BUGTRAQ",
            "id": "20050509 NISCC VULNERABILITY ADVISORY IPSEC - 004033",
            "trust": 0.6
          },
          {
            "db": "HP",
            "id": "SSRT5957",
            "trust": 0.6
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-937",
            "trust": 0.6
          },
          {
            "db": "SECUNIA",
            "id": "16401",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "39223",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "39123",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "42158",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#302220"
          },
          {
            "db": "BID",
            "id": "13562"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000714"
          },
          {
            "db": "PACKETSTORM",
            "id": "39223"
          },
          {
            "db": "PACKETSTORM",
            "id": "39123"
          },
          {
            "db": "PACKETSTORM",
            "id": "42158"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-937"
          },
          {
            "db": "NVD",
            "id": "CVE-2005-0039"
          }
        ]
      },
      "id": "VAR-200505-0908",
      "iot": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/iot#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": true,
        "sources": [
          {
            "db": "VARIoT devices database",
            "id": null
          }
        ],
        "trust": 0.5714286
      },
      "last_update_date": "2025-04-03T22:40:35.912000Z",
      "patch": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/patch#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "title": "HPSBUX02079",
            "trust": 0.8,
            "url": "http://www2.itrc.hp.com/service/cki/docDisplay.do?docId=c00572922"
          },
          {
            "title": "HPSBUX02079",
            "trust": 0.8,
            "url": "http://h50221.www5.hp.com/upassist/itrc_japan/assist2/secbltn/HP-UX/HPSBUX02079.html"
          },
          {
            "title": "NV05-018",
            "trust": 0.8,
            "url": "http://www.nec.co.jp/security-info/secinfo/nv05-018.html"
          },
          {
            "title": "IPsec\u306e\u8106\u5f31\u6027\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.rtpro.yamaha.co.jp/RT/FAQ/IPsec/NISCC-004033.html"
          },
          {
            "title": "[\u5f71\u97ff\uff1a\u6975\u5c0f] IPsec\u901a\u4fe1\u306e\u8a2d\u5b9a\u306b\u5b58\u5728\u3059\u308b\u8106\u5f31\u6027",
            "trust": 0.8,
            "url": "http://www.seil.jp/seilseries/news/snote/_snote_20050510.html"
          },
          {
            "title": "IPsec\u901a\u4fe1\u306e\u8a2d\u5b9a\u306b\u5b58\u5728\u3059\u308b\u8106\u5f31\u6027\u306e\u554f\u984c\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.furukawa.co.jp/fitelnet/topic/ipsec_attacks.html"
          },
          {
            "title": "IPsec(ESP)\u306e\u8106\u5f31\u6027\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.allied-telesis.co.jp/support/list/faq/vuls/vulsall.html"
          },
          {
            "title": "AX-VU2005-04",
            "trust": 0.8,
            "url": "http://www.alaxala.com/jp/support/security/ICMP-20051226.html"
          },
          {
            "title": "HCVU000000003",
            "trust": 0.8,
            "url": "http://www.hitachi-cable.co.jp/infosystem/support/security/HCVU000000003.html"
          },
          {
            "title": "\u300cIPSec\u901a\u4fe1\u306e\u8a2d\u5b9a\u306b\u5b58\u5728\u3059\u308b\u8106\u5f31\u6027\u300d\u5bfe\u7b56\u306b\u3064\u3044\u3066",
            "trust": 0.8,
            "url": "http://www.hitachi.co.jp/Prod/comp/network/notice/IPsec_ESP.html"
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000714"
          }
        ]
      },
      "problemtype_data": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "problemtype": "NVD-CWE-Other",
            "trust": 1.0
          }
        ],
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2005-0039"
          }
        ]
      },
      "references": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/references#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "trust": 2.7,
            "url": "http://www.kb.cert.org/vuls/id/302220"
          },
          {
            "trust": 2.4,
            "url": "http://www.securityfocus.com/bid/13562"
          },
          {
            "trust": 1.6,
            "url": "http://jvn.jp/niscc/niscc-004033/index.html"
          },
          {
            "trust": 1.6,
            "url": "http://www.niscc.gov.uk/niscc/docs/al-20050509-00386.html?lang=en"
          },
          {
            "trust": 1.6,
            "url": "http://www.securityfocus.com/archive/1/407774"
          },
          {
            "trust": 1.6,
            "url": "http://securitytracker.com/id?1015320"
          },
          {
            "trust": 1.6,
            "url": "http://secunia.com/advisories/17938"
          },
          {
            "trust": 1.0,
            "url": "http://www.vupen.com/english/advisories/2005/2806"
          },
          {
            "trust": 1.0,
            "url": "http://marc.info/?l=bugtraq\u0026m=111566201610350\u0026w=2"
          },
          {
            "trust": 1.0,
            "url": "http://www.vupen.com/english/advisories/2005/0507"
          },
          {
            "trust": 0.8,
            "url": "http://www.niscc.gov.uk/niscc/docs/re-20050509-00385.pdf?lang=en"
          },
          {
            "trust": 0.8,
            "url": "http://www.ietf.org/ids.by.wg/ipsec.html"
          },
          {
            "trust": 0.8,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2005-0039"
          },
          {
            "trust": 0.8,
            "url": "http://www.cpni.gov.uk/products/vulnerabilitydisclosures/default.aspx?id=va-20050509-00385.xml"
          },
          {
            "trust": 0.8,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2005-0039"
          },
          {
            "trust": 0.8,
            "url": "http://www.cpni.gov.uk/docs/re-20050509-00385.pdf?lang=en"
          },
          {
            "trust": 0.8,
            "url": "http://www.cyberpolice.go.jp/important/2005/20050512_115848.html"
          },
          {
            "trust": 0.6,
            "url": "http://www.frsirt.com/english/advisories/2005/2806"
          },
          {
            "trust": 0.6,
            "url": "http://www.frsirt.com/english/advisories/2005/0507"
          },
          {
            "trust": 0.6,
            "url": "http://marc.theaimsgroup.com/?l=bugtraq\u0026m=111566201610350\u0026w=2"
          },
          {
            "trust": 0.4,
            "url": "http://www.niscc.gov.uk/niscc/docs/al-20050509-00386.html"
          },
          {
            "trust": 0.3,
            "url": "http://r.your.hp.com/r/c/r?1.1.hx.dc.w2b6a.cbxvqq...dsyu.1mpe.30mxaf"
          },
          {
            "trust": 0.3,
            "url": "http://www.ietf.org/internet-drafts/draft-ietf-ipsec-esp-v3-10.txt"
          },
          {
            "trust": 0.3,
            "url": "http://r.your.hp.com/r/c/r?1.1.hx.dc.w2b6a.c5v00m...de36.1ku8.2din6i"
          },
          {
            "trust": 0.3,
            "url": "/archive/1/407774"
          },
          {
            "trust": 0.3,
            "url": "/archive/1/399539"
          },
          {
            "trust": 0.2,
            "url": "http://secunia.com/secunia_security_advisories/"
          },
          {
            "trust": 0.2,
            "url": "http://secunia.com/advisories/16401/"
          },
          {
            "trust": 0.2,
            "url": "http://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org"
          },
          {
            "trust": 0.2,
            "url": "http://secunia.com/about_secunia_advisories/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/2/"
          },
          {
            "trust": 0.1,
            "url": "http://www.itrc.hp.com/service/patch/patchdetail.do?patchid=t64kit0026161-v51bb26-es-20050804"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/secunia_vacancies/"
          },
          {
            "trust": 0.1,
            "url": "http://itrc.hp.com/service/cki/docdisplay.do?docid=hpsbtu01217"
          },
          {
            "trust": 0.1,
            "url": "http://www.itrc.hp.com/service/patch/patchdetail.do?patchid=t64kit0026133-v51bb25-es-20050801"
          },
          {
            "trust": 0.1,
            "url": "http://www.niscc.gov.uk/niscc/publickey2-en.pop."
          },
          {
            "trust": 0.1,
            "url": "http://www.niscc.gov.uk/."
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2005-0039"
          },
          {
            "trust": 0.1,
            "url": "http://www1.itrc.hp.com/service/cki/docdisplay.do?docid=c00572922"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/17938/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/138/"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#302220"
          },
          {
            "db": "BID",
            "id": "13562"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000714"
          },
          {
            "db": "PACKETSTORM",
            "id": "39223"
          },
          {
            "db": "PACKETSTORM",
            "id": "39123"
          },
          {
            "db": "PACKETSTORM",
            "id": "42158"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-937"
          },
          {
            "db": "NVD",
            "id": "CVE-2005-0039"
          }
        ]
      },
      "sources": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#302220"
          },
          {
            "db": "BID",
            "id": "13562"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000714"
          },
          {
            "db": "PACKETSTORM",
            "id": "39223"
          },
          {
            "db": "PACKETSTORM",
            "id": "39123"
          },
          {
            "db": "PACKETSTORM",
            "id": "42158"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-937"
          },
          {
            "db": "NVD",
            "id": "CVE-2005-0039"
          }
        ]
      },
      "sources_release_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2005-05-09T00:00:00",
            "db": "CERT/CC",
            "id": "VU#302220"
          },
          {
            "date": "2005-05-09T00:00:00",
            "db": "BID",
            "id": "13562"
          },
          {
            "date": "2007-04-01T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2005-000714"
          },
          {
            "date": "2005-08-12T06:45:33",
            "db": "PACKETSTORM",
            "id": "39223"
          },
          {
            "date": "2005-08-07T06:26:59",
            "db": "PACKETSTORM",
            "id": "39123"
          },
          {
            "date": "2005-12-09T15:12:42",
            "db": "PACKETSTORM",
            "id": "42158"
          },
          {
            "date": "2005-05-10T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-200505-937"
          },
          {
            "date": "2005-05-10T04:00:00",
            "db": "NVD",
            "id": "CVE-2005-0039"
          }
        ]
      },
      "sources_update_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2005-07-06T00:00:00",
            "db": "CERT/CC",
            "id": "VU#302220"
          },
          {
            "date": "2009-07-12T14:06:00",
            "db": "BID",
            "id": "13562"
          },
          {
            "date": "2007-04-01T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2005-000714"
          },
          {
            "date": "2005-10-20T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-200505-937"
          },
          {
            "date": "2025-04-03T01:03:51.193000",
            "db": "NVD",
            "id": "CVE-2005-0039"
          }
        ]
      },
      "threat_type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/threat_type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "remote",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-937"
          }
        ],
        "trust": 0.6
      },
      "title": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/title#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "IPsec configurations may be vulnerable to information disclosure",
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#302220"
          }
        ],
        "trust": 0.8
      },
      "type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "Design Error",
        "sources": [
          {
            "db": "BID",
            "id": "13562"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-937"
          }
        ],
        "trust": 0.9
      }
    }

    VAR-200505-0572

    Vulnerability from variot - Updated: 2025-04-03 20:39

    Multiple TCP implementations with Protection Against Wrapped Sequence Numbers (PAWS) with the timestamps option enabled allow remote attackers to cause a denial of service (connection loss) via a spoofed packet with a large timer value, which causes the host to discard later packets because they appear to be too old. Certain TCP implementations may allow a remote attacker to arbitrarily modify host timestamp values, leading to a denial-of-service condition. TCP The implementation of the time stamp option is TCP A vulnerability exists that allows the internal timer on a connection to be changed to any value.the system TCP Connection reset and service disruption (DoS) It may be in a state. The Transmission Control Protocol (TCP) defined in RFC 793 allows reliable host-to-host transmission in a message exchange network. RFC 1323 introduces a number of technologies that enhance TCP performance, two of which are TCP timestamps and sequence number rollback protection (PAWS).

    There are security holes in the PAWS technology of TCP RFC 1323. If TCP timestamps are enabled, both endpoints of the TCP connection use the internal clock to mark the TCP header with the timestamp value.

    This vulnerability can occur if an attacker sends enough TCP PAWS packets to the vulnerable computer. An attacker can set the message timestamp to a large value. When the target machine processes this message, the internal timer will be updated to this value, which may cause all valid messages received afterwards to be discarded because these messages are considered too old or invalid. This technique may cause the target connection to deny service.


    Bist Du interessiert an einem neuen Job in IT-Sicherheit?

    Secunia hat zwei freie Stellen als Junior und Senior Spezialist in IT- Sicherheit: http://secunia.com/secunia_vacancies/


    TITLE: Cisco Various Products TCP Timestamp Denial of Service

    SECUNIA ADVISORY ID: SA15393

    VERIFY ADVISORY: http://secunia.com/advisories/15393/

    CRITICAL: Less critical

    IMPACT: DoS

    WHERE:

    From remote

    OPERATING SYSTEM: Cisco SN5400 Series Storage Routers http://secunia.com/product/2188/ Cisco MGX 8900 Series Multiservice Switches http://secunia.com/product/5117/ Cisco MGX 8800 Series Multiservice Switches http://secunia.com/product/5116/ Cisco MGX 8200 Series Edge Concentrators http://secunia.com/product/5115/ Cisco Content Services Switch 11000 Series (WebNS) http://secunia.com/product/1507/ Cisco Aironet 350 Series Access Point http://secunia.com/product/5114/ Cisco Aironet 1200 Series Access Point http://secunia.com/product/1929/

    DESCRIPTION: A vulnerability has been reported in some Cisco products, which can be exploited by malicious people to cause a DoS (Denial of Service) on active TCP sessions.

    Successful exploitation requires knowledge of IP address information of the source and destination of the TCP network connection.

    The vulnerability affects the following products: * SN5400 series storage routers * CSS11000 series content services switches * AP350 and AP1200 series Access Points running VxWorks * MGX8200, MGX8800, and MGX8900 series WAN switches (only management interfaces)

    SOLUTION: SN5400 series storage routers: The vulnerability has been addressed by CSCin85370.

    CSS11000 series content services switches: The vulnerability has been addressed by CSCeh40395.

    AP350 and AP1200 series Access Points: The vendor recommends upgrading APs running VxWorks to Cisco IOS.

    MGX series WAN switches: The vulnerability has been documented by CSCeh85125 and CSCeh85130.

    PROVIDED AND/OR DISCOVERED BY: US-CERT credits Noritoshi Demizu.

    ORIGINAL ADVISORY: Cisco: http://www.cisco.com/warp/public/707/cisco-sn-20050518-tcpts.shtml

    OTHER REFERENCES: US-CERT VU#637934: http://www.kb.cert.org/vuls/id/637934


    About: This Advisory was delivered by Secunia as a free service to help everybody keeping their systems up to date against the latest vulnerabilities.

    Subscribe: http://secunia.com/secunia_security_advisories/

    Definitions: (Criticality, Where etc.) http://secunia.com/about_secunia_advisories/

    Please Note: Secunia recommends that you verify all advisories you receive by clicking the link. Secunia NEVER sends attached files with advisories. Secunia does not advise people to install third party patches, only use those supplied by the vendor.


    Unsubscribe: Secunia Security Advisories http://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org


    . Cisco has acknowledged that various Cisco products are affected.

    The published Internet-Draft details three types of attacks, which utilize the following ICMP messages to cause a negative impact on TCP connections either terminating or originating from a vulnerable device.

    1) ICMP "hard" error messages 2) ICMP "fragmentation needed and Don't Fragment (DF) bit set" messages (known as PMTUD attacks) 3) ICMP "source quench" messages

    These attacks can all be exploited to cause TCP connection resets, reduce the throughput in existing TCP connections, or consume large amounts of CPU and memory resources.

    NOTE: See the original advisory for a list of affected versions.

    SOLUTION: See patch matrix in vendor advisory for information about fixes

    Show details on source website

    {
      "@context": {
        "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#",
        "affected_products": {
          "@id": "https://www.variotdbs.pl/ref/affected_products"
        },
        "configurations": {
          "@id": "https://www.variotdbs.pl/ref/configurations"
        },
        "credits": {
          "@id": "https://www.variotdbs.pl/ref/credits"
        },
        "cvss": {
          "@id": "https://www.variotdbs.pl/ref/cvss/"
        },
        "description": {
          "@id": "https://www.variotdbs.pl/ref/description/"
        },
        "exploit_availability": {
          "@id": "https://www.variotdbs.pl/ref/exploit_availability/"
        },
        "external_ids": {
          "@id": "https://www.variotdbs.pl/ref/external_ids/"
        },
        "iot": {
          "@id": "https://www.variotdbs.pl/ref/iot/"
        },
        "iot_taxonomy": {
          "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/"
        },
        "patch": {
          "@id": "https://www.variotdbs.pl/ref/patch/"
        },
        "problemtype_data": {
          "@id": "https://www.variotdbs.pl/ref/problemtype_data/"
        },
        "references": {
          "@id": "https://www.variotdbs.pl/ref/references/"
        },
        "sources": {
          "@id": "https://www.variotdbs.pl/ref/sources/"
        },
        "sources_release_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_release_date/"
        },
        "sources_update_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_update_date/"
        },
        "threat_type": {
          "@id": "https://www.variotdbs.pl/ref/threat_type/"
        },
        "title": {
          "@id": "https://www.variotdbs.pl/ref/title/"
        },
        "type": {
          "@id": "https://www.variotdbs.pl/ref/type/"
        }
      },
      "@id": "https://www.variotdbs.pl/vuln/VAR-200505-0572",
      "affected_products": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/affected_products#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "freebsd",
            "version": "4.6.2"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "freebsd",
            "version": "4.5"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "freebsd",
            "version": "5.0"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "freebsd",
            "version": "1.1.5.1"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.9,
            "vendor": "freebsd",
            "version": "4.6"
          },
          {
            "model": "call manager",
            "scope": "eq",
            "trust": 1.6,
            "vendor": "cisco",
            "version": "3.1"
          },
          {
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "openbsd",
            "version": "3.5"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "2.2.8"
          },
          {
            "model": "unity server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "2.3"
          },
          {
            "model": "ciscoworks common services",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "2.2"
          },
          {
            "model": "emergency responder",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "1.1"
          },
          {
            "model": "ciscoworks access control list manager",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "1.6"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.3.1"
          },
          {
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "openbsd",
            "version": "3.6"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.2"
          },
          {
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "openbsd",
            "version": "3.4"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "3.2"
          },
          {
            "model": "ciscoworks common management foundation",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "2.0"
          },
          {
            "model": "call manager",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.3"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "2.0.5"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "4.2"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "4.4"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "5.1"
          },
          {
            "model": "call manager",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "2.0"
          },
          {
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "openbsd",
            "version": "3.2"
          },
          {
            "model": "unity server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "4.0"
          },
          {
            "model": "unity server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.2"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.3"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "2.1.5"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.2.1"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "2.1.6.1"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "3.3"
          },
          {
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "openbsd",
            "version": "3.0"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "4.1.1"
          },
          {
            "model": "ciscoworks common management foundation",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "2.2"
          },
          {
            "model": "unity server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.0"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "2.2"
          },
          {
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "openbsd",
            "version": "3.1"
          },
          {
            "model": "unity server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.1"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "4.3"
          },
          {
            "model": "call manager",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "1.0"
          },
          {
            "model": "ciscoworks lms",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "1.3"
          },
          {
            "model": "ciscoworks access control list manager",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "1.5"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "2.0"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "3.5.1"
          },
          {
            "model": "unity server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.3"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "3.5"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.2.2"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "2.2.6"
          },
          {
            "model": "conference connection",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "1.2"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "5.2"
          },
          {
            "model": "unity server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "2.46"
          },
          {
            "model": "call manager",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "4.0"
          },
          {
            "model": "call manager",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.2"
          },
          {
            "model": "unity server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "2.1"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "4.10"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "5.3"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "3.4"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "2.2.2"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "2.2.4"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.3.2"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "2.1.6"
          },
          {
            "model": "call manager",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.0"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "2.2.5"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "2.1.7.1"
          },
          {
            "model": "unity server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "2.4"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "4.8"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "4.0"
          },
          {
            "model": "openbsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "openbsd",
            "version": "3.3"
          },
          {
            "model": "ciscoworks common management foundation",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "2.1"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "2.2.3"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "4.7"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "4.9"
          },
          {
            "model": "unity server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "2.2"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.0"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "4.1"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "3.1"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "3.0"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "freebsd",
            "version": "3.1"
          },
          {
            "model": "intelligent contact manager",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "5.0"
          },
          {
            "model": "unity server",
            "scope": "eq",
            "trust": 1.3,
            "vendor": "cisco",
            "version": "2.0"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.0"
          },
          {
            "model": "meetingplace",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "sn 5428 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2-3.3.1-k9"
          },
          {
            "model": "sn 5428 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.5.1-k9"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.42"
          },
          {
            "model": "web collaboration option",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "callpilot",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "702t"
          },
          {
            "model": "sn 5420 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.1\\(2\\)"
          },
          {
            "model": "call manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.1\\(3a\\)"
          },
          {
            "model": "succession communication server 1000",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "*"
          },
          {
            "model": "call manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.1\\(2\\)"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.6.4"
          },
          {
            "model": "mgx 8230",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.2.11"
          },
          {
            "model": "7220 wlan access point",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "*"
          },
          {
            "model": "remote monitoring suite option",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.1"
          },
          {
            "model": "business communications manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "1000"
          },
          {
            "model": "content services switch 11000",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "optical metro 5200",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "*"
          },
          {
            "model": "personal assistant",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.3\\(3\\)"
          },
          {
            "model": "networks",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "alaxala",
            "version": "ax5400s"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "4.5"
          },
          {
            "model": "ethernet routing switch 1624",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "*"
          },
          {
            "model": "webns",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "7.10_\\(05.07\\)s"
          },
          {
            "model": "rt105",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "yamaha",
            "version": "*"
          },
          {
            "model": "sn 5420 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.1\\(7\\)"
          },
          {
            "model": "content services switch 11500",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "content services switch 11050",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "4.3"
          },
          {
            "model": "webns",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "7.20_\\(03.09\\)s"
          },
          {
            "model": "sn 5428 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.2.2-k9"
          },
          {
            "model": "mgx 8250",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.2.10"
          },
          {
            "model": "rtx1100",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "yamaha",
            "version": "*"
          },
          {
            "model": "optical metro 5000",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "*"
          },
          {
            "model": "alaxala",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "hitachi",
            "version": "ax"
          },
          {
            "model": "ciscoworks cd1",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3rd"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.0.5"
          },
          {
            "model": "agent desktop",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "personal assistant",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.3\\(4\\)"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.0.3"
          },
          {
            "model": "ip contact center express",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.2\\(1\\)"
          },
          {
            "model": "windows 2000",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "*"
          },
          {
            "model": "sn 5420 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.1\\(5\\)"
          },
          {
            "model": "windows 2003 server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "enterprise_64-bit"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "4.5.9"
          },
          {
            "model": "contact center",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "*"
          },
          {
            "model": "sn 5420 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.1\\(3\\)"
          },
          {
            "model": "personal assistant",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.4\\(2\\)"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.3\\(1\\)"
          },
          {
            "model": "ciscoworks 1105 wireless lan solution engine",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "ciscoworks windows",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "4.0"
          },
          {
            "model": "personal assistant",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.4\\(1\\)"
          },
          {
            "model": "webns",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "7.30_\\(00.08\\)s"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "4.5.12"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.6.3"
          },
          {
            "model": "gr4000",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "hitachi",
            "version": "*"
          },
          {
            "model": "windows 2003 server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "standard_64-bit"
          },
          {
            "model": "rt57i",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "yamaha",
            "version": "*"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "5.2.1"
          },
          {
            "model": "rtx2000",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "yamaha",
            "version": "*"
          },
          {
            "model": "ciscoworks cd1",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "5th"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.5"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.2\\(2\\)"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "5.4"
          },
          {
            "model": "networks",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "alaxala",
            "version": "ax7800s"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.2\\(3\\)"
          },
          {
            "model": "personal assistant",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.3\\(2\\)"
          },
          {
            "model": "interactive voice response",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.6.2"
          },
          {
            "model": "ciscoworks cd1",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1st"
          },
          {
            "model": "gs4000",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "hitachi",
            "version": "*"
          },
          {
            "model": "business communications manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "200"
          },
          {
            "model": "aironet ap350",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.1.1"
          },
          {
            "model": "windows xp",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "*"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "4.5.6"
          },
          {
            "model": "webns",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "7.20_\\(03.10\\)s"
          },
          {
            "model": "conference connection",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.1\\(1\\)"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "4.11"
          },
          {
            "model": "networks",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "alaxala",
            "version": "ax7800r"
          },
          {
            "model": "content services switch 11800",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "ciscoworks vpn security management solution",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "gr3000",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "hitachi",
            "version": "*"
          },
          {
            "model": "aironet ap1200",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.4"
          },
          {
            "model": "sn 5428 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.2.1-k9"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "4.5.11"
          },
          {
            "model": "survivable remote gateway",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "1.0"
          },
          {
            "model": "mgx 8230",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.2.10"
          },
          {
            "model": "rtv700",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "yamaha",
            "version": "*"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.0"
          },
          {
            "model": "support tools",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.3"
          },
          {
            "model": "business communications manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "400"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.0.2"
          },
          {
            "model": "windows 2003 server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "standard"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.1"
          },
          {
            "model": "mgx 8250",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.2.11"
          },
          {
            "model": "sn 5428 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.3.1-k9"
          },
          {
            "model": "ciscoworks cd1",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2nd"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "freebsd",
            "version": "2.1.0"
          },
          {
            "model": "sn 5420 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.1.3"
          },
          {
            "model": "optical metro 5100",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "*"
          },
          {
            "model": "windows 2003 server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "web"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.6"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "4.6.2"
          },
          {
            "model": "content services switch 11501",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "ciscoworks 1105 hosting solution engine",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "windows 2003 server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "enterprise"
          },
          {
            "model": "rt300i",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "yamaha",
            "version": "*"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.3.6.1"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "4.6"
          },
          {
            "model": "sn 5420 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "callpilot",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "703t"
          },
          {
            "model": "rt250i",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "yamaha",
            "version": "*"
          },
          {
            "model": "personal assistant",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.3\\(1\\)"
          },
          {
            "model": "content services switch 11506",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "sn 5428 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2-3.3.2-k9"
          },
          {
            "model": "ip contact center enterprise",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "callpilot",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "200i"
          },
          {
            "model": "ciscoworks windows wug",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "rtx1000",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "yamaha",
            "version": "*"
          },
          {
            "model": "e-mail manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "windows 2003 server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "microsoft",
            "version": "r2"
          },
          {
            "model": "universal signaling point",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "5200"
          },
          {
            "model": "ethernet routing switch 1648",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "*"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "4.4"
          },
          {
            "model": "rtx1500",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "yamaha",
            "version": "*"
          },
          {
            "model": "sn 5428 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.3.2-k9"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.0.4"
          },
          {
            "model": "sn 5420 storage router",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "1.1\\(4\\)"
          },
          {
            "model": "callpilot",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "201i"
          },
          {
            "model": "content services switch 11503",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "7250 wlan access point",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "*"
          },
          {
            "model": "content services switch 11150",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "*"
          },
          {
            "model": "ethernet routing switch 1612",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "*"
          },
          {
            "model": "universal signaling point",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "nortel",
            "version": "compact_lite"
          },
          {
            "model": "webns",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "7.30_\\(00.09\\)s"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.0.1"
          },
          {
            "model": "ciscoworks cd1",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "4th"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "2.3.5.1"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "4.5.10"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.0.3"
          },
          {
            "model": "tmos",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "4.2"
          },
          {
            "model": "call manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.3\\(3\\)"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "cisco",
            "version": "3.2\\(1.20\\)"
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "avaya",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "blue coat",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "freebsd",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "openbsd",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "redback",
            "version": null
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.8,
            "vendor": "yamaha",
            "version": null
          },
          {
            "model": "windows 2000",
            "scope": null,
            "trust": 0.8,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "windows server 2003",
            "scope": null,
            "trust": 0.8,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "windows xp",
            "scope": "eq",
            "trust": 0.8,
            "vendor": "microsoft",
            "version": "sp3"
          },
          {
            "model": null,
            "scope": null,
            "trust": 0.6,
            "vendor": "none",
            "version": null
          },
          {
            "model": "css11500 content services switch s",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "cisco",
            "version": "7.30"
          },
          {
            "model": "css11500 content services switch s",
            "scope": "eq",
            "trust": 0.6,
            "vendor": "cisco",
            "version": "7.20"
          },
          {
            "model": "windows xp home sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.1.1"
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.3"
          },
          {
            "model": "alpha",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.0"
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.11"
          },
          {
            "model": "intuity audix",
            "scope": null,
            "trust": 0.3,
            "vendor": "avaya",
            "version": null
          },
          {
            "model": "secure acs solution engine",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.3"
          },
          {
            "model": "windows server enterprise edition itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "model": "secure acs for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.0"
          },
          {
            "model": "remote monitoring suite option",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "secure access control server",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.5"
          },
          {
            "model": "sn storage router sn5428-2-3.3.1-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "model": "windows server enterprise edition sp1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "model": "windows xp 64-bit edition",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "bigip",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.1"
          },
          {
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "3.5.1"
          },
          {
            "model": "catos",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "4.10-prerelease",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.0.3"
          },
          {
            "model": "ip contact center express",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "bigip",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.6.3"
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.8"
          },
          {
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.4"
          },
          {
            "model": "sn storage router sn5428-3.2.1-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "model": "networks callpilot 200i",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "model": "windows server sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "windows advanced server sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "rtx1100",
            "scope": null,
            "trust": 0.3,
            "vendor": "yamaha",
            "version": null
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.0"
          },
          {
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "3.5.1"
          },
          {
            "model": "rfc tcp extensions for high performance",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "1323:"
          },
          {
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.1"
          },
          {
            "model": "sn storage router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "54201.1(4)"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.3(1)"
          },
          {
            "model": "windows server datacenter edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.9"
          },
          {
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "3.5"
          },
          {
            "model": "secure acs solution engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.3.1"
          },
          {
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.7"
          },
          {
            "model": "unixware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sco",
            "version": "7.1.4"
          },
          {
            "model": "-release/alpha",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.1"
          },
          {
            "model": "ciscoworks vpn/security management solution",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "windows advanced server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.2"
          },
          {
            "model": "windows server datacenter edition sp1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "model": "networks callpilot 703t",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "model": "interactive response",
            "scope": null,
            "trust": 0.3,
            "vendor": "avaya",
            "version": null
          },
          {
            "model": "windows datacenter server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "-release-p20",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.6"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "2.1"
          },
          {
            "model": "windows professional",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "css11000 content services switch",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "-release-p14",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.0"
          },
          {
            "model": "secure acs for windows nt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.6"
          },
          {
            "model": "-stablepre2001-07-20",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "3.5.1"
          },
          {
            "model": "windows xp media center edition sp2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "intelligent contact manager",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "web collaboration option",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "networks wlan access point",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "7220.0"
          },
          {
            "model": "networks optical metro",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "5000"
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "3.0"
          },
          {
            "model": "gs4000",
            "scope": null,
            "trust": 0.3,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.6"
          },
          {
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.3"
          },
          {
            "model": "windows xp 64-bit edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "windows xp 64-bit edition version sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "model": "secure acs for windows nt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.6.3"
          },
          {
            "model": "-release-p3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.11"
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.6"
          },
          {
            "model": "sn storage router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "54201.1(2)"
          },
          {
            "model": "windows server enterprise edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "model": "sn5400 series storage routers",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "open server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sco",
            "version": "6.0"
          },
          {
            "model": "windows xp 64-bit edition version",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "model": "secure acs for windows nt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.0.3"
          },
          {
            "model": "unity server",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "networks ethernet routing switch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "1624"
          },
          {
            "model": "windows server standard edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003x64"
          },
          {
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.3"
          },
          {
            "model": "-stablepre122300",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.2"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "3.2x"
          },
          {
            "model": "networks optical metro",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "5100"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.2(1)"
          },
          {
            "model": "secure acs for windows nt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.3"
          },
          {
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.2.1"
          },
          {
            "model": "windows advanced server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "personal assistant",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1.3(3)"
          },
          {
            "model": "interactive voice response",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "css11150 content services switch",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "windows xp tablet pc edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "sn storage router sn5428-2.5.1-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.0.x"
          },
          {
            "model": "mgx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "82301.2.10"
          },
          {
            "model": "css11050 content services switch",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "e-mail manager",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "windows server web edition sp1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "model": "windows server sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "mgx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "82501.2.10"
          },
          {
            "model": "windows xp media center edition",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.0.4"
          },
          {
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.11"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.2(1.20)"
          },
          {
            "model": "mgx",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "css11506 content services switch",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "windows datacenter server sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "3.3x"
          },
          {
            "model": "ciscoworks cd1 5th edition",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "secure acs for windows nt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.0.1"
          },
          {
            "model": "coat systems sgos",
            "scope": null,
            "trust": 0.3,
            "vendor": "blue",
            "version": null
          },
          {
            "model": "-stablepre2002-03-07",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.5"
          },
          {
            "model": "secure acs for windows nt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.1.1"
          },
          {
            "model": "windows advanced server sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "windows xp embedded",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.2(2)"
          },
          {
            "model": "networks universal signaling point compact/lite",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "2.x"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "3.x"
          },
          {
            "model": "windows professional sp3",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "networks srg",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "1.0"
          },
          {
            "model": "alpha",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.0"
          },
          {
            "model": "personal assistant",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1.4(1)"
          },
          {
            "model": "secure acs solution engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.3"
          },
          {
            "model": "secure acs for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.3"
          },
          {
            "model": "ip contact center enterprise",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.7"
          },
          {
            "model": "secure acs for windows nt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.42"
          },
          {
            "model": "cvlan",
            "scope": null,
            "trust": 0.3,
            "vendor": "avaya",
            "version": null
          },
          {
            "model": "networks ax7800r",
            "scope": null,
            "trust": 0.3,
            "vendor": "alaxala",
            "version": null
          },
          {
            "model": "call manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.1(2)"
          },
          {
            "model": "windows xp home",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "windows server web edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "model": "windows professional sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "windows server sp2",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "windows advanced server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "ap350",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "-release-p5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.1"
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.5"
          },
          {
            "model": "rtx1500",
            "scope": null,
            "trust": 0.3,
            "vendor": "yamaha",
            "version": null
          },
          {
            "model": "secure acs for windows server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.2"
          },
          {
            "model": "-stablepre050201",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.2"
          },
          {
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.2"
          },
          {
            "model": "networks communications server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "1000"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "3.4x"
          },
          {
            "model": "secure acs for windows nt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.6.2"
          },
          {
            "model": "secure access control server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.2(3)"
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.4"
          },
          {
            "model": "networks bcm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "400"
          },
          {
            "model": "windows server datacenter edition itanium sp1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "model": "pix os",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.0.1"
          },
          {
            "model": "networks contact center",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.5.6"
          },
          {
            "model": "windows server standard edition sp1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "model": "networks bcm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "200"
          },
          {
            "model": "rtx2000",
            "scope": null,
            "trust": 0.3,
            "vendor": "yamaha",
            "version": null
          },
          {
            "model": "windows server enterprise edition itanium sp1",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.10"
          },
          {
            "model": "windows xp professional sp2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "agent desktop",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "conference connection",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1.1(1)"
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.1"
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.5.10"
          },
          {
            "model": "gr3000",
            "scope": null,
            "trust": 0.3,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "windows xp tablet pc edition",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.0.2"
          },
          {
            "model": "call manager",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "3.5x"
          },
          {
            "model": "-release-p7",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.8"
          },
          {
            "model": "-release-p32",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.5"
          },
          {
            "model": "ciscoworks cd1 2nd edition",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "networks ax7800s",
            "scope": null,
            "trust": 0.3,
            "vendor": "alaxala",
            "version": null
          },
          {
            "model": "networks universal signaling point",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "5200"
          },
          {
            "model": "networks callpilot 702t",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "model": "ciscoworks wireless lan solution engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1105"
          },
          {
            "model": "networks optical metro",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "5200"
          },
          {
            "model": "sn storage router sn5428-3.3.2-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "model": "interactive response",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "1.2.1"
          },
          {
            "model": "sn storage router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "54201.1(3)"
          },
          {
            "model": "secure acs for windows nt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.1"
          },
          {
            "model": "sn storage router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "54201.1.3"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "3.1x"
          },
          {
            "model": "ciscoworks cd1 4th edition",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "meetingplace",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "secure acs for windows nt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.6.4"
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.6"
          },
          {
            "model": "sn storage router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "54201.1(5)"
          },
          {
            "model": "windows datacenter server sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "windows datacenter server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.6.2"
          },
          {
            "model": "windows xp professional sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "rt57i",
            "scope": null,
            "trust": 0.3,
            "vendor": "yamaha",
            "version": null
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "2.2x"
          },
          {
            "model": "css11501 content services switch",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "secure acs for windows nt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.0"
          },
          {
            "model": "gr4000",
            "scope": null,
            "trust": 0.3,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "-prerelease",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.4"
          },
          {
            "model": "networks callpilot 201i",
            "scope": null,
            "trust": 0.3,
            "vendor": "nortel",
            "version": null
          },
          {
            "model": "ciscoworks",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "-release-p38",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.3"
          },
          {
            "model": "personal assistant",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1.4(2)"
          },
          {
            "model": "rt105",
            "scope": null,
            "trust": 0.3,
            "vendor": "yamaha",
            "version": null
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.3"
          },
          {
            "model": "intuity audix r5",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "0"
          },
          {
            "model": "networks ethernet routing switch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "1648"
          },
          {
            "model": "alaxala ax",
            "scope": null,
            "trust": 0.3,
            "vendor": "hitachi",
            "version": null
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.0"
          },
          {
            "model": "ciscoworks windows/wug",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "0"
          },
          {
            "model": "windows datacenter server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "css11500 content services switch s",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "7.10"
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.0"
          },
          {
            "model": "unixware",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "sco",
            "version": "7.1.3"
          },
          {
            "model": "personal assistant",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.2"
          },
          {
            "model": "ciscoworks cd1 1st edition",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "secure acs for windows nt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.4"
          },
          {
            "model": "freebsd",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "2.1x"
          },
          {
            "model": "ciscoworks hosting solution engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1105"
          },
          {
            "model": "secure acs for windows nt",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.5"
          },
          {
            "model": "windows professional sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.5.12"
          },
          {
            "model": "secure acs for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.3.5.1"
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.5"
          },
          {
            "model": "mgx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "82501.2.11"
          },
          {
            "model": "rtv700",
            "scope": null,
            "trust": 0.3,
            "vendor": "yamaha",
            "version": null
          },
          {
            "model": "secure acs for unix",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "2.3.6.1"
          },
          {
            "model": "personal assistant",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1.3(1)"
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.2"
          },
          {
            "model": "support tools",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "windows xp professional",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "sn storage router sn5428-3.3.1-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.0.5"
          },
          {
            "model": "sn storage router sn5428-3.2.2-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.5"
          },
          {
            "model": "rt300i",
            "scope": null,
            "trust": 0.3,
            "vendor": "yamaha",
            "version": null
          },
          {
            "model": "secure acs solution engine",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.3.2"
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.4"
          },
          {
            "model": "sn storage router sn5428-2-3.3.2-k9",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "5428"
          },
          {
            "model": "mgx",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "82301.2.11"
          },
          {
            "model": "personal assistant",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1.3(4)"
          },
          {
            "model": "-current",
            "scope": null,
            "trust": 0.3,
            "vendor": "freebsd",
            "version": null
          },
          {
            "model": "ios",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "0"
          },
          {
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.4"
          },
          {
            "model": "-stablepre050201",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "3.5"
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.7"
          },
          {
            "model": "bigip",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.5.13"
          },
          {
            "model": "windows server datacenter edition itanium",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "20030"
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.4"
          },
          {
            "model": "ios xr",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "rtx1000",
            "scope": null,
            "trust": 0.3,
            "vendor": "yamaha",
            "version": null
          },
          {
            "model": "coat systems cacheos",
            "scope": null,
            "trust": 0.3,
            "vendor": "blue",
            "version": null
          },
          {
            "model": "sn storage router",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "54201.1(7)"
          },
          {
            "model": "networks ax5400s",
            "scope": null,
            "trust": 0.3,
            "vendor": "alaxala",
            "version": null
          },
          {
            "model": "windows xp embedded sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "css11500 content services switch",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "ciscoworks windows",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "0"
          },
          {
            "model": "css11503 content services switch",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "-release-p8",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.10"
          },
          {
            "model": "personal assistant",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "1.3(2)"
          },
          {
            "model": "call manager",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "cisco",
            "version": "3.3(3)"
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.5.11"
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.2"
          },
          {
            "model": "networks ethernet routing switch",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "1612"
          },
          {
            "model": "windows xp home sp2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "-release-p17",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.7"
          },
          {
            "model": "windows server standard edition",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2003"
          },
          {
            "model": "windows xp tablet pc edition sp2",
            "scope": "ne",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "ciscoworks windows",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "rt250i",
            "scope": null,
            "trust": 0.3,
            "vendor": "yamaha",
            "version": null
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.10"
          },
          {
            "model": "-stablepre122300",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "3.5"
          },
          {
            "model": "conference connection",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "windows xp media center edition sp1",
            "scope": null,
            "trust": 0.3,
            "vendor": "microsoft",
            "version": null
          },
          {
            "model": "-releng",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "5.3"
          },
          {
            "model": "windows professional sp4",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "emergency responder",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "-prerelease",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.8"
          },
          {
            "model": "css11800 content services switch",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "-stable",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.6"
          },
          {
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.1.1"
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "9.0"
          },
          {
            "model": "interactive response",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "avaya",
            "version": "1.3"
          },
          {
            "model": "ciscoworks cd1 3rd edition",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "-prerelease",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.9"
          },
          {
            "model": "-release",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.3"
          },
          {
            "model": "-release-p42",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "freebsd",
            "version": "4.4"
          },
          {
            "model": "windows server sp1",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          },
          {
            "model": "networks bcm",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "1000"
          },
          {
            "model": "networks wlan access point",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "nortel",
            "version": "7250.0"
          },
          {
            "model": "bigip",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "f5",
            "version": "4.5.9"
          },
          {
            "model": "ap1200",
            "scope": null,
            "trust": 0.3,
            "vendor": "cisco",
            "version": null
          },
          {
            "model": "windows server",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "microsoft",
            "version": "2000"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#637934"
          },
          {
            "db": "CNVD",
            "id": "CNVD-2005-1944"
          },
          {
            "db": "BID",
            "id": "13676"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000333"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-1247"
          },
          {
            "db": "NVD",
            "id": "CVE-2005-0356"
          }
        ]
      },
      "configurations": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/configurations#",
          "children": {
            "@container": "@list"
          },
          "cpe_match": {
            "@container": "@list"
          },
          "data": {
            "@container": "@list"
          },
          "nodes": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "CVE_data_version": "4.0",
            "nodes": [
              {
                "cpe_match": [
                  {
                    "cpe22Uri": "cpe:/o:microsoft:windows_2000",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:microsoft:windows_server_2003",
                    "vulnerable": true
                  },
                  {
                    "cpe22Uri": "cpe:/o:microsoft:windows_xp",
                    "vulnerable": true
                  }
                ],
                "operator": "OR"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000333"
          }
        ]
      },
      "credits": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/credits#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "Noritoshi Demizu Daniel Hartmeier\u203b daniel@benzedrine.cx",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-1247"
          }
        ],
        "trust": 0.6
      },
      "cve": "CVE-2005-0356",
      "cvss": {
        "@context": {
          "cvssV2": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2"
          },
          "cvssV3": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/"
          },
          "severity": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/cvss/severity#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/severity"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "cvssV2": [
              {
                "accessComplexity": "LOW",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "nvd@nist.gov",
                "availabilityImpact": "PARTIAL",
                "baseScore": 5.0,
                "confidentialityImpact": "NONE",
                "exploitabilityScore": 10.0,
                "id": "CVE-2005-0356",
                "impactScore": 2.9,
                "integrityImpact": "NONE",
                "severity": "MEDIUM",
                "trust": 1.8,
                "vectorString": "AV:N/AC:L/Au:N/C:N/I:N/A:P",
                "version": "2.0"
              },
              {
                "accessComplexity": "LOW",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "VULHUB",
                "availabilityImpact": "PARTIAL",
                "baseScore": 5.0,
                "confidentialityImpact": "NONE",
                "exploitabilityScore": 10.0,
                "id": "VHN-11565",
                "impactScore": 2.9,
                "integrityImpact": "NONE",
                "severity": "MEDIUM",
                "trust": 0.1,
                "vectorString": "AV:N/AC:L/AU:N/C:N/I:N/A:P",
                "version": "2.0"
              }
            ],
            "cvssV3": [],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2005-0356",
                "trust": 1.0,
                "value": "MEDIUM"
              },
              {
                "author": "CARNEGIE MELLON",
                "id": "VU#637934",
                "trust": 0.8,
                "value": "4.73"
              },
              {
                "author": "NVD",
                "id": "CVE-2005-0356",
                "trust": 0.8,
                "value": "Medium"
              },
              {
                "author": "CNNVD",
                "id": "CNNVD-200505-1247",
                "trust": 0.6,
                "value": "MEDIUM"
              },
              {
                "author": "VULHUB",
                "id": "VHN-11565",
                "trust": 0.1,
                "value": "MEDIUM"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#637934"
          },
          {
            "db": "VULHUB",
            "id": "VHN-11565"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000333"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-1247"
          },
          {
            "db": "NVD",
            "id": "CVE-2005-0356"
          }
        ]
      },
      "description": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/description#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "Multiple TCP implementations with Protection Against Wrapped Sequence Numbers (PAWS) with the timestamps option enabled allow remote attackers to cause a denial of service (connection loss) via a spoofed packet with a large timer value, which causes the host to discard later packets because they appear to be too old. Certain TCP implementations may allow a remote attacker to arbitrarily modify host timestamp values, leading to a denial-of-service condition. TCP The implementation of the time stamp option is TCP A vulnerability exists that allows the internal timer on a connection to be changed to any value.the system TCP Connection reset and service disruption (DoS) It may be in a state. The Transmission Control Protocol (TCP) defined in RFC 793 allows reliable host-to-host transmission in a message exchange network. RFC 1323 introduces a number of technologies that enhance TCP performance, two of which are TCP timestamps and sequence number rollback protection (PAWS). \n\n\u00a0There are security holes in the PAWS technology of TCP RFC 1323. If TCP timestamps are enabled, both endpoints of the TCP connection use the internal clock to mark the TCP header with the timestamp value. \n\n\u00a0This vulnerability can occur if an attacker sends enough TCP PAWS packets to the vulnerable computer. An attacker can set the message timestamp to a large value. When the target machine processes this message, the internal timer will be updated to this value, which may cause all valid messages received afterwards to be discarded because these messages are considered too old or invalid. This technique may cause the target connection to deny service. \n\n----------------------------------------------------------------------\n\nBist Du interessiert an einem neuen Job in IT-Sicherheit?\n\n\nSecunia hat zwei freie Stellen als Junior und Senior Spezialist in IT-\nSicherheit:\nhttp://secunia.com/secunia_vacancies/\n\n----------------------------------------------------------------------\n\nTITLE:\nCisco Various Products TCP Timestamp Denial of Service\n\nSECUNIA ADVISORY ID:\nSA15393\n\nVERIFY ADVISORY:\nhttp://secunia.com/advisories/15393/\n\nCRITICAL:\nLess critical\n\nIMPACT:\nDoS\n\nWHERE:\n\u003eFrom remote\n\nOPERATING SYSTEM:\nCisco SN5400 Series Storage Routers\nhttp://secunia.com/product/2188/\nCisco MGX 8900 Series Multiservice Switches\nhttp://secunia.com/product/5117/\nCisco MGX 8800 Series Multiservice Switches\nhttp://secunia.com/product/5116/\nCisco MGX 8200 Series Edge Concentrators\nhttp://secunia.com/product/5115/\nCisco Content Services Switch 11000 Series (WebNS)\nhttp://secunia.com/product/1507/\nCisco Aironet 350 Series Access Point\nhttp://secunia.com/product/5114/\nCisco Aironet 1200 Series Access Point\nhttp://secunia.com/product/1929/\n\nDESCRIPTION:\nA vulnerability has been reported in some Cisco products, which can\nbe exploited by malicious people to cause a DoS (Denial of Service)\non active TCP sessions. \n\nSuccessful exploitation requires knowledge of IP address information\nof the source and destination of the TCP network connection. \n\nThe vulnerability affects the following products:\n* SN5400 series storage routers\n* CSS11000 series content services switches\n* AP350 and AP1200 series Access Points running VxWorks\n* MGX8200, MGX8800, and MGX8900 series WAN switches (only management\ninterfaces)\n\nSOLUTION:\nSN5400 series storage routers:\nThe vulnerability has been addressed by CSCin85370. \n\nCSS11000 series content services switches:\nThe vulnerability has been addressed by CSCeh40395. \n\nAP350 and AP1200 series Access Points:\nThe vendor recommends upgrading APs running VxWorks to Cisco IOS. \n\nMGX series WAN switches:\nThe vulnerability has been documented by CSCeh85125 and CSCeh85130. \n\nPROVIDED AND/OR DISCOVERED BY:\nUS-CERT credits Noritoshi Demizu. \n\nORIGINAL ADVISORY:\nCisco:\nhttp://www.cisco.com/warp/public/707/cisco-sn-20050518-tcpts.shtml\n\nOTHER REFERENCES:\nUS-CERT VU#637934:\nhttp://www.kb.cert.org/vuls/id/637934\n\n----------------------------------------------------------------------\n\nAbout:\nThis Advisory was delivered by Secunia as a free service to help\neverybody keeping their systems up to date against the latest\nvulnerabilities. \n\nSubscribe:\nhttp://secunia.com/secunia_security_advisories/\n\nDefinitions: (Criticality, Where etc.)\nhttp://secunia.com/about_secunia_advisories/\n\n\nPlease Note:\nSecunia recommends that you verify all advisories you receive by\nclicking the link. \nSecunia NEVER sends attached files with advisories. \nSecunia does not advise people to install third party patches, only\nuse those supplied by the vendor. \n\n----------------------------------------------------------------------\n\nUnsubscribe: Secunia Security Advisories\nhttp://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org\n\n----------------------------------------------------------------------\n\n\n. Cisco has acknowledged\nthat various Cisco products are affected. \n\nThe published Internet-Draft details three types of attacks, which\nutilize the following ICMP messages to cause a negative impact on TCP\nconnections either terminating or originating from a vulnerable\ndevice. \n\n1) ICMP \"hard\" error messages\n2) ICMP \"fragmentation needed and Don\u0027t Fragment (DF) bit set\"\nmessages (known as PMTUD attacks)\n3) ICMP \"source quench\" messages\n\nThese attacks can all be exploited to cause TCP connection resets,\nreduce the throughput in existing TCP connections, or consume large\namounts of CPU and memory resources. \n\nNOTE: See the original advisory for a list of affected versions. \n\nSOLUTION:\nSee patch matrix in vendor advisory for information about fixes",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2005-0356"
          },
          {
            "db": "CERT/CC",
            "id": "VU#637934"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000333"
          },
          {
            "db": "CNVD",
            "id": "CNVD-2005-1944"
          },
          {
            "db": "BID",
            "id": "13676"
          },
          {
            "db": "VULHUB",
            "id": "VHN-11565"
          },
          {
            "db": "PACKETSTORM",
            "id": "42527"
          },
          {
            "db": "PACKETSTORM",
            "id": "37673"
          },
          {
            "db": "PACKETSTORM",
            "id": "37672"
          },
          {
            "db": "PACKETSTORM",
            "id": "37143"
          }
        ],
        "trust": 3.6
      },
      "exploit_availability": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/exploit_availability#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "reference": "https://www.scap.org.cn/vuln/vhn-11565",
            "trust": 0.1,
            "type": "unknown"
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-11565"
          }
        ]
      },
      "external_ids": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/external_ids#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#637934",
            "trust": 3.8
          },
          {
            "db": "BID",
            "id": "13676",
            "trust": 3.6
          },
          {
            "db": "NVD",
            "id": "CVE-2005-0356",
            "trust": 3.4
          },
          {
            "db": "SECUNIA",
            "id": "15393",
            "trust": 1.9
          },
          {
            "db": "SECUNIA",
            "id": "15417",
            "trust": 1.9
          },
          {
            "db": "SECUNIA",
            "id": "18222",
            "trust": 1.8
          },
          {
            "db": "SECUNIA",
            "id": "18662",
            "trust": 1.7
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000333",
            "trust": 0.8
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-1247",
            "trust": 0.7
          },
          {
            "db": "CNVD",
            "id": "CNVD-2005-1944",
            "trust": 0.6
          },
          {
            "db": "CISCO",
            "id": "20050518 VULNERABILITY IN A VARIANT OF THE TCP TIMESTAMPS OPTION",
            "trust": 0.6
          },
          {
            "db": "FREEBSD",
            "id": "FREEBSD-SA-05:15",
            "trust": 0.6
          },
          {
            "db": "XF",
            "id": "20635",
            "trust": 0.6
          },
          {
            "db": "SCO",
            "id": "SCOSA-2005.64",
            "trust": 0.6
          },
          {
            "db": "EXPLOIT-DB",
            "id": "1008",
            "trust": 0.1
          },
          {
            "db": "VULHUB",
            "id": "VHN-11565",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "42527",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "37673",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "37672",
            "trust": 0.1
          },
          {
            "db": "SECUNIA",
            "id": "14904",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "37143",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#637934"
          },
          {
            "db": "CNVD",
            "id": "CNVD-2005-1944"
          },
          {
            "db": "VULHUB",
            "id": "VHN-11565"
          },
          {
            "db": "BID",
            "id": "13676"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000333"
          },
          {
            "db": "PACKETSTORM",
            "id": "42527"
          },
          {
            "db": "PACKETSTORM",
            "id": "37673"
          },
          {
            "db": "PACKETSTORM",
            "id": "37672"
          },
          {
            "db": "PACKETSTORM",
            "id": "37143"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-1247"
          },
          {
            "db": "NVD",
            "id": "CVE-2005-0356"
          }
        ]
      },
      "id": "VAR-200505-0572",
      "iot": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/iot#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": true,
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-11565"
          }
        ],
        "trust": 0.34090908
      },
      "last_update_date": "2025-04-03T20:39:16.091000Z",
      "patch": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/patch#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "title": "cisco-sn-20050518-tcpts",
            "trust": 0.8,
            "url": "http://www.cisco.com/warp/public/707/cisco-sn-20050518-tcpts.shtml"
          },
          {
            "title": "899480",
            "trust": 0.8,
            "url": "http://www.microsoft.com/technet/security/advisory/899480.mspx"
          },
          {
            "title": "MS05-019",
            "trust": 0.8,
            "url": "http://www.microsoft.com/technet/security/bulletin/MS05-019.mspx"
          },
          {
            "title": "cisco-sn-20050518-tcpts",
            "trust": 0.8,
            "url": "http://www.cisco.com/japanese/warp/public/3/jp/service/tac/707/cisco-sn-20050518-tcpts-j.shtml"
          },
          {
            "title": "899480",
            "trust": 0.8,
            "url": "http://www.microsoft.com/japan/technet/security/advisory/899480.mspx"
          },
          {
            "title": "MS05-019",
            "trust": 0.8,
            "url": "http://www.microsoft.com/japan/technet/security/bulletin/ms05-019.mspx"
          },
          {
            "title": "Multiple manufacturers TCP/IP Protocol stack implementation timestamp PAWS Remediation measures for remote denial of service vulnerabilities",
            "trust": 0.6,
            "url": "http://www.cnnvd.org.cn/web/xxk/bdxqById.tag?id=92344"
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000333"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-1247"
          }
        ]
      },
      "problemtype_data": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "problemtype": "NVD-CWE-Other",
            "trust": 1.0
          }
        ],
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2005-0356"
          }
        ]
      },
      "references": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/references#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "trust": 3.3,
            "url": "http://www.securityfocus.com/bid/13676"
          },
          {
            "trust": 2.9,
            "url": "http://www.kb.cert.org/vuls/id/637934"
          },
          {
            "trust": 2.1,
            "url": "http://www.cisco.com/warp/public/707/cisco-sn-20050518-tcpts.shtml"
          },
          {
            "trust": 2.0,
            "url": "http://support.avaya.com/elmodocs2/security/asa-2006-032.htm"
          },
          {
            "trust": 1.9,
            "url": "http://www.ietf.org/rfc/rfc1323.txt"
          },
          {
            "trust": 1.8,
            "url": "http://secunia.com/advisories/15417/"
          },
          {
            "trust": 1.7,
            "url": "ftp://ftp.freebsd.org/pub/freebsd/cert/advisories/freebsd-sa-05:15.tcp.asc"
          },
          {
            "trust": 1.7,
            "url": "ftp://ftp.sco.com/pub/updates/unixware/scosa-2005.64/scosa-2005.64.txt"
          },
          {
            "trust": 1.7,
            "url": "http://secunia.com/advisories/15393"
          },
          {
            "trust": 1.7,
            "url": "http://secunia.com/advisories/18222"
          },
          {
            "trust": 1.7,
            "url": "http://secunia.com/advisories/18662"
          },
          {
            "trust": 1.1,
            "url": "http://www.ietf.org/rfc/rfc793.txt"
          },
          {
            "trust": 1.1,
            "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/20635"
          },
          {
            "trust": 0.8,
            "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2005-0356"
          },
          {
            "trust": 0.8,
            "url": "http://www.ietf.org/rfc/rfc0793.txt"
          },
          {
            "trust": 0.8,
            "url": "http://jvn.jp/cert/jvnvu%23637934/"
          },
          {
            "trust": 0.8,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2005-0356"
          },
          {
            "trust": 0.6,
            "url": "http://xforce.iss.net/xforce/xfdb/20635"
          },
          {
            "trust": 0.4,
            "url": "http://openbsd.org/errata36.html#tcp"
          },
          {
            "trust": 0.4,
            "url": "http://secunia.com/secunia_security_advisories/"
          },
          {
            "trust": 0.4,
            "url": "http://secunia.com/sec_adv_unsubscribe/?email=packet%40packetstormsecurity.org"
          },
          {
            "trust": 0.4,
            "url": "http://secunia.com/about_secunia_advisories/"
          },
          {
            "trust": 0.3,
            "url": "http://support.avaya.com/elmodocs2/security/asa-2005-148.pdf"
          },
          {
            "trust": 0.3,
            "url": "http://www.alaxala.com/jp/support/icmp-20050518.html"
          },
          {
            "trust": 0.3,
            "url": "http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/netinet/tcp_input.c"
          },
          {
            "trust": 0.3,
            "url": "http://www.microsoft.com/technet/security/advisory/899480.mspx"
          },
          {
            "trust": 0.3,
            "url": "http://www.rtpro.yamaha.co.jp/rt/faq/tcpip/vu637934.html"
          },
          {
            "trust": 0.3,
            "url": "http://www.bluecoat.com/support/knowledge/advisory_tcp_can-2005-0356.html"
          },
          {
            "trust": 0.3,
            "url": "http://tech.f5.com/home/bigip-next/solutions/advisories/sol4743.html"
          },
          {
            "trust": 0.3,
            "url": "http://secunia.com/advisories/15393/"
          },
          {
            "trust": 0.3,
            "url": "http://secunia.com/secunia_vacancies/"
          },
          {
            "trust": 0.2,
            "url": "http://secunia.com/product/1507/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/18222/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/136/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/100/"
          },
          {
            "trust": 0.1,
            "url": "http://www.kb.cert.org/vuls/id/jgei-6abpp2"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/5117/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/5115/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/5114/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/5116/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/2188/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/1929/"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc1191.txt"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/56/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/182/"
          },
          {
            "trust": 0.1,
            "url": "http://www.gont.com.ar/drafts/icmp-attacks-against-tcp.html"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/50/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/advisories/14904/"
          },
          {
            "trust": 0.1,
            "url": "http://www.niscc.gov.uk/niscc/docs/al-20050412-00308.html"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/184/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/4907/"
          },
          {
            "trust": 0.1,
            "url": "http://www.ietf.org/rfc/rfc1122.txt"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/684/"
          },
          {
            "trust": 0.1,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20050412-icmp.shtml"
          },
          {
            "trust": 0.1,
            "url": "http://www.cisco.com/warp/public/707/cisco-sa-20050412-icmp.shtml#software"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/183/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/2270/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/53/"
          },
          {
            "trust": 0.1,
            "url": "http://secunia.com/product/3214/"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#637934"
          },
          {
            "db": "VULHUB",
            "id": "VHN-11565"
          },
          {
            "db": "BID",
            "id": "13676"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000333"
          },
          {
            "db": "PACKETSTORM",
            "id": "42527"
          },
          {
            "db": "PACKETSTORM",
            "id": "37673"
          },
          {
            "db": "PACKETSTORM",
            "id": "37672"
          },
          {
            "db": "PACKETSTORM",
            "id": "37143"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-1247"
          },
          {
            "db": "NVD",
            "id": "CVE-2005-0356"
          }
        ]
      },
      "sources": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#637934"
          },
          {
            "db": "CNVD",
            "id": "CNVD-2005-1944"
          },
          {
            "db": "VULHUB",
            "id": "VHN-11565"
          },
          {
            "db": "BID",
            "id": "13676"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2005-000333"
          },
          {
            "db": "PACKETSTORM",
            "id": "42527"
          },
          {
            "db": "PACKETSTORM",
            "id": "37673"
          },
          {
            "db": "PACKETSTORM",
            "id": "37672"
          },
          {
            "db": "PACKETSTORM",
            "id": "37143"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-1247"
          },
          {
            "db": "NVD",
            "id": "CVE-2005-0356"
          }
        ]
      },
      "sources_release_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2005-05-18T00:00:00",
            "db": "CERT/CC",
            "id": "VU#637934"
          },
          {
            "date": "2005-05-27T00:00:00",
            "db": "CNVD",
            "id": "CNVD-2005-1944"
          },
          {
            "date": "2005-05-31T00:00:00",
            "db": "VULHUB",
            "id": "VHN-11565"
          },
          {
            "date": "2005-05-18T00:00:00",
            "db": "BID",
            "id": "13676"
          },
          {
            "date": "2007-04-01T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2005-000333"
          },
          {
            "date": "2005-12-26T18:18:14",
            "db": "PACKETSTORM",
            "id": "42527"
          },
          {
            "date": "2005-05-29T20:22:44",
            "db": "PACKETSTORM",
            "id": "37673"
          },
          {
            "date": "2005-05-29T20:22:44",
            "db": "PACKETSTORM",
            "id": "37672"
          },
          {
            "date": "2005-04-18T07:21:17",
            "db": "PACKETSTORM",
            "id": "37143"
          },
          {
            "date": "2005-05-31T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-200505-1247"
          },
          {
            "date": "2005-05-31T04:00:00",
            "db": "NVD",
            "id": "CVE-2005-0356"
          }
        ]
      },
      "sources_update_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2005-08-23T00:00:00",
            "db": "CERT/CC",
            "id": "VU#637934"
          },
          {
            "date": "2005-05-27T00:00:00",
            "db": "CNVD",
            "id": "CNVD-2005-1944"
          },
          {
            "date": "2019-04-30T00:00:00",
            "db": "VULHUB",
            "id": "VHN-11565"
          },
          {
            "date": "2006-05-17T23:29:00",
            "db": "BID",
            "id": "13676"
          },
          {
            "date": "2007-04-01T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2005-000333"
          },
          {
            "date": "2005-10-20T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-200505-1247"
          },
          {
            "date": "2025-04-03T01:03:51.193000",
            "db": "NVD",
            "id": "CVE-2005-0356"
          }
        ]
      },
      "threat_type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/threat_type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "remote",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-1247"
          }
        ],
        "trust": 0.6
      },
      "title": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/title#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "TCP does not adequately validate segments before updating timestamp value",
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#637934"
          }
        ],
        "trust": 0.8
      },
      "type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "Design Error",
        "sources": [
          {
            "db": "BID",
            "id": "13676"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-200505-1247"
          }
        ],
        "trust": 0.9
      }
    }

    VAR-202002-0569

    Vulnerability from variot - Updated: 2024-11-23 19:58

    The HTTPS protocol, as used in unspecified web applications, can encrypt compressed data without properly obfuscating the length of the unencrypted data, which makes it easier for man-in-the-middle attackers to obtain plaintext secret values by observing length differences during a series of guesses in which a string in an HTTP request URL potentially matches an unknown string in an HTTP response body, aka a "BREACH" attack, a different issue than CVE-2012-4929. Compressed HTTPS By observing the length of the response, the attacker HTTPS From stream ciphertext, website authentication key, etc. (secret) Is possible to guess. Salesforce.com of Angelo Prado He reports as follows. * Extending the CRIME vulnerability presented at Ekoparty 2012, an attacker can target HTTPS responses to recover data from the response body. * While the CRIME attack is currently believed to be mitigated by disabling TLS/SSL/level compression, compressed HTTP responses represent a significant unmitigated vector which is currently exploitable. By injecting plaintext into an HTTPS request, an attacker can learn information about the corresponding HTTPS response by measuring its size. * This relies on the attacker being able to observe the size of the cipher text received by the browser while triggering a number of strategically crafted requests to a target site. To recover a particular secret in an HTTPS response body, the attacker guesses character by character, sending a pair of requests for each guess. The correct guess will result in a smaller HTTPS response. For each guess the attacker coerces the victim's browser to issue two requests. The first request includes a payload of the form: "target_secret_name=++" ...while the second request includes a payload of the form: "target_secret_name=++". * If the size of the first response is smaller than the second response, this indicates that the guess has a good chance of being correct. This method of sending two similar requests and comparing them is due to Duong and Rizzo. If multiple candidates are found, the following is a useful recovery mechanism: move forward in parallel with both candidates until it becomes clear which guess is correct. * With a token of length 32 and a character space of size 16 (e.g. hex), the attacker needs an average of approximately 1,000 request if no recovery mechanisms are needed. In practice, we have been able to recover CSRF tokens with fewer than 4,000 requests. A browser like Google Chrome or Internet Explorer is able to issue this number of requests in under 30 seconds, including callbacks to the attacker command & control center. [In order to conduct the attack, the following conditions must be true]: * 1. HTTPS-enabled endpoint (ideally with stream ciphers like RC4, although the attack can be made to work with adaptive padding for block ciphers). * 2. The attacker must be able to measure the size of HTTPS responses. * 3. Use of HTTP-level compression (e.g. gzip). * 4. A request parameter that is reflected in the response body. * 5. A static secret in the body (e.g. CSRF token, sessionId, VIEWSTATE, PII, etc.) that can be bootstrapped (either first/last two characters are predictable and/or the secret is padded with something like KnownSecretVariableName="". * 6. An otherwise static or relatively static response. Dynamic pages do not defeat the attack, but make it much more expensive.Encrypted by a remote third party HTTPS From the response, the key used to authenticate the website CSRF Information such as tokens (secret) May get you. TLS protocol is prone to an information-disclosure vulnerability. A man-in-the-middle attacker can exploit this issue to gain access to sensitive information that may aid in further attacks. HTTPS (Hypertext Transfer Protocol Secure) is a network security transmission protocol, which communicates via Hypertext Transfer Protocol (HTTP) on a computer network, and uses SSL/TLS to encrypt data packets. The main purpose of HTTPS development is to provide identity authentication to web servers and protect the privacy and integrity of exchanged data. There is an information disclosure vulnerability in the HTTPS protocol, which stems from the fact that the program does not confuse the length of the encrypted data when encrypting the compressed data. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Gentoo Linux Security Advisory GLSA 201606-06


                                           https://security.gentoo.org/
    

    Severity: Normal Title: nginx: Multiple vulnerabilities Date: June 17, 2016 Bugs: #560854, #573046, #584744 ID: 201606-06


    Synopsis

    Multiple vulnerabilities have been found in nginx, the worst of which may allow a remote attacker to cause a Denial of Service.

    Background

    nginx is a robust, small, and high performance HTTP and reverse proxy server.

    Affected packages

    -------------------------------------------------------------------
     Package              /     Vulnerable     /            Unaffected
    -------------------------------------------------------------------
    

    1 www-servers/nginx < 1.10.1 >= 1.10.1

    Description

    Multiple vulnerabilities have been discovered in nginx. Please review the CVE identifiers referenced below for details.

    Impact

    A remote attacker could possibly cause a Denial of Service condition via a crafted packet.

    Workaround

    There is no known workaround at this time.

    Resolution

    All nginx users should upgrade to the latest version:

    # emerge --sync # emerge --ask --oneshot --verbose ">=www-servers/nginx-1.10.1"

    References

    [ 1 ] CVE-2013-3587 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-3587 [ 2 ] CVE-2016-0742 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2016-0742 [ 3 ] CVE-2016-0746 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2016-0746 [ 4 ] CVE-2016-0747 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2016-0747 [ 5 ] CVE-2016-4450 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2016-4450 [ 6 ] CVE-2016-4450 http://nvd.nist.gov/nvd.cfm?cvename=CVE-2016-4450

    Availability

    This GLSA and any updates to it are available for viewing at the Gentoo Security Website:

    https://security.gentoo.org/glsa/201606-06

    Concerns?

    Security is a primary focus of Gentoo Linux and ensuring the confidentiality and security of our users' machines is of utmost importance to us. Any security concerns should be addressed to security@gentoo.org or alternatively, you may file a bug at https://bugs.gentoo.org.

    License

    Copyright 2016 Gentoo Foundation, Inc; referenced text belongs to its owner(s).

    The contents of this document are licensed under the Creative Commons - Attribution / Share Alike license.

    http://creativecommons.org/licenses/by-sa/2.5

    Show details on source website

    {
      "@context": {
        "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#",
        "affected_products": {
          "@id": "https://www.variotdbs.pl/ref/affected_products"
        },
        "configurations": {
          "@id": "https://www.variotdbs.pl/ref/configurations"
        },
        "credits": {
          "@id": "https://www.variotdbs.pl/ref/credits"
        },
        "cvss": {
          "@id": "https://www.variotdbs.pl/ref/cvss/"
        },
        "description": {
          "@id": "https://www.variotdbs.pl/ref/description/"
        },
        "exploit_availability": {
          "@id": "https://www.variotdbs.pl/ref/exploit_availability/"
        },
        "external_ids": {
          "@id": "https://www.variotdbs.pl/ref/external_ids/"
        },
        "iot": {
          "@id": "https://www.variotdbs.pl/ref/iot/"
        },
        "iot_taxonomy": {
          "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/"
        },
        "patch": {
          "@id": "https://www.variotdbs.pl/ref/patch/"
        },
        "problemtype_data": {
          "@id": "https://www.variotdbs.pl/ref/problemtype_data/"
        },
        "references": {
          "@id": "https://www.variotdbs.pl/ref/references/"
        },
        "sources": {
          "@id": "https://www.variotdbs.pl/ref/sources/"
        },
        "sources_release_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_release_date/"
        },
        "sources_update_date": {
          "@id": "https://www.variotdbs.pl/ref/sources_update_date/"
        },
        "threat_type": {
          "@id": "https://www.variotdbs.pl/ref/threat_type/"
        },
        "title": {
          "@id": "https://www.variotdbs.pl/ref/title/"
        },
        "type": {
          "@id": "https://www.variotdbs.pl/ref/type/"
        }
      },
      "@id": "https://www.variotdbs.pl/vuln/VAR-202002-0569",
      "affected_products": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/affected_products#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "model": "big-ip application security manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.0.0"
          },
          {
            "model": "big-ip access policy manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.6.1"
          },
          {
            "model": "big-ip local traffic manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.1.2"
          },
          {
            "model": "big-ip protocol security module",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.0.0"
          },
          {
            "model": "big-ip advanced firewall manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.6.1"
          },
          {
            "model": "big-ip access policy manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.0.0"
          },
          {
            "model": "big-ip local traffic manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.0.0"
          },
          {
            "model": "big-ip local traffic manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.0.0"
          },
          {
            "model": "big-ip policy enforcement manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.3.0"
          },
          {
            "model": "arx",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "6.0.0"
          },
          {
            "model": "arx",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "5.3.1"
          },
          {
            "model": "big-ip webaccelerator",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.0.0"
          },
          {
            "model": "big-ip access policy manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.0.0"
          },
          {
            "model": "big-ip local traffic manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.2.4"
          },
          {
            "model": "big-ip advanced firewall manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.0.0"
          },
          {
            "model": "big-ip link controller",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.0.0"
          },
          {
            "model": "big-ip advanced firewall manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.0.0"
          },
          {
            "model": "big-ip application security manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.2.0"
          },
          {
            "model": "big-ip application security manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.0.0"
          },
          {
            "model": "big-ip access policy manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.2.4"
          },
          {
            "model": "big-ip application security manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.4.8"
          },
          {
            "model": "big-ip wan optimization manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.0.0"
          },
          {
            "model": "big-ip protocol security module",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.4.8"
          },
          {
            "model": "big-ip application acceleration manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.4.0"
          },
          {
            "model": "big-ip link controller",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.1.2"
          },
          {
            "model": "big-ip analytics",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.6.1"
          },
          {
            "model": "big-ip policy enforcement manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.6.1"
          },
          {
            "model": "big-ip application acceleration manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.6.1"
          },
          {
            "model": "big-ip analytics",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.0.0"
          },
          {
            "model": "big-ip webaccelerator",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.2.4"
          },
          {
            "model": "big-ip wan optimization manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.2.4"
          },
          {
            "model": "big-ip application security manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.0.0"
          },
          {
            "model": "big-ip protocol security module",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.0.0"
          },
          {
            "model": "big-ip link controller",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.2.4"
          },
          {
            "model": "big-ip policy enforcement manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.0.0"
          },
          {
            "model": "big-ip local traffic manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.6.1"
          },
          {
            "model": "big-ip advanced firewall manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.3.0"
          },
          {
            "model": "big-ip protocol security module",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.4.1"
          },
          {
            "model": "big-ip wan optimization manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.3.0"
          },
          {
            "model": "big-ip application acceleration manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.0.0"
          },
          {
            "model": "big-ip local traffic manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.6.1"
          },
          {
            "model": "big-ip webaccelerator",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.0.0"
          },
          {
            "model": "firepass",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "7.0.0"
          },
          {
            "model": "big-ip edge gateway",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.1.0"
          },
          {
            "model": "big-ip analytics",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.0.0"
          },
          {
            "model": "arx",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "6.4.0"
          },
          {
            "model": "big-ip wan optimization manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.0.0"
          },
          {
            "model": "big-ip application security manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.1.2"
          },
          {
            "model": "firepass",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "6.0.0"
          },
          {
            "model": "big-ip access policy manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.1.2"
          },
          {
            "model": "big-ip protocol security module",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.4.5"
          },
          {
            "model": "big-ip advanced firewall manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.1.2"
          },
          {
            "model": "big-ip application security manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.0.0"
          },
          {
            "model": "big-ip edge gateway",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.2.4"
          },
          {
            "model": "big-ip link controller",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.2.2"
          },
          {
            "model": "big-ip application security manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.2.4"
          },
          {
            "model": "big-ip link controller",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.6.1"
          },
          {
            "model": "big-ip protocol security module",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.2.4"
          },
          {
            "model": "big-ip access policy manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.0.0"
          },
          {
            "model": "big-ip edge gateway",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.3.0"
          },
          {
            "model": "big-ip local traffic manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.0.0"
          },
          {
            "model": "big-ip link controller",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.0.0"
          },
          {
            "model": "big-ip link controller",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.0.0"
          },
          {
            "model": "big-ip local traffic manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.0.0"
          },
          {
            "model": "big-ip policy enforcement manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.0.0"
          },
          {
            "model": "big-ip webaccelerator",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.3.0"
          },
          {
            "model": "big-ip analytics",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.1.2"
          },
          {
            "model": "big-ip webaccelerator",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.4.8"
          },
          {
            "model": "big-ip policy enforcement manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.1.2"
          },
          {
            "model": "big-ip application acceleration manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.1.2"
          },
          {
            "model": "big-ip link controller",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.4.8"
          },
          {
            "model": "big-ip local traffic manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.0.0"
          },
          {
            "model": "arx",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "5.0.0"
          },
          {
            "model": "firepass",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "6.1.0"
          },
          {
            "model": "big-ip webaccelerator",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "9.4.0"
          },
          {
            "model": "big-ip analytics",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "12.0.0"
          },
          {
            "model": "big-ip application acceleration manager",
            "scope": "eq",
            "trust": 1.0,
            "vendor": "f5",
            "version": "13.0.0"
          },
          {
            "model": "big-ip application security manager",
            "scope": "lte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.6.1"
          },
          {
            "model": "big-ip edge gateway",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "11.0.0"
          },
          {
            "model": "big-ip access policy manager",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.1.0"
          },
          {
            "model": "big-ip link controller",
            "scope": "gte",
            "trust": 1.0,
            "vendor": "f5",
            "version": "10.0.0"
          },
          {
            "model": "",
            "scope": null,
            "trust": 0.8,
            "vendor": "multiple vendors",
            "version": null
          },
          {
            "model": "tls",
            "scope": "eq",
            "trust": 0.3,
            "vendor": "ietf",
            "version": "1.2"
          }
        ],
        "sources": [
          {
            "db": "BID",
            "id": "62618"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2013-003658"
          },
          {
            "db": "NVD",
            "id": "CVE-2013-3587"
          }
        ]
      },
      "configurations": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/configurations#",
          "children": {
            "@container": "@list"
          },
          "cpe_match": {
            "@container": "@list"
          },
          "data": {
            "@container": "@list"
          },
          "nodes": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "CVE_data_version": "4.0",
            "nodes": [
              {
                "cpe_match": [
                  {
                    "cpe22Uri": "cpe:/a:misc:multiple_vendors",
                    "vulnerable": true
                  }
                ],
                "operator": "OR"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "JVNDB",
            "id": "JVNDB-2013-003658"
          }
        ]
      },
      "credits": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/credits#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "Neal Harris and Yoel Gluck,Angelo Prado",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-201308-595"
          }
        ],
        "trust": 0.6
      },
      "cve": "CVE-2013-3587",
      "cvss": {
        "@context": {
          "cvssV2": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2"
          },
          "cvssV3": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/"
          },
          "severity": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/cvss/severity#"
            },
            "@id": "https://www.variotdbs.pl/ref/cvss/severity"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            },
            "@id": "https://www.variotdbs.pl/ref/sources"
          }
        },
        "data": [
          {
            "cvssV2": [
              {
                "accessComplexity": "MEDIUM",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "nvd@nist.gov",
                "availabilityImpact": "NONE",
                "baseScore": 4.3,
                "confidentialityImpact": "PARTIAL",
                "exploitabilityScore": 8.6,
                "id": "CVE-2013-3587",
                "impactScore": 2.9,
                "integrityImpact": "NONE",
                "severity": "MEDIUM",
                "trust": 1.1,
                "vectorString": "AV:N/AC:M/Au:N/C:P/I:N/A:N",
                "version": "2.0"
              },
              {
                "acInsufInfo": null,
                "accessComplexity": "HIGH",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "NVD",
                "availabilityImpact": "NONE",
                "availabilityRequirement": "NOT DEFINED",
                "baseScore": 2.6,
                "collateralDamagePotential": "NOT DEFINED",
                "confidentialityImpact": "PARTIAL",
                "confidentialityRequirement": "HIGH",
                "enviromentalScore": 3.2,
                "exploitability": "FUNCTIONAL",
                "exploitabilityScore": 4.9,
                "id": "CVE-2013-3587",
                "impactScore": 2.9,
                "integrityImpact": "NONE",
                "integrityRequirement": "HIGH",
                "obtainAllPrivilege": null,
                "obtainOtherPrivilege": null,
                "obtainUserPrivilege": null,
                "remediationLevel": "WORKAROUND",
                "reportConfidence": "CONFIRMED",
                "severity": "LOW",
                "targetDistribution": "HIGH",
                "trust": 0.8,
                "userInteractionRequired": null,
                "vector_string": "AV:N/AC:H/Au:N/C:P/I:N/A:N",
                "version": "2.0"
              },
              {
                "acInsufInfo": null,
                "accessComplexity": "High",
                "accessVector": "Network",
                "authentication": "None",
                "author": "IPA",
                "availabilityImpact": "None",
                "baseScore": 2.6,
                "confidentialityImpact": "Partial",
                "exploitabilityScore": null,
                "id": "JVNDB-2013-003658",
                "impactScore": null,
                "integrityImpact": "None",
                "obtainAllPrivilege": null,
                "obtainOtherPrivilege": null,
                "obtainUserPrivilege": null,
                "severity": "Low",
                "trust": 0.8,
                "userInteractionRequired": null,
                "vectorString": "AV:N/AC:H/Au:N/C:P/I:N/A:N",
                "version": "2.0"
              },
              {
                "accessComplexity": "MEDIUM",
                "accessVector": "NETWORK",
                "authentication": "NONE",
                "author": "VULHUB",
                "availabilityImpact": "NONE",
                "baseScore": 4.3,
                "confidentialityImpact": "PARTIAL",
                "exploitabilityScore": 8.6,
                "id": "VHN-63589",
                "impactScore": 2.9,
                "integrityImpact": "NONE",
                "severity": "MEDIUM",
                "trust": 0.1,
                "vectorString": "AV:N/AC:M/AU:N/C:P/I:N/A:N",
                "version": "2.0"
              }
            ],
            "cvssV3": [
              {
                "attackComplexity": "HIGH",
                "attackVector": "NETWORK",
                "author": "nvd@nist.gov",
                "availabilityImpact": "NONE",
                "baseScore": 5.9,
                "baseSeverity": "MEDIUM",
                "confidentialityImpact": "HIGH",
                "exploitabilityScore": 2.2,
                "id": "CVE-2013-3587",
                "impactScore": 3.6,
                "integrityImpact": "NONE",
                "privilegesRequired": "NONE",
                "scope": "UNCHANGED",
                "trust": 1.0,
                "userInteraction": "NONE",
                "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
                "version": "3.1"
              }
            ],
            "severity": [
              {
                "author": "nvd@nist.gov",
                "id": "CVE-2013-3587",
                "trust": 1.0,
                "value": "MEDIUM"
              },
              {
                "author": "NVD",
                "id": "CVE-2013-3587",
                "trust": 0.8,
                "value": "LOW"
              },
              {
                "author": "IPA",
                "id": "JVNDB-2013-003658",
                "trust": 0.8,
                "value": "Low"
              },
              {
                "author": "CNNVD",
                "id": "CNNVD-201308-595",
                "trust": 0.6,
                "value": "MEDIUM"
              },
              {
                "author": "VULHUB",
                "id": "VHN-63589",
                "trust": 0.1,
                "value": "MEDIUM"
              },
              {
                "author": "VULMON",
                "id": "CVE-2013-3587",
                "trust": 0.1,
                "value": "MEDIUM"
              }
            ]
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#987798"
          },
          {
            "db": "VULHUB",
            "id": "VHN-63589"
          },
          {
            "db": "VULMON",
            "id": "CVE-2013-3587"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2013-003658"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201308-595"
          },
          {
            "db": "NVD",
            "id": "CVE-2013-3587"
          }
        ]
      },
      "description": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/description#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "The HTTPS protocol, as used in unspecified web applications, can encrypt compressed data without properly obfuscating the length of the unencrypted data, which makes it easier for man-in-the-middle attackers to obtain plaintext secret values by observing length differences during a series of guesses in which a string in an HTTP request URL potentially matches an unknown string in an HTTP response body, aka a \"BREACH\" attack, a different issue than CVE-2012-4929. Compressed HTTPS By observing the length of the response, the attacker HTTPS From stream ciphertext, website authentication key, etc. (secret) Is possible to guess. Salesforce.com of Angelo Prado He reports as follows. * Extending the CRIME vulnerability presented at Ekoparty 2012, an attacker can target HTTPS responses to recover data from the response body. * While the CRIME attack is currently believed to be mitigated by disabling TLS/SSL/level compression, compressed HTTP responses represent a significant unmitigated vector which is currently exploitable. By injecting plaintext into an HTTPS request, an attacker can learn information about the corresponding HTTPS response by measuring its size. * This relies on the attacker being able to observe the size of the cipher text received by the browser while triggering a number of strategically crafted requests to a target site. To recover a particular secret in an HTTPS response body, the attacker guesses character by character, sending a pair of requests for each guess. The correct guess will result in a smaller HTTPS response. For each guess the attacker coerces the victim\u0027s browser to issue two requests. The first request includes a payload of the form: \"target_secret_name=\u003calready known part of secret\u003e+\u003cguess\u003e+\u003cpadding\u003e\" ...while the second request includes a payload of the form: \"target_secret_name=\u003calready known part of secret\u003e+\u003cpadding\u003e+\u003cguess\u003e\". * If the size of the first response is smaller than the second response, this indicates that the guess has a good chance of being correct. This method of sending two similar requests and comparing them is due to Duong and Rizzo. If multiple candidates are found, the following is a useful recovery mechanism: move forward in parallel with both candidates until it becomes clear which guess is correct. * With a token of length 32 and a character space of size 16 (e.g. hex), the attacker needs an average of approximately 1,000 request if no recovery mechanisms are needed. In practice, we have been able to recover CSRF tokens with fewer than 4,000 requests. A browser like Google Chrome or Internet Explorer is able to issue this number of requests in under 30 seconds, including callbacks to the attacker command \u0026 control center. [In order to conduct the attack, the following conditions must be true]: * 1. HTTPS-enabled endpoint (ideally with stream ciphers like RC4, although the attack can be made to work with adaptive padding for block ciphers). * 2. The attacker must be able to measure the size of HTTPS responses. * 3. Use of HTTP-level compression (e.g. gzip). * 4. A request parameter that is reflected in the response body. * 5. A static secret in the body (e.g. CSRF token, sessionId, VIEWSTATE, PII, etc.) that can be bootstrapped (either first/last two characters are predictable and/or the secret is padded with something like KnownSecretVariableName=\"\". * 6. An otherwise static or relatively static response. Dynamic pages do not defeat the attack, but make it much more expensive.Encrypted by a remote third party HTTPS From the response, the key used to authenticate the website CSRF Information such as tokens (secret) May get you. TLS protocol is prone to an information-disclosure vulnerability. \nA man-in-the-middle attacker can exploit this issue to gain access to sensitive information that may aid in further attacks. HTTPS (Hypertext Transfer Protocol Secure) is a network security transmission protocol, which communicates via Hypertext Transfer Protocol (HTTP) on a computer network, and uses SSL/TLS to encrypt data packets. The main purpose of HTTPS development is to provide identity authentication to web servers and protect the privacy and integrity of exchanged data. There is an information disclosure vulnerability in the HTTPS protocol, which stems from the fact that the program does not confuse the length of the encrypted data when encrypting the compressed data. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nGentoo Linux Security Advisory                           GLSA 201606-06\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n                                           https://security.gentoo.org/\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\n Severity: Normal\n    Title: nginx: Multiple vulnerabilities\n     Date: June 17, 2016\n     Bugs: #560854, #573046, #584744\n       ID: 201606-06\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\nSynopsis\n========\n\nMultiple vulnerabilities have been found in nginx, the worst of which\nmay allow a remote attacker to cause a Denial of Service. \n\nBackground\n==========\n\nnginx is a robust, small, and high performance HTTP and reverse proxy\nserver. \n\nAffected packages\n=================\n\n    -------------------------------------------------------------------\n     Package              /     Vulnerable     /            Unaffected\n    -------------------------------------------------------------------\n  1  www-servers/nginx            \u003c 1.10.1                  \u003e= 1.10.1\n\nDescription\n===========\n\nMultiple vulnerabilities have been discovered in nginx. Please review\nthe CVE identifiers referenced below for details. \n\nImpact\n======\n\nA remote attacker could possibly cause a Denial of Service condition\nvia a crafted packet. \n\nWorkaround\n==========\n\nThere is no known workaround at this time. \n\nResolution\n==========\n\nAll nginx users should upgrade to the latest version:\n\n  # emerge --sync\n  # emerge --ask --oneshot --verbose \"\u003e=www-servers/nginx-1.10.1\"\n\nReferences\n==========\n\n[ 1 ] CVE-2013-3587\n      http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-3587\n[ 2 ] CVE-2016-0742\n      http://nvd.nist.gov/nvd.cfm?cvename=CVE-2016-0742\n[ 3 ] CVE-2016-0746\n      http://nvd.nist.gov/nvd.cfm?cvename=CVE-2016-0746\n[ 4 ] CVE-2016-0747\n      http://nvd.nist.gov/nvd.cfm?cvename=CVE-2016-0747\n[ 5 ] CVE-2016-4450\n      http://nvd.nist.gov/nvd.cfm?cvename=CVE-2016-4450\n[ 6 ] CVE-2016-4450\n      http://nvd.nist.gov/nvd.cfm?cvename=CVE-2016-4450\n\nAvailability\n============\n\nThis GLSA and any updates to it are available for viewing at\nthe Gentoo Security Website:\n\n https://security.gentoo.org/glsa/201606-06\n\nConcerns?\n=========\n\nSecurity is a primary focus of Gentoo Linux and ensuring the\nconfidentiality and security of our users\u0027 machines is of utmost\nimportance to us. Any security concerns should be addressed to\nsecurity@gentoo.org or alternatively, you may file a bug at\nhttps://bugs.gentoo.org. \n\nLicense\n=======\n\nCopyright 2016 Gentoo Foundation, Inc; referenced text\nbelongs to its owner(s). \n\nThe contents of this document are licensed under the\nCreative Commons - Attribution / Share Alike license. \n\nhttp://creativecommons.org/licenses/by-sa/2.5\n",
        "sources": [
          {
            "db": "NVD",
            "id": "CVE-2013-3587"
          },
          {
            "db": "CERT/CC",
            "id": "VU#987798"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2013-003658"
          },
          {
            "db": "BID",
            "id": "62618"
          },
          {
            "db": "VULHUB",
            "id": "VHN-63589"
          },
          {
            "db": "VULMON",
            "id": "CVE-2013-3587"
          },
          {
            "db": "PACKETSTORM",
            "id": "137518"
          }
        ],
        "trust": 2.88
      },
      "exploit_availability": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/exploit_availability#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "reference": "https://www.kb.cert.org/vuls/id/987798",
            "trust": 0.8,
            "type": "unknown"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#987798"
          }
        ]
      },
      "external_ids": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/external_ids#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#987798",
            "trust": 3.6
          },
          {
            "db": "NVD",
            "id": "CVE-2013-3587",
            "trust": 3.0
          },
          {
            "db": "HACKERONE",
            "id": "254895",
            "trust": 1.7
          },
          {
            "db": "JVN",
            "id": "JVNVU94916481",
            "trust": 0.8
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2013-003658",
            "trust": 0.8
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201308-595",
            "trust": 0.7
          },
          {
            "db": "BID",
            "id": "62618",
            "trust": 0.4
          },
          {
            "db": "VULHUB",
            "id": "VHN-63589",
            "trust": 0.1
          },
          {
            "db": "VULMON",
            "id": "CVE-2013-3587",
            "trust": 0.1
          },
          {
            "db": "PACKETSTORM",
            "id": "137518",
            "trust": 0.1
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#987798"
          },
          {
            "db": "VULHUB",
            "id": "VHN-63589"
          },
          {
            "db": "VULMON",
            "id": "CVE-2013-3587"
          },
          {
            "db": "BID",
            "id": "62618"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2013-003658"
          },
          {
            "db": "PACKETSTORM",
            "id": "137518"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201308-595"
          },
          {
            "db": "NVD",
            "id": "CVE-2013-3587"
          }
        ]
      },
      "id": "VAR-202002-0569",
      "iot": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/iot#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": true,
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-63589"
          }
        ],
        "trust": 0.01
      },
      "last_update_date": "2024-11-23T19:58:10.169000Z",
      "patch": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/patch#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "title": "docker-breach",
            "trust": 0.1,
            "url": "https://github.com/jselvi/docker-breach "
          },
          {
            "title": "bash_1",
            "trust": 0.1,
            "url": "https://github.com/anber137/bash_1 "
          }
        ],
        "sources": [
          {
            "db": "VULMON",
            "id": "CVE-2013-3587"
          }
        ]
      },
      "problemtype_data": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "problemtype": "CWE-200",
            "trust": 1.1
          }
        ],
        "sources": [
          {
            "db": "VULHUB",
            "id": "VHN-63589"
          },
          {
            "db": "NVD",
            "id": "CVE-2013-3587"
          }
        ]
      },
      "references": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/references#",
          "data": {
            "@container": "@list"
          },
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": [
          {
            "trust": 2.8,
            "url": "http://www.kb.cert.org/vuls/id/987798"
          },
          {
            "trust": 2.5,
            "url": "http://breachattack.com/"
          },
          {
            "trust": 2.0,
            "url": "https://bugzilla.redhat.com/show_bug.cgi?id=995168"
          },
          {
            "trust": 1.9,
            "url": "http://security.stackexchange.com/questions/20406/is-http-compression-safe#20407"
          },
          {
            "trust": 1.7,
            "url": "http://github.com/meldium/breach-mitigation-rails"
          },
          {
            "trust": 1.7,
            "url": "http://slashdot.org/story/13/08/05/233216"
          },
          {
            "trust": 1.7,
            "url": "http://www.iacr.org/cryptodb/archive/2002/fse/3091/3091.pdf"
          },
          {
            "trust": 1.7,
            "url": "https://hackerone.com/reports/254895"
          },
          {
            "trust": 1.7,
            "url": "https://support.f5.com/csp/article/k14634"
          },
          {
            "trust": 1.7,
            "url": "https://www.blackhat.com/us-13/briefings.html#prado"
          },
          {
            "trust": 1.7,
            "url": "https://www.djangoproject.com/weblog/2013/aug/06/breach-and-django/"
          },
          {
            "trust": 1.0,
            "url": "https://lists.apache.org/thread.html/r7f0e9cfd166934172d43ca4c272b8bdda4a343036229d9937affd1e1%40%3cdev.httpd.apache.org%3e"
          },
          {
            "trust": 0.9,
            "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2013-3587"
          },
          {
            "trust": 0.8,
            "url": "http://cwe.mitre.org/data/definitions/310.html"
          },
          {
            "trust": 0.8,
            "url": "http://breachattack.com/resources/breach%20-%20ssl,%20gone%20in%2030%20seconds.pdf "
          },
          {
            "trust": 0.8,
            "url": "http://breachattack.com/resources/breach%20-%20bh%202013%20-%20presentation.pdf "
          },
          {
            "trust": 0.8,
            "url": "http://www.iacr.org/cryptodb/archive/2002/fse/3091/3091.pdf "
          },
          {
            "trust": 0.8,
            "url": "http://jvn.jp/cert/jvnvu94916481/index.html"
          },
          {
            "trust": 0.8,
            "url": "http://breachattack.com/resources/breach%20-%20ssl,%20gone%20in%2030%20seconds.pdf"
          },
          {
            "trust": 0.6,
            "url": "http-compression-safe#20407"
          },
          {
            "trust": 0.6,
            "url": "http://security.stackexchange.com/questions/20406/is-"
          },
          {
            "trust": 0.6,
            "url": "httpd.apache.org%3e"
          },
          {
            "trust": 0.6,
            "url": "https://lists.apache.org/thread.html/r7f0e9cfd166934172d43ca4c272b8bdda4a343036229d9937affd1e1@%3cdev."
          },
          {
            "trust": 0.6,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2013-3587"
          },
          {
            "trust": 0.3,
            "url": "http://www.ietf.org/rfc/rfc5246.txt"
          },
          {
            "trust": 0.1,
            "url": "https://lists.apache.org/thread.html/r7f0e9cfd166934172d43ca4c272b8bdda4a343036229d9937affd1e1@%3cdev.httpd.apache.org%3e"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2016-0746"
          },
          {
            "trust": 0.1,
            "url": "http://creativecommons.org/licenses/by-sa/2.5"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2016-4450"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2016-0747"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-0746"
          },
          {
            "trust": 0.1,
            "url": "http://nvd.nist.gov/nvd.cfm?cvename=cve-2016-0742"
          },
          {
            "trust": 0.1,
            "url": "https://security.gentoo.org/glsa/201606-06"
          },
          {
            "trust": 0.1,
            "url": "https://security.gentoo.org/"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-0742"
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-0747"
          },
          {
            "trust": 0.1,
            "url": "https://bugs.gentoo.org."
          },
          {
            "trust": 0.1,
            "url": "https://nvd.nist.gov/vuln/detail/cve-2016-4450"
          }
        ],
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#987798"
          },
          {
            "db": "VULHUB",
            "id": "VHN-63589"
          },
          {
            "db": "BID",
            "id": "62618"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2013-003658"
          },
          {
            "db": "PACKETSTORM",
            "id": "137518"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201308-595"
          },
          {
            "db": "NVD",
            "id": "CVE-2013-3587"
          }
        ]
      },
      "sources": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "db": "CERT/CC",
            "id": "VU#987798"
          },
          {
            "db": "VULHUB",
            "id": "VHN-63589"
          },
          {
            "db": "VULMON",
            "id": "CVE-2013-3587"
          },
          {
            "db": "BID",
            "id": "62618"
          },
          {
            "db": "JVNDB",
            "id": "JVNDB-2013-003658"
          },
          {
            "db": "PACKETSTORM",
            "id": "137518"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201308-595"
          },
          {
            "db": "NVD",
            "id": "CVE-2013-3587"
          }
        ]
      },
      "sources_release_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2013-08-02T00:00:00",
            "db": "CERT/CC",
            "id": "VU#987798"
          },
          {
            "date": "2020-02-21T00:00:00",
            "db": "VULHUB",
            "id": "VHN-63589"
          },
          {
            "date": "2020-02-21T00:00:00",
            "db": "VULMON",
            "id": "CVE-2013-3587"
          },
          {
            "date": "2013-08-01T00:00:00",
            "db": "BID",
            "id": "62618"
          },
          {
            "date": "2013-08-08T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2013-003658"
          },
          {
            "date": "2016-06-17T23:50:23",
            "db": "PACKETSTORM",
            "id": "137518"
          },
          {
            "date": "2013-08-05T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-201308-595"
          },
          {
            "date": "2020-02-21T18:15:11.427000",
            "db": "NVD",
            "id": "CVE-2013-3587"
          }
        ]
      },
      "sources_update_date": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#",
          "data": {
            "@container": "@list"
          }
        },
        "data": [
          {
            "date": "2013-08-08T00:00:00",
            "db": "CERT/CC",
            "id": "VU#987798"
          },
          {
            "date": "2020-03-05T00:00:00",
            "db": "VULHUB",
            "id": "VHN-63589"
          },
          {
            "date": "2022-01-01T00:00:00",
            "db": "VULMON",
            "id": "CVE-2013-3587"
          },
          {
            "date": "2013-08-01T00:00:00",
            "db": "BID",
            "id": "62618"
          },
          {
            "date": "2013-08-08T00:00:00",
            "db": "JVNDB",
            "id": "JVNDB-2013-003658"
          },
          {
            "date": "2021-04-12T00:00:00",
            "db": "CNNVD",
            "id": "CNNVD-201308-595"
          },
          {
            "date": "2024-11-21T01:53:56.283000",
            "db": "NVD",
            "id": "CVE-2013-3587"
          }
        ]
      },
      "threat_type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/threat_type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "remote",
        "sources": [
          {
            "db": "PACKETSTORM",
            "id": "137518"
          },
          {
            "db": "CNNVD",
            "id": "CNNVD-201308-595"
          }
        ],
        "trust": 0.7
      },
      "title": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/title#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "BREACH vulnerability in compressed HTTPS",
        "sources": [
          {
            "db": "CERT/CC",
            "id": "VU#987798"
          }
        ],
        "trust": 0.8
      },
      "type": {
        "@context": {
          "@vocab": "https://www.variotdbs.pl/ref/type#",
          "sources": {
            "@container": "@list",
            "@context": {
              "@vocab": "https://www.variotdbs.pl/ref/sources#"
            }
          }
        },
        "data": "information disclosure",
        "sources": [
          {
            "db": "CNNVD",
            "id": "CNNVD-201308-595"
          }
        ],
        "trust": 0.6
      }
    }

    CVE-2025-27371 (GCVE-0-2025-27371)

    Vulnerability from nvd – Published: 2025-03-03 00:00 – Updated: 2025-04-25 14:42
    VLAI
    Summary
    In certain IETF OAuth 2.0-related specifications, when the JSON Web Token Profile for OAuth 2.0 Client Authentication mechanism is used, there are ambiguities in the audience values of JWTs sent to authorization servers. The affected RFCs may include RFC 7523, and also RFC 7521, RFC 7522, RFC 9101 (JAR), and RFC 9126 (PAR).
    SSVC
    Exploitation: none Automatable: no Technical Impact: partial
    CISA Coordinator (v2.0.3)
    CWE
    • CWE-305 - Authentication Bypass by Primary Weakness
    Assigner
    Impacted products
    Vendor Product Version
    IETF RFC 7523 Affected: 7523 (custom)
    Create a notification for this product.
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "metrics": [
              {
                "other": {
                  "content": {
                    "id": "CVE-2025-27371",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "no"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2025-03-04T16:49:31.778471Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-03-04T16:49:57.268Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          }
        ],
        "cna": {
          "affected": [
            {
              "defaultStatus": "unknown",
              "product": "RFC 7523",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "7523",
                  "versionType": "custom"
                }
              ]
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "In certain IETF OAuth 2.0-related specifications, when the JSON Web Token Profile for OAuth 2.0 Client Authentication mechanism is used, there are ambiguities in the audience values of JWTs sent to authorization servers. The affected RFCs may include RFC 7523, and also RFC 7521, RFC 7522, RFC 9101 (JAR), and RFC 9126 (PAR)."
            }
          ],
          "metrics": [
            {
              "cvssV3_1": {
                "baseScore": 6.9,
                "baseSeverity": "MEDIUM",
                "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:L/I:H/A:N",
                "version": "3.1"
              }
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "cweId": "CWE-305",
                  "description": "CWE-305 Authentication Bypass by Primary Weakness",
                  "lang": "en",
                  "type": "CWE"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-04-25T14:42:06.366Z",
            "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
            "shortName": "mitre"
          },
          "references": [
            {
              "url": "https://openid.net/wp-content/uploads/2025/01/OIDF-Responsible-Disclosure-Notice-on-Security-Vulnerability-for-private_key_jwt.pdf"
            },
            {
              "url": "https://openid.net/notice-of-a-security-vulnerability/"
            },
            {
              "url": "https://talks.secworkshop.events/osw2025/talk/R8D9BS/"
            },
            {
              "url": "https://github.com/OWASP/ASVS/issues/2678"
            },
            {
              "url": "https://eprint.iacr.org/2025/629"
            }
          ],
          "x_generator": {
            "engine": "enrichogram 0.0.1"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
        "assignerShortName": "mitre",
        "cveId": "CVE-2025-27371",
        "datePublished": "2025-03-03T00:00:00.000Z",
        "dateReserved": "2025-02-23T00:00:00.000Z",
        "dateUpdated": "2025-04-25T14:42:06.366Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.1"
    }

    CVE-2024-7596 (GCVE-0-2024-7596)

    Vulnerability from nvd – Published: 2025-02-05 17:37 – Updated: 2025-11-03 20:56
    VLAI
    Title
    Generic UDP Encapsulation (GUE) (IETF Draft) do not validate or verify the source of a network packet
    Summary
    Proposed Generic UDP Encapsulation (GUE) (IETF Draft) do not validate or verify the source of a network packet allowing an attacker to spoof and route arbitrary traffic via an exposed network interface that can lead to spoofing, access control bypass, and other unexpected network behaviors. This can be considered similar to CVE-2020-10136.
    SSVC
    Exploitation: none Automatable: yes Technical Impact: partial
    CISA Coordinator (v2.0.3)
    Assigner
    Impacted products
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "metrics": [
              {
                "cvssV3_1": {
                  "attackComplexity": "LOW",
                  "attackVector": "NETWORK",
                  "availabilityImpact": "LOW",
                  "baseScore": 5.3,
                  "baseSeverity": "MEDIUM",
                  "confidentialityImpact": "NONE",
                  "integrityImpact": "NONE",
                  "privilegesRequired": "NONE",
                  "scope": "UNCHANGED",
                  "userInteraction": "NONE",
                  "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
                  "version": "3.1"
                }
              },
              {
                "other": {
                  "content": {
                    "id": "CVE-2024-7596",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "yes"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2025-02-05T18:59:09.631255Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-02-06T21:24:39.110Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          },
          {
            "providerMetadata": {
              "dateUpdated": "2025-11-03T20:56:27.654Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "url": "https://www.kb.cert.org/vuls/id/199397"
              }
            ],
            "title": "CVE Program Container"
          }
        ],
        "cna": {
          "affected": [
            {
              "product": "draft-ietf-intarea-gue-09",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "GUE-09"
                }
              ]
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "Proposed Generic UDP Encapsulation (GUE) (IETF Draft) do not validate or verify the source of a network packet allowing an attacker to spoof and route arbitrary traffic via an exposed network interface that can lead to spoofing, access control bypass, and other unexpected network behaviors.\r\n\r\nThis can be considered similar to CVE-2020-10136."
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "description": "CWE-290 Authentication Bypass by Spoofing",
                  "lang": "en"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-02-05T17:37:33.876Z",
            "orgId": "37e5125f-f79b-445b-8fad-9564f167944b",
            "shortName": "certcc"
          },
          "references": [
            {
              "url": "https://datatracker.ietf.org/doc/draft-ietf-intarea-gue/"
            },
            {
              "url": "https://www.rfc-editor.org/rfc/rfc6169.html"
            }
          ],
          "source": {
            "discovery": "UNKNOWN"
          },
          "title": "Generic UDP Encapsulation (GUE) (IETF Draft) do not validate or verify the source of a network packet",
          "x_generator": {
            "engine": "VINCE 3.0.11",
            "env": "prod",
            "origin": "https://cveawg.mitre.org/api/cve/CVE-2024-7596"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "37e5125f-f79b-445b-8fad-9564f167944b",
        "assignerShortName": "certcc",
        "cveId": "CVE-2024-7596",
        "datePublished": "2025-02-05T17:37:33.876Z",
        "dateReserved": "2024-08-07T20:17:30.815Z",
        "dateUpdated": "2025-11-03T20:56:27.654Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.2"
    }

    CVE-2024-7595 (GCVE-0-2024-7595)

    Vulnerability from nvd – Published: 2025-02-05 17:36 – Updated: 2025-11-03 20:56
    VLAI
    Title
    GRE and GRE6 Protocols (RFC2784) do not validate or verify the source of a network packet
    Summary
    GRE and GRE6 Protocols (RFC2784) do not validate or verify the source of a network packet allowing an attacker to spoof and route arbitrary traffic via an exposed network interface that can lead to spoofing, access control bypass, and other unexpected network behaviors. This can be considered similar to CVE-2020-10136.
    SSVC
    Exploitation: none Automatable: yes Technical Impact: partial
    CISA Coordinator (v2.0.3)
    Assigner
    Impacted products
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "metrics": [
              {
                "cvssV3_1": {
                  "attackComplexity": "LOW",
                  "attackVector": "NETWORK",
                  "availabilityImpact": "LOW",
                  "baseScore": 5.3,
                  "baseSeverity": "MEDIUM",
                  "confidentialityImpact": "NONE",
                  "integrityImpact": "NONE",
                  "privilegesRequired": "NONE",
                  "scope": "UNCHANGED",
                  "userInteraction": "NONE",
                  "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
                  "version": "3.1"
                }
              },
              {
                "other": {
                  "content": {
                    "id": "CVE-2024-7595",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "yes"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2025-02-05T19:00:42.995220Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-02-06T21:24:58.646Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          },
          {
            "providerMetadata": {
              "dateUpdated": "2025-11-03T20:56:26.123Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "url": "https://www.kb.cert.org/vuls/id/199397"
              }
            ],
            "title": "CVE Program Container"
          }
        ],
        "cna": {
          "affected": [
            {
              "product": "RFC2784 - Generic Routing Encapsulation (GRE)",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "STD 1"
                }
              ]
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "GRE and GRE6 Protocols (RFC2784) do not validate or verify the source of a network packet allowing an attacker to spoof and route arbitrary traffic via an exposed network interface that can lead to spoofing, access control bypass, and other unexpected network behaviors.\r\n\r\nThis can be considered similar to CVE-2020-10136."
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "description": "CWE-290 Authentication Bypass by Spoofing",
                  "lang": "en"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-02-05T17:36:33.199Z",
            "orgId": "37e5125f-f79b-445b-8fad-9564f167944b",
            "shortName": "certcc"
          },
          "references": [
            {
              "url": "https://datatracker.ietf.org/doc/html/rfc2784"
            },
            {
              "url": "https://www.rfc-editor.org/rfc/rfc6169.html"
            }
          ],
          "source": {
            "discovery": "UNKNOWN"
          },
          "title": "GRE and GRE6 Protocols (RFC2784) do not validate or verify the source of a network packet",
          "x_generator": {
            "engine": "VINCE 3.0.11",
            "env": "prod",
            "origin": "https://cveawg.mitre.org/api/cve/CVE-2024-7595"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "37e5125f-f79b-445b-8fad-9564f167944b",
        "assignerShortName": "certcc",
        "cveId": "CVE-2024-7595",
        "datePublished": "2025-02-05T17:36:33.199Z",
        "dateReserved": "2024-08-07T20:16:05.030Z",
        "dateUpdated": "2025-11-03T20:56:26.123Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.2"
    }

    CVE-2025-23019 (GCVE-0-2025-23019)

    Vulnerability from nvd – Published: 2025-01-14 00:00 – Updated: 2025-11-03 21:00
    VLAI
    Summary
    IPv6-in-IPv4 tunneling (RFC 4213) allows an attacker to spoof and route traffic via an exposed network interface.
    SSVC
    Exploitation: none Automatable: no Technical Impact: partial
    CISA Coordinator (v2.0.3)
    CWE
    • CWE-940 - Improper Verification of Source of a Communication Channel
    Assigner
    Impacted products
    Vendor Product Version
    IETF IPv6 Affected: 6 (custom)
    Create a notification for this product.
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "metrics": [
              {
                "other": {
                  "content": {
                    "id": "CVE-2025-23019",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "no"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2025-01-15T19:37:11.123417Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-02-12T20:31:20.419Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          },
          {
            "providerMetadata": {
              "dateUpdated": "2025-11-03T21:00:14.906Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "url": "https://www.kb.cert.org/vuls/id/199397"
              }
            ],
            "title": "CVE Program Container"
          }
        ],
        "cna": {
          "affected": [
            {
              "defaultStatus": "unknown",
              "product": "IPv6",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "6",
                  "versionType": "custom"
                }
              ]
            }
          ],
          "cpeApplicability": [
            {
              "nodes": [
                {
                  "cpeMatch": [
                    {
                      "criteria": "cpe:2.3:a:ietf:ipv6:*:*:*:*:*:*:*:*",
                      "versionEndIncluding": "6",
                      "versionStartIncluding": "6",
                      "vulnerable": true
                    }
                  ],
                  "negate": false,
                  "operator": "OR"
                }
              ]
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "IPv6-in-IPv4 tunneling (RFC 4213) allows an attacker to spoof and route traffic via an exposed network interface."
            }
          ],
          "metrics": [
            {
              "cvssV3_1": {
                "baseScore": 5.4,
                "baseSeverity": "MEDIUM",
                "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:L/I:L/A:N",
                "version": "3.1"
              }
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "cweId": "CWE-940",
                  "description": "CWE-940 Improper Verification of Source of a Communication Channel",
                  "lang": "en",
                  "type": "CWE"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-01-14T19:54:56.202Z",
            "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
            "shortName": "mitre"
          },
          "references": [
            {
              "url": "https://datatracker.ietf.org/doc/html/rfc4213"
            },
            {
              "url": "https://papers.mathyvanhoef.com/usenix2025-tunnels.pdf"
            },
            {
              "url": "https://www.top10vpn.com/research/tunneling-protocol-vulnerability/"
            }
          ],
          "x_generator": {
            "engine": "enrichogram 0.0.1"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
        "assignerShortName": "mitre",
        "cveId": "CVE-2025-23019",
        "datePublished": "2025-01-14T00:00:00.000Z",
        "dateReserved": "2025-01-10T00:00:00.000Z",
        "dateUpdated": "2025-11-03T21:00:14.906Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.2"
    }

    CVE-2025-23018 (GCVE-0-2025-23018)

    Vulnerability from nvd – Published: 2025-01-14 00:00 – Updated: 2025-11-03 21:00
    VLAI
    Summary
    IPv4-in-IPv6 and IPv6-in-IPv6 tunneling (RFC 2473) do not require the validation or verification of the source of a network packet, allowing an attacker to spoof and route arbitrary traffic via an exposed network interface. This is a similar issue to CVE-2020-10136.
    SSVC
    Exploitation: none Automatable: no Technical Impact: partial
    CISA Coordinator (v2.0.3)
    CWE
    • CWE-940 - Improper Verification of Source of a Communication Channel
    Assigner
    Impacted products
    Vendor Product Version
    IETF IPv6 Affected: 6 (custom)
    Create a notification for this product.
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "metrics": [
              {
                "other": {
                  "content": {
                    "id": "CVE-2025-23018",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "no"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2025-01-15T19:38:35.023118Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-02-12T20:31:20.585Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          },
          {
            "providerMetadata": {
              "dateUpdated": "2025-11-03T21:00:13.443Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "url": "https://www.kb.cert.org/vuls/id/199397"
              }
            ],
            "title": "CVE Program Container"
          }
        ],
        "cna": {
          "affected": [
            {
              "defaultStatus": "unknown",
              "product": "IPv6",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "6",
                  "versionType": "custom"
                }
              ]
            }
          ],
          "cpeApplicability": [
            {
              "nodes": [
                {
                  "cpeMatch": [
                    {
                      "criteria": "cpe:2.3:a:ietf:ipv6:*:*:*:*:*:*:*:*",
                      "versionEndIncluding": "6",
                      "versionStartIncluding": "6",
                      "vulnerable": true
                    }
                  ],
                  "negate": false,
                  "operator": "OR"
                }
              ]
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "IPv4-in-IPv6 and IPv6-in-IPv6 tunneling (RFC 2473) do not require the validation or verification of the source of a network packet, allowing an attacker to spoof and route arbitrary traffic via an exposed network interface. This is a similar issue to CVE-2020-10136."
            }
          ],
          "metrics": [
            {
              "cvssV3_1": {
                "baseScore": 5.4,
                "baseSeverity": "MEDIUM",
                "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:L/I:L/A:N",
                "version": "3.1"
              }
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "cweId": "CWE-940",
                  "description": "CWE-940 Improper Verification of Source of a Communication Channel",
                  "lang": "en",
                  "type": "CWE"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-01-14T19:51:42.363Z",
            "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
            "shortName": "mitre"
          },
          "references": [
            {
              "url": "https://datatracker.ietf.org/doc/html/rfc2473"
            },
            {
              "url": "https://papers.mathyvanhoef.com/usenix2025-tunnels.pdf"
            },
            {
              "url": "https://www.top10vpn.com/research/tunneling-protocol-vulnerability/"
            }
          ],
          "x_generator": {
            "engine": "enrichogram 0.0.1"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
        "assignerShortName": "mitre",
        "cveId": "CVE-2025-23018",
        "datePublished": "2025-01-14T00:00:00.000Z",
        "dateReserved": "2025-01-10T00:00:00.000Z",
        "dateUpdated": "2025-11-03T21:00:13.443Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.2"
    }

    CVE-2024-3596 (GCVE-0-2024-3596)

    Vulnerability from nvd – Published: 2024-07-09 12:02 – Updated: 2026-06-09 09:01
    VLAI
    Title
    RADIUS Protocol under RFC2865 is vulnerable to forgery attacks.
    Summary
    RADIUS Protocol under RFC 2865 is susceptible to forgery attacks by a local attacker who can modify any valid Response (Access-Accept, Access-Reject, or Access-Challenge) to any other response using a chosen-prefix collision attack against MD5 Response Authenticator signature.
    SSVC
    Exploitation: none Automatable: no Technical Impact: total
    CISA Coordinator (v2.0.3)
    Assigner
    Impacted products
    Vendor Product Version
    IETF RFC Affected: 2865
    Create a notification for this product.
    ietf rfc Affected: 2865
        cpe:2.3:a:ietf:rfc:2865:*:*:*:*:*:*:*
    Create a notification for this product.
    Siemens CPC80 Central Processing/Communication Affected: 0 , < V16.51 (custom)
    Create a notification for this product.
    Siemens CPCI85 Central Processing/Communication Affected: 0 , < V6.20 (custom)
    Create a notification for this product.
    Siemens POWER METER SICAM Q100 family Affected: 0 , < V2.70 (custom)
    Create a notification for this product.
    Siemens POWER METER SICAM Q200 family Affected: 0 , < V2.83 (custom)
    Create a notification for this product.
    Siemens Powerlink IP Affected: 0 , < V4.22 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM APE1808 Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM CROSSBOW Affected: 0 , < V5.6 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i800 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i800NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i801 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i801NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i802 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i802NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i803 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i803NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM M2100 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM M2100NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM M2200 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM M2200NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM M969 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM M969NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RM1224 LTE(4G) EU Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RM1224 LTE(4G) NAM Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RMC30 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RMC30NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RMC8388 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RMC8388 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RMC8388NC V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RMC8388NC V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX MX5000 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX MX5000RE Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1400 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1500 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1501 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1510 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1511 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1512 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1524 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1536 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX5000 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RP110 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RP110NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS1600 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS1600F Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS1600FNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS1600NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS1600T Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS1600TNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS400 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS400NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS401 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS401NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416NCv2 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416NCv2 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416P Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416PNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416PNCv2 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416PNCv2 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416Pv2 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416Pv2 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416v2 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416v2 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000A Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000ANC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000H Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000HNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000T Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000TNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900 (32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900 (32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900G Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900G (32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900G (32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900GNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900GNC(32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900GNC(32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900GP Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900GPNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900L Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900LNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900M-GETS-C01 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900M-GETS-XX Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900M-STND-C01 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900M-STND-XX Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900MNC-GETS-C01 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900MNC-GETS-XX Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900MNC-STND-XX Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900MNC-STND-XX-C01 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900NC(32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900NC(32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900W Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS910 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS910L Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS910LNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS910NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS910W Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS920L Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS920LNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS920W Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS930L Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS930LNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS930W Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS940G Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS940GNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS969 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS969NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100 (32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100 (32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100NC(32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100NC(32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100P Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100P (32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100P (32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100PNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100PNC (32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100PNC (32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2200 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2200NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2288 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2288 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2288NC V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2288NC V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300NC V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300NC V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300P V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300P V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300PNC V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300PNC V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2488 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2488 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2488NC V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2488NC V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG907R Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG908C Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG909R Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG910C Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG920P V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG920P V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG920PNC V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG920PNC V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSL910 Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSL910NC Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RST2228 Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RST2228P Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RST2428P Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RST916C Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RST916P Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE M804PB Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M812-1 ADSL-Router Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M816-1 ADSL-Router Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M826-2 SHDSL-Router Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M874-2 Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M874-3 Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M874-3 3G-Router (CN) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M876-3 Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M876-3 (ROK) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M876-4 Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M876-4 (EU) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M876-4 (NAM) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM853-1 (A1) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM853-1 (B1) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM853-1 (EU) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM856-1 (A1) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM856-1 (B1) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM856-1 (CN) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM856-1 (EU) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM856-1 (RoW) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE S615 EEC LAN-Router Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE S615 LAN-Router Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE SC622-2C Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE SC626-2C Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE SC632-2C Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE SC636-2C Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE SC642-2C Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE SC646-2C Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE W1748-1 M12 Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE W1788-1 M12 Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE W1788-2 EEC M12 Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE W1788-2 M12 Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE W1788-2IA M12 Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE W721-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W722-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W734-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W734-1 RJ45 (USA) Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W738-1 M12 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W748-1 M12 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W748-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W761-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W774-1 M12 EEC Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W774-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W774-1 RJ45 (USA) Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W778-1 M12 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W778-1 M12 EEC Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W778-1 M12 EEC (USA) Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W786-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W786-2 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W786-2 SFP Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W786-2IA RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W788-1 M12 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W788-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W788-2 M12 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W788-2 M12 EEC Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W788-2 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAB762-1 Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM763-1 Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM763-1 (ME) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM763-1 (US) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM766-1 Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM766-1 (ME) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM766-1 (US) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM766-1 EEC Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM766-1 EEC (ME) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM766-1 EEC (US) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUB762-1 Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUB762-1 iFeatures Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUM763-1 Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUM763-1 (US) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUM766-1 Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUM766-1 (ME) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUM766-1 (USA) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (230V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (230V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (24V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (24V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (2x 230V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (2x 230V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (2x 24V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (2x 24V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X304-2FE Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X306-1LD FE Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (230V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (230V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (24V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (24V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (2x 230V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (2x 230V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (2x 24V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (2x 24V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-3 Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-3LD Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2 Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2LD Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2LH Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2LH+ Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2M Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2M PoE Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2M TS Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X310 Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X310FE Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X320-1 FE Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X320-1-2LD FE Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X408-2 Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB205-3 (SC, PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB205-3 (ST, E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB205-3 (ST, PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB205-3LD (SC, E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB205-3LD (SC, PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB206-2 (SC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB206-2 (ST/BFOC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB206-2 LD Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB206-2 SC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB206-2 ST Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB206-2LD Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB208 (E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB208 (PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB213-3 (SC, E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB213-3 (SC, PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB213-3 (ST, E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB213-3 (ST, PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB213-3LD (SC, E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB213-3LD (SC, PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB216 (E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB216 (PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2 (SC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2 (ST/BFOC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2G PoE Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2G PoE (54 V DC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2G PoE EEC (54 V DC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2SFP Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2SFP EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2SFP G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2SFP G (EIP DEF.) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2SFP G EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208G (EIP def.) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208G EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208G PoE Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208G PoE (54 V DC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216-3G PoE Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216-3G PoE (54 V DC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216-4C Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216-4C G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216-4C G (EIP Def.) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216-4C G EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC224 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC224-4C G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC224-4C G (EIP Def.) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC224-4C G EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC316-8 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC324-4 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC324-4 EEC Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC332 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC416-8 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC424-4 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC432 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XCH328 Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XCM324 Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XCM328 Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XCM332 Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XF204 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XF204 DNA Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XF204-2BA Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XF204-2BA DNA Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XF204G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XM408-4C Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XM408-4C (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XM408-8C Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XM408-8C (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XM416-4C Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XM416-4C (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208 (Ethernet/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208G EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208G PoE EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208G PP Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208PoE EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216 (Ethernet/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216 (V2) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216EEC (V2) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216G EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216G PoE EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216POE EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216PoE EEC (V2) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR302-32 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR322-12 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-12M (230V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-12M (230V, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-12M (24V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-12M (24V, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-12M TS (24V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (100-240VAC/60-250VDC, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (100-240VAC/60-250VDC, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (24V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (24V, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (2x 100-240VAC/60-250VDC, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (2x 100-240VAC/60-250VDC, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (2x 24V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (2x 24V, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M PoE (230V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M PoE (230V, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M PoE (24V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M PoE (24V, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M PoE TS (24V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324WG (24 x FE, AC 230V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324WG (24 X FE, DC 24V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR326-2C PoE WG Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR326-2C PoE WG (without UL) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR326-8 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR326-8 EEC Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR328-4C WG (24XFE, 4XGE, 24V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR328-4C WG (24xFE, 4xGE,DC24V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR328-4C WG (24xFE,4xGE,AC230V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR328-4C WG (28xGE, AC 230V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR328-4C WG (28xGE, DC 24V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR502-32 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR522-12 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8C, 1x230V Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8C, 1x230V (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8C, 24V Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8C, 24V (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8C, 2x230V Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8C, 2x230V (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8WG Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8C, 1x230V Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8C, 1x230V (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8C, 24V Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8C, 24V (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8C, 2x230V Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8C, 2x230V (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR528-6M Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR528-6M (2HR2, L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR528-6M (2HR2) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR528-6M (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR552-12M Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR552-12M (2HR2, L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR552-12M (2HR2) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XRH334 (24 V DC, 8xFO, CC) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (230 V AC, 12xFO) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (230 V AC, 8xFO) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (230V AC, 2x10G, 24xSFP, 8xSFP+) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (24 V DC, 12xFO) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (24 V DC, 8xFO) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (24V DC, 2x10G, 24xSFP, 8xSFP+) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (2x230 V AC, 12xFO) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (2x230 V AC, 8xFO) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (2x230V AC, 2x10G, 24xSFP, 8xSFP+) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SICAM AK 3 Unaffected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SICAM BC Unaffected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SICAM GridEdge (Classic) Unaffected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SICAM GridEdge Applications for SICAM 8 Platform Unaffected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SICAM GridPass Affected: 0 , < V2.50 (custom)
    Create a notification for this product.
    Siemens SICAM TM Unaffected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SICORE Base system Affected: 0 , < V2.20.0 (custom)
    Create a notification for this product.
    Siemens SINEC INS Affected: 0 , < V1.0 SP2 Update 4 (custom)
    Create a notification for this product.
    Siemens SIPLUS NET SCALANCE X308-2 Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SIPLUS NET SCALANCE XC206-2 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SIPLUS NET SCALANCE XC206-2SFP Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SIPLUS NET SCALANCE XC208 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SIPLUS NET SCALANCE XC216-4C Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 - CP200 Devices Unaffected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 6MD84 (CP300) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 6MD85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 6MD86 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 6MD89 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 6MD89 (CP300) V9.6x Affected: 0 , < V9.68 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 6MU85 (CP300) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7KE85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SA82 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SA82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SA86 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SA87 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SD82 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SD82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SD86 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SD87 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SJ81 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SJ81 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SJ82 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SJ82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SJ85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SJ86 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SK82 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SK82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SK85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SL82 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SL82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SL86 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SL87 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SS85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7ST85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7ST85 (CP300) V9.6x Affected: 0 , < V9.68 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7ST86 (CP300) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7ST86 (CP300) V9.8x Affected: 0 , < V9.83 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SX82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SX85 (CP300) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SY82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7UM85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7UT82 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7UT82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7UT85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7UT86 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7UT87 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7VE85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7VK87 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7VU85 (CP300) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 Compact 7SX800 (CP050) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Credits
    Thanks to Sharon Goldberg, Miro Haller, Nadia Heninger, Mike Milano, Dan Shumow, Marc Stevens, and Adam Suhl who researched and reported this vulnerability
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "affected": [
              {
                "cpes": [
                  "cpe:2.3:a:ietf:rfc:2865:*:*:*:*:*:*:*"
                ],
                "defaultStatus": "unknown",
                "product": "rfc",
                "vendor": "ietf",
                "versions": [
                  {
                    "status": "affected",
                    "version": "2865"
                  }
                ]
              }
            ],
            "metrics": [
              {
                "cvssV3_1": {
                  "attackComplexity": "HIGH",
                  "attackVector": "NETWORK",
                  "availabilityImpact": "HIGH",
                  "baseScore": 9,
                  "baseSeverity": "CRITICAL",
                  "confidentialityImpact": "HIGH",
                  "integrityImpact": "HIGH",
                  "privilegesRequired": "NONE",
                  "scope": "CHANGED",
                  "userInteraction": "NONE",
                  "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H",
                  "version": "3.1"
                }
              },
              {
                "other": {
                  "content": {
                    "id": "CVE-2024-3596",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "no"
                      },
                      {
                        "Technical Impact": "total"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2024-07-11T03:55:37.141738Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-09-04T21:05:25.373Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          },
          {
            "providerMetadata": {
              "dateUpdated": "2025-11-04T17:20:52.225Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "url": "https://security.netapp.com/advisory/ntap-20240822-0001/"
              },
              {
                "url": "https://today.ucsd.edu/story/computer-scientists-discover-vulnerabilities-in-a-popular-security-protocol"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://datatracker.ietf.org/doc/html/rfc2865"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://datatracker.ietf.org/doc/draft-ietf-radext-deprecating-radius/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://networkradius.com/assets/pdf/radius_and_md5_collisions.pdf"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.blastradius.fail/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2024/07/09/4"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2024-0014"
              },
              {
                "url": "https://www.kb.cert.org/vuls/id/456537"
              }
            ],
            "title": "CVE Program Container"
          },
          {
            "affected": [
              {
                "defaultStatus": "unknown",
                "product": "CPC80 Central Processing/Communication",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V16.51",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "CPCI85 Central Processing/Communication",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.20",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "POWER METER SICAM Q100 family",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.70",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "POWER METER SICAM Q200 family",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.83",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "Powerlink IP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.22",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM APE1808",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM APE1808",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM CROSSBOW",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i800",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i800NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i801",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i801NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i802",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i802NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i803",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i803NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM M2100",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM M2100NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM M2200",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM M2200NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM M969",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM M969NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RM1224 LTE(4G) EU",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RM1224 LTE(4G) NAM",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RMC30",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RMC30NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RMC8388 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RMC8388 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RMC8388NC V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RMC8388NC V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX MX5000",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX MX5000RE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1400",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1500",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1501",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1510",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1511",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1512",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1524",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1536",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX5000",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RP110",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RP110NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS1600",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS1600F",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS1600FNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS1600NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS1600T",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS1600TNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS400",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS400NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS401",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS401NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416NCv2 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416NCv2 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416P",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416PNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416PNCv2 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416PNCv2 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416Pv2 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416Pv2 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416v2 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416v2 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000A",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000ANC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000H",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000HNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000T",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000TNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900 (32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900 (32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900G (32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900G (32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900GNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900GNC(32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900GNC(32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900GP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900GPNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900L",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900LNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900M-GETS-C01",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900M-GETS-XX",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900M-STND-C01",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900M-STND-XX",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900MNC-GETS-C01",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900MNC-GETS-XX",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900MNC-STND-XX",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900MNC-STND-XX-C01",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900NC(32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900NC(32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900W",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS910",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS910L",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS910LNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS910NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS910W",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS920L",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS920LNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS920W",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS930L",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS930LNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS930W",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS940G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS940GNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS969",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS969NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100 (32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100 (32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100NC(32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100NC(32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100P",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100P (32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100P (32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100PNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100PNC (32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100PNC (32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2200",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2200NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2288 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2288 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2288NC V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2288NC V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300NC V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300NC V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300P V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300P V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300PNC V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300PNC V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2488 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2488 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2488NC V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2488NC V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG907R",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG908C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG909R",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG910C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG920P V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG920P V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG920PNC V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG920PNC V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSL910",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSL910NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RST2228",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RST2228P",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RST2428P",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RST916C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RST916P",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M804PB",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M812-1 ADSL-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M812-1 ADSL-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M816-1 ADSL-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M816-1 ADSL-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M826-2 SHDSL-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M874-2",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M874-3",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M874-3 3G-Router (CN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M876-3",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M876-3 (ROK)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M876-4",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M876-4 (EU)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M876-4 (NAM)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM853-1 (A1)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM853-1 (B1)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM853-1 (EU)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM856-1 (A1)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM856-1 (B1)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM856-1 (CN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM856-1 (EU)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM856-1 (RoW)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE S615 EEC LAN-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE S615 LAN-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE SC622-2C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE SC626-2C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE SC632-2C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE SC636-2C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE SC642-2C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE SC646-2C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W1748-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W1748-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W1788-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W1788-2 EEC M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W1788-2 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W1788-2IA M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W721-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W721-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W722-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W722-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W722-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W734-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W734-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W734-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W734-1 RJ45 (USA)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W738-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W738-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W748-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W748-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W748-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W748-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W761-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W761-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 M12 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 M12 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 RJ45 (USA)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W778-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W778-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W778-1 M12 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W778-1 M12 EEC (USA)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2 SFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2 SFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2IA RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2IA RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 M12 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 M12 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 M12 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAB762-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM763-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM763-1 (ME)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM763-1 (US)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM766-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM766-1 (ME)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM766-1 (US)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM766-1 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM766-1 EEC (ME)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM766-1 EEC (US)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUB762-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUB762-1 iFeatures",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM763-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM763-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM763-1 (US)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM763-1 (US)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM766-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM766-1 (ME)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM766-1 (USA)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (230V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (24V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (2x 230V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (2x 230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (2x 24V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (2x 24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X304-2FE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X306-1LD FE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (230V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (24V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (2x 230V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (2x 230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (2x 24V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (2x 24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-3",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-3",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-3LD",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-3LD",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2LD",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2LD",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2LH",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2LH",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2LH+",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2LH+",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2M",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2M",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2M PoE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2M PoE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2M TS",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2M TS",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X310",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X310",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X310FE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X310FE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X320-1 FE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X320-1-2LD FE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X408-2",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB205-3 (SC, PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB205-3 (ST, E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB205-3 (ST, E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB205-3 (ST, PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB205-3LD (SC, E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB205-3LD (SC, PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB206-2 (SC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB206-2 (ST/BFOC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB206-2 LD",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB206-2 SC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB206-2 ST",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB206-2LD",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB208 (E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB208 (PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB213-3 (SC, E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB213-3 (SC, PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB213-3 (ST, E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB213-3 (ST, PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB213-3LD (SC, E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB213-3LD (SC, PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB216 (E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB216 (PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2 (SC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2 (ST/BFOC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2G PoE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2G PoE (54 V DC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2G PoE EEC (54 V DC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2SFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2SFP EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2SFP G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2SFP G (EIP DEF.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2SFP G EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208G (EIP def.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208G EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208G PoE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208G PoE (54 V DC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216-3G PoE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216-3G PoE (54 V DC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216-4C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216-4C G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216-4C G (EIP Def.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216-4C G EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC224",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC224-4C G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC224-4C G (EIP Def.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC224-4C G EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC316-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC324-4",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC324-4 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC332",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC416-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC424-4",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC432",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XCH328",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XCM324",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XCM328",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XCM332",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XF204",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XF204 DNA",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XF204-2BA",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XF204-2BA DNA",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XF204G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XM408-4C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XM408-4C (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XM408-8C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XM408-8C (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XM416-4C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XM416-4C (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208 (Ethernet/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208G EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208G PoE EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208G PP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208PoE EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208PoE EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216 (Ethernet/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216 (V2)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216EEC (V2)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216G EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216G PoE EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216POE EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216PoE EEC (V2)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR302-32",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR302-32",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR302-32",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR322-12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR322-12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR322-12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (230V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (230V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (230V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (230V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M TS (24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M TS (24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (100-240VAC/60-250VDC, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (100-240VAC/60-250VDC, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (100-240VAC/60-250VDC, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (100-240VAC/60-250VDC, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 100-240VAC/60-250VDC, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 100-240VAC/60-250VDC, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 100-240VAC/60-250VDC, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 100-240VAC/60-250VDC, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (230V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (230V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (230V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (230V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE TS (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE TS (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324WG (24 x FE, AC 230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324WG (24 X FE, DC 24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR326-2C PoE WG",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR326-2C PoE WG (without UL)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR326-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR326-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR326-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR326-8 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR328-4C WG (24XFE, 4XGE, 24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR328-4C WG (24xFE, 4xGE,DC24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR328-4C WG (24xFE,4xGE,AC230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR328-4C WG (24xFE,4xGE,AC230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR328-4C WG (28xGE, AC 230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR328-4C WG (28xGE, DC 24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR502-32",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR502-32",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR502-32",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR522-12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR522-12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR522-12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8C, 1x230V",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8C, 1x230V (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8C, 24V",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8C, 24V (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8C, 2x230V",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8C, 2x230V (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8WG",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8WG",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8WG",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8WG",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8C, 1x230V",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8C, 1x230V (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8C, 24V",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8C, 24V (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8C, 2x230V",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8C, 2x230V (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR528-6M",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR528-6M (2HR2, L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR528-6M (2HR2)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR528-6M (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR552-12M",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR552-12M (2HR2, L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR552-12M (2HR2)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR552-12M (2HR2)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRH334 (24 V DC, 8xFO, CC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (230 V AC, 12xFO)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (230 V AC, 8xFO)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (230V AC, 2x10G, 24xSFP, 8xSFP+)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (24 V DC, 12xFO)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (24 V DC, 8xFO)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (24V DC, 2x10G, 24xSFP, 8xSFP+)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (2x230 V AC, 12xFO)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (2x230 V AC, 8xFO)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (2x230V AC, 2x10G, 24xSFP, 8xSFP+)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICAM AK 3",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "unaffected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICAM BC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "unaffected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICAM GridEdge (Classic)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "unaffected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICAM GridEdge Applications for SICAM 8 Platform",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "unaffected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICAM GridPass",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.50",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICAM TM",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "unaffected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICORE Base system",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.20.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SINEC INS",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.0 SP2 Update 4",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPLUS NET SCALANCE X308-2",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPLUS NET SCALANCE XC206-2",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPLUS NET SCALANCE XC206-2SFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPLUS NET SCALANCE XC208",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPLUS NET SCALANCE XC216-4C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 - CP200 Devices",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "unaffected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 6MD84 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 6MD85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 6MD86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 6MD89 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 6MD89 (CP300) V9.6x",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V9.68",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 6MU85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7KE85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SA82 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SA82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SA86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SA87 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SD82 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SD82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SD86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SD87 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SJ81 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SJ81 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SJ82 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SJ82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SJ85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SJ86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SK82 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SK82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SK85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SL82 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SL82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SL86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SL87 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SS85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7ST85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7ST85 (CP300) V9.6x",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V9.68",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7ST86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7ST86 (CP300) V9.8x",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V9.83",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SX82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SX85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SY82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7UM85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7UT82 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7UT82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7UT85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7UT86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7UT87 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7VE85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7VK87 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7VU85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 Compact 7SX800 (CP050)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2026-06-09T09:01:52.617Z",
              "orgId": "0b142b55-0307-4c5a-b3c9-f314f3fb7c5e",
              "shortName": "siemens-SADP"
            },
            "references": [
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-364175.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-723487.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-770770.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-794185.html"
              }
            ],
            "x_adpType": "supplier"
          }
        ],
        "cna": {
          "affected": [
            {
              "product": "RFC",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "2865"
                }
              ]
            }
          ],
          "credits": [
            {
              "lang": "en",
              "type": "finder",
              "value": "Thanks to Sharon Goldberg, Miro Haller, Nadia Heninger, Mike Milano, Dan Shumow, Marc Stevens, and Adam Suhl who researched and reported this vulnerability"
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "RADIUS Protocol under RFC 2865 is susceptible to forgery attacks by a local attacker who can modify any valid Response (Access-Accept, Access-Reject, or Access-Challenge) to any other response using a chosen-prefix collision attack against MD5 Response Authenticator signature."
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "description": "CWE-328: Use of Weak Hash",
                  "lang": "en"
                }
              ]
            },
            {
              "descriptions": [
                {
                  "description": "CWE-200 Exposure of Sensitive Information to an Unauthorized Actor",
                  "lang": "en"
                }
              ]
            },
            {
              "descriptions": [
                {
                  "description": "CWE-924 Improper Enforcement of Message Integrity During Transmission in a Communication Channel",
                  "lang": "en"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-09-03T17:29:16.788Z",
            "orgId": "37e5125f-f79b-445b-8fad-9564f167944b",
            "shortName": "certcc"
          },
          "references": [
            {
              "url": "https://datatracker.ietf.org/doc/html/rfc2865"
            },
            {
              "url": "https://datatracker.ietf.org/doc/draft-ietf-radext-deprecating-radius/"
            },
            {
              "url": "https://networkradius.com/assets/pdf/radius_and_md5_collisions.pdf"
            },
            {
              "url": "https://www.blastradius.fail/"
            },
            {
              "url": "http://www.openwall.com/lists/oss-security/2024/07/09/4"
            },
            {
              "url": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2024-0014"
            },
            {
              "name": "Siemens Security Advisory by Siemens ProductCERT for  SIPROTEC, SICAM and related product",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://cert-portal.siemens.com/productcert/html/ssa-794185.html"
            },
            {
              "name": "Siemens Security Advisory by Siemens ProductCERT to SCALANCE, RUGGEDCOM and related products.",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://cert-portal.siemens.com/productcert/html/ssa-723487.html"
            }
          ],
          "source": {
            "discovery": "EXTERNAL"
          },
          "title": "RADIUS Protocol under RFC2865 is vulnerable to forgery attacks.",
          "x_generator": {
            "engine": "VINCE 3.0.4",
            "env": "prod",
            "origin": "https://cveawg.mitre.org/api/cve/CVE-2024-3596"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "37e5125f-f79b-445b-8fad-9564f167944b",
        "assignerShortName": "certcc",
        "cveId": "CVE-2024-3596",
        "datePublished": "2024-07-09T12:02:53.001Z",
        "dateReserved": "2024-04-10T15:09:45.391Z",
        "dateUpdated": "2026-06-09T09:01:52.617Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.2"
    }

    CVE-2024-3661 (GCVE-0-2024-3661)

    Vulnerability from nvd – Published: 2024-05-06 18:31 – Updated: 2024-08-28 19:09
    VLAI
    Title
    DHCP routing options can manipulate interface-based VPN traffic
    Summary
    DHCP can add routes to a client’s routing table via the classless static route option (121). VPN-based security solutions that rely on routes to redirect traffic can be forced to leak traffic over the physical interface. An attacker on the same local network can read, disrupt, or possibly modify network traffic that was expected to be protected by the VPN.
    SSVC
    Exploitation: none Automatable: no Technical Impact: partial
    CISA Coordinator (v2.0.3)
    CWE
    • CWE-306 - Missing Authentication for Critical Function
    • CWE-501 - Trust Boundary Violation
    Assigner
    Impacted products
    Vendor Product Version
    IETF DHCP Affected: 0
    Create a notification for this product.
    Date Public
    2002-12-31 01:00
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "providerMetadata": {
              "dateUpdated": "2024-08-01T20:20:00.420Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://datatracker.ietf.org/doc/html/rfc2131#section-7"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://datatracker.ietf.org/doc/html/rfc3442#section-7"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://tunnelvisionbug.com/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.leviathansecurity.com/research/tunnelvision"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://news.ycombinator.com/item?id=40279632"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://arstechnica.com/security/2024/05/novel-attack-against-virtually-all-vpn-apps-neuters-their-entire-purpose/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://krebsonsecurity.com/2024/05/why-your-vpn-may-not-be-as-secure-as-it-claims/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://issuetracker.google.com/issues/263721377"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://mullvad.net/en/blog/evaluating-the-impact-of-tunnelvision"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.zscaler.com/blogs/security-research/cve-2024-3661-k-tunnelvision-exposes-vpn-bypass-vulnerability"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://lowendtalk.com/discussion/188857/a-rogue-dhcp-server-within-your-network-can-and-will-hijack-your-vpn-traffic"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://news.ycombinator.com/item?id=40284111"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.agwa.name/blog/post/hardening_openvpn_for_def_con"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.theregister.com/2024/05/07/vpn_tunnelvision_dhcp/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://support.citrix.com/article/CTX677069/cloud-software-group-security-advisory-for-cve20243661"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.watchguard.com/wgrd-psirt/advisory/wgsa-2024-00009"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://bst.cisco.com/quickview/bug/CSCwk05814"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://security.paloaltonetworks.com/CVE-2024-3661"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://fortiguard.fortinet.com/psirt/FG-IR-24-170"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://my.f5.com/manage/s/article/K000139553"
              }
            ],
            "title": "CVE Program Container"
          },
          {
            "metrics": [
              {
                "other": {
                  "content": {
                    "id": "CVE-2024-3661",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "no"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2024-05-08T04:00:07.962328Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2024-08-28T19:09:06.995Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          }
        ],
        "cna": {
          "affected": [
            {
              "defaultStatus": "affected",
              "product": "DHCP",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "0"
                }
              ]
            }
          ],
          "datePublic": "2002-12-31T01:00:00.000Z",
          "descriptions": [
            {
              "lang": "en",
              "supportingMedia": [
                {
                  "base64": false,
                  "type": "text/html",
                  "value": "DHCP can add routes to a client\u2019s routing table via the classless static route option (121). VPN-based security solutions that rely on routes to redirect traffic can be forced to leak traffic over the physical interface. An attacker on the same local network can read, disrupt, or possibly modify network traffic that was expected to be protected by the VPN."
                }
              ],
              "value": "DHCP can add routes to a client\u2019s routing table via the classless static route option (121). VPN-based security solutions that rely on routes to redirect traffic can be forced to leak traffic over the physical interface. An attacker on the same local network can read, disrupt, or possibly modify network traffic that was expected to be protected by the VPN."
            }
          ],
          "metrics": [
            {
              "cvssV3_1": {
                "attackComplexity": "LOW",
                "attackVector": "ADJACENT_NETWORK",
                "availabilityImpact": "LOW",
                "baseScore": 7.6,
                "baseSeverity": "HIGH",
                "confidentialityImpact": "HIGH",
                "integrityImpact": "LOW",
                "privilegesRequired": "NONE",
                "scope": "UNCHANGED",
                "userInteraction": "NONE",
                "vectorString": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:L",
                "version": "3.1"
              },
              "format": "CVSS",
              "scenarios": [
                {
                  "lang": "en",
                  "value": "GENERAL"
                }
              ]
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "cweId": "CWE-306",
                  "description": "CWE-306 Missing Authentication for Critical Function",
                  "lang": "en",
                  "type": "CWE"
                }
              ]
            },
            {
              "descriptions": [
                {
                  "cweId": "CWE-501",
                  "description": "CWE-501 Trust Boundary Violation",
                  "lang": "en",
                  "type": "CWE"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2024-07-01T15:04:50.790Z",
            "orgId": "9119a7d8-5eab-497f-8521-727c672e3725",
            "shortName": "cisa-cg"
          },
          "references": [
            {
              "url": "https://datatracker.ietf.org/doc/html/rfc2131#section-7"
            },
            {
              "url": "https://datatracker.ietf.org/doc/html/rfc3442#section-7"
            },
            {
              "url": "https://tunnelvisionbug.com/"
            },
            {
              "url": "https://www.leviathansecurity.com/research/tunnelvision"
            },
            {
              "url": "https://news.ycombinator.com/item?id=40279632"
            },
            {
              "url": "https://arstechnica.com/security/2024/05/novel-attack-against-virtually-all-vpn-apps-neuters-their-entire-purpose/"
            },
            {
              "url": "https://krebsonsecurity.com/2024/05/why-your-vpn-may-not-be-as-secure-as-it-claims/"
            },
            {
              "url": "https://issuetracker.google.com/issues/263721377"
            },
            {
              "url": "https://mullvad.net/en/blog/evaluating-the-impact-of-tunnelvision"
            },
            {
              "url": "https://www.zscaler.com/blogs/security-research/cve-2024-3661-k-tunnelvision-exposes-vpn-bypass-vulnerability"
            },
            {
              "url": "https://lowendtalk.com/discussion/188857/a-rogue-dhcp-server-within-your-network-can-and-will-hijack-your-vpn-traffic"
            },
            {
              "url": "https://news.ycombinator.com/item?id=40284111"
            },
            {
              "url": "https://www.agwa.name/blog/post/hardening_openvpn_for_def_con"
            },
            {
              "url": "https://www.theregister.com/2024/05/07/vpn_tunnelvision_dhcp/"
            },
            {
              "url": "https://support.citrix.com/article/CTX677069/cloud-software-group-security-advisory-for-cve20243661"
            },
            {
              "url": "https://www.watchguard.com/wgrd-psirt/advisory/wgsa-2024-00009"
            },
            {
              "url": "https://bst.cisco.com/quickview/bug/CSCwk05814"
            },
            {
              "url": "https://security.paloaltonetworks.com/CVE-2024-3661"
            },
            {
              "url": "https://fortiguard.fortinet.com/psirt/FG-IR-24-170"
            },
            {
              "url": "https://my.f5.com/manage/s/article/K000139553"
            }
          ],
          "source": {
            "discovery": "UNKNOWN"
          },
          "title": "DHCP routing options can manipulate interface-based VPN traffic",
          "x_generator": {
            "engine": "Vulnogram 0.1.0-dev"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "9119a7d8-5eab-497f-8521-727c672e3725",
        "assignerShortName": "cisa-cg",
        "cveId": "CVE-2024-3661",
        "datePublished": "2024-05-06T18:31:21.217Z",
        "dateReserved": "2024-04-11T17:24:22.637Z",
        "dateUpdated": "2024-08-28T19:09:06.995Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.1"
    }

    CVE-2023-44487 (GCVE-0-2023-44487)

    Vulnerability from nvd – Published: 2023-10-10 00:00 – Updated: 2026-07-14 12:03
    VLAI CISA KEVIntel
    Summary
    The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.
    SSVC
    Exploitation: active Automatable: yes Technical Impact: partial
    CISA Coordinator (v2.0.3)
    CWE
    • n/a
    • CWE-400 - Uncontrolled Resource Consumption
    Assigner
    References
    URL Tags
    https://github.com/dotnet/core/blob/e4613450ea0da…
    https://blog.cloudflare.com/technical-breakdown-h…
    https://aws.amazon.com/security/security-bulletin…
    https://cloud.google.com/blog/products/identity-s…
    https://www.nginx.com/blog/http-2-rapid-reset-att…
    https://cloud.google.com/blog/products/identity-s…
    https://news.ycombinator.com/item?id=37831062
    https://blog.cloudflare.com/zero-day-rapid-reset-…
    https://www.phoronix.com/news/HTTP2-Rapid-Reset-Attack
    https://github.com/envoyproxy/envoy/pull/30055
    https://github.com/haproxy/haproxy/issues/2312
    https://github.com/eclipse/jetty.project/issues/10679
    https://forums.swift.org/t/swift-nio-http2-securi…
    https://github.com/nghttp2/nghttp2/pull/1961
    https://github.com/netty/netty/commit/58f75f665aa…
    https://github.com/alibaba/tengine/issues/1872
    https://github.com/apache/tomcat/tree/main/java/o…
    https://news.ycombinator.com/item?id=37830987
    https://news.ycombinator.com/item?id=37830998
    https://github.com/caddyserver/caddy/issues/5877
    https://www.bleepingcomputer.com/news/security/ne…
    https://github.com/bcdannyboy/CVE-2023-44487
    https://github.com/grpc/grpc-go/pull/6703
    https://github.com/icing/mod_h2/blob/0a864782af0a…
    https://github.com/nghttp2/nghttp2/releases/tag/v1.57.0
    https://mailman.nginx.org/pipermail/nginx-devel/2…
    https://my.f5.com/manage/s/article/K000137106
    https://msrc.microsoft.com/blog/2023/10/microsoft…
    https://bugzilla.proxmox.com/show_bug.cgi?id=4988
    https://cgit.freebsd.org/ports/commit/?id=c64c329…
    http://www.openwall.com/lists/oss-security/2023/10/10/7 mailing-list
    http://www.openwall.com/lists/oss-security/2023/10/10/6 mailing-list
    https://seanmonstar.com/post/730794151136935936/h…
    https://github.com/microsoft/CBL-Mariner/pull/6381
    https://groups.google.com/g/golang-announce/c/iNN…
    https://github.com/facebook/proxygen/pull/466
    https://gist.github.com/adulau/7c2bfb8e9cdbe4b35a…
    https://github.com/micrictor/http2-rst-stream
    https://edg.io/lp/blog/resets-leaks-ddos-and-the-…
    https://openssf.org/blog/2023/10/10/http-2-rapid-…
    https://github.com/h2o/h2o/security/advisories/GH…
    https://github.com/h2o/h2o/pull/3291
    https://github.com/nodejs/node/pull/50121
    https://github.com/dotnet/announcements/issues/277
    https://github.com/golang/go/issues/63417
    https://github.com/advisories/GHSA-vx74-f528-fxqg
    https://github.com/apache/trafficserver/pull/10564
    https://msrc.microsoft.com/update-guide/vulnerabi…
    https://tomcat.apache.org/security-10.html#Fixed_…
    https://lists.apache.org/thread/5py8h42mxfsn8l1wy…
    https://www.openwall.com/lists/oss-security/2023/…
    https://www.haproxy.com/blog/haproxy-is-not-affec…
    https://github.com/opensearch-project/data-preppe…
    https://github.com/kubernetes/kubernetes/pull/121120
    https://github.com/oqtane/oqtane.framework/discus…
    https://github.com/advisories/GHSA-xpw8-rcwv-8f8p
    https://netty.io/news/2023/10/10/4-1-100-Final.html
    https://www.cisa.gov/news-events/alerts/2023/10/1…
    https://www.theregister.com/2023/10/10/http2_rapi…
    https://blog.qualys.com/vulnerabilities-threat-re…
    https://news.ycombinator.com/item?id=37837043
    https://github.com/kazu-yamamoto/http2/issues/93
    https://martinthomson.github.io/h2-stream-limits/…
    https://github.com/kazu-yamamoto/http2/commit/f61…
    https://github.com/apache/httpd/blob/afcdbeebbff4…
    https://www.debian.org/security/2023/dsa-5522 vendor-advisory
    https://www.debian.org/security/2023/dsa-5521 vendor-advisory
    https://access.redhat.com/security/cve/cve-2023-44487
    https://github.com/ninenines/cowboy/issues/1615
    https://github.com/varnishcache/varnish-cache/iss…
    https://github.com/tempesta-tech/tempesta/issues/1986
    https://blog.vespa.ai/cve-2023-44487/
    https://github.com/etcd-io/etcd/issues/16740
    https://www.darkreading.com/cloud/internet-wide-z…
    https://istio.io/latest/news/security/istio-secur…
    https://github.com/junkurihara/rust-rpxy/issues/97
    https://bugzilla.suse.com/show_bug.cgi?id=1216123
    https://bugzilla.redhat.com/show_bug.cgi?id=2242803
    https://ubuntu.com/security/CVE-2023-44487
    https://community.traefik.io/t/is-traefik-vulnera…
    https://github.com/advisories/GHSA-qppj-fm5r-hxr3
    https://github.com/apache/httpd-site/pull/10
    https://github.com/projectcontour/contour/pull/5826
    https://github.com/linkerd/website/pull/1695/comm…
    https://github.com/line/armeria/pull/5232
    https://blog.litespeedtech.com/2023/10/11/rapid-r…
    https://security.paloaltonetworks.com/CVE-2023-44487
    https://github.com/akka/akka-http/issues/4323
    https://github.com/openresty/openresty/issues/930
    https://github.com/apache/apisix/issues/10320
    https://github.com/Azure/AKS/issues/3947
    https://github.com/Kong/kong/discussions/11741
    https://github.com/arkrwn/PoC/tree/main/CVE-2023-44487
    https://www.netlify.com/blog/netlify-successfully…
    https://github.com/caddyserver/caddy/releases/tag…
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    http://www.openwall.com/lists/oss-security/2023/10/13/4 mailing-list
    http://www.openwall.com/lists/oss-security/2023/10/13/9 mailing-list
    https://arstechnica.com/security/2023/10/how-ddos…
    https://lists.w3.org/Archives/Public/ietf-http-wg…
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://linkerd.io/2023/10/12/linkerd-cve-2023-44487/
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    https://security.netapp.com/advisory/ntap-2023101…
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    http://www.openwall.com/lists/oss-security/2023/10/18/4 mailing-list
    http://www.openwall.com/lists/oss-security/2023/10/18/8 mailing-list
    http://www.openwall.com/lists/oss-security/2023/10/19/6 mailing-list
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    http://www.openwall.com/lists/oss-security/2023/10/20/8 mailing-list
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    https://www.debian.org/security/2023/dsa-5540 vendor-advisory
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    https://discuss.hashicorp.com/t/hcsec-2023-32-vau…
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    https://www.debian.org/security/2023/dsa-5549 vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://www.debian.org/security/2023/dsa-5558 vendor-advisory
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    https://security.gentoo.org/glsa/202311-09 vendor-advisory
    https://www.debian.org/security/2023/dsa-5570 vendor-advisory
    https://security.netapp.com/advisory/ntap-2024042…
    https://security.netapp.com/advisory/ntap-2024062…
    https://security.netapp.com/advisory/ntap-2024062…
    https://github.com/grpc/grpc/releases/tag/v1.59.2
    https://sec.cloudapps.cisco.com/security/center/c…
    https://www.cisa.gov/known-exploited-vulnerabilit… government-resource
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://www.vicarius.io/vsociety/posts/rapid-rese…
    http://www.openwall.com/lists/oss-security/2025/08/13/6
    https://cert-portal.siemens.com/productcert/html/…
    https://cert-portal.siemens.com/productcert/html/…
    https://cert-portal.siemens.com/productcert/html/…
    https://cert-portal.siemens.com/productcert/html/…
    https://cert-portal.siemens.com/productcert/html/…
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "affected": [
              {
                "cpes": [
                  "cpe:2.3:a:ietf:http:2.0:*:*:*:*:*:*:*"
                ],
                "defaultStatus": "unknown",
                "product": "http",
                "vendor": "ietf",
                "versions": [
                  {
                    "status": "affected",
                    "version": "2.0"
                  }
                ]
              }
            ],
            "metrics": [
              {
                "cvssV3_1": {
                  "attackComplexity": "LOW",
                  "attackVector": "NETWORK",
                  "availabilityImpact": "HIGH",
                  "baseScore": 7.5,
                  "baseSeverity": "HIGH",
                  "confidentialityImpact": "NONE",
                  "integrityImpact": "NONE",
                  "privilegesRequired": "NONE",
                  "scope": "UNCHANGED",
                  "userInteraction": "NONE",
                  "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
                  "version": "3.1"
                }
              },
              {
                "other": {
                  "content": {
                    "id": "CVE-2023-44487",
                    "options": [
                      {
                        "Exploitation": "active"
                      },
                      {
                        "Automatable": "yes"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2024-07-23T20:34:21.334116Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              },
              {
                "other": {
                  "content": {
                    "dateAdded": "2023-10-10",
                    "reference": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2023-44487"
                  },
                  "type": "kev"
                }
              }
            ],
            "problemTypes": [
              {
                "descriptions": [
                  {
                    "cweId": "CWE-400",
                    "description": "CWE-400 Uncontrolled Resource Consumption",
                    "lang": "en",
                    "type": "CWE"
                  }
                ]
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-10-21T23:05:35.187Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "references": [
              {
                "tags": [
                  "government-resource"
                ],
                "url": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2023-44487"
              }
            ],
            "timeline": [
              {
                "lang": "en",
                "time": "2023-10-10T00:00:00.000Z",
                "value": "CVE-2023-44487 added to CISA KEV"
              }
            ],
            "title": "CISA ADP Vulnrichment"
          },
          {
            "providerMetadata": {
              "dateUpdated": "2025-11-04T21:08:27.383Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/dotnet/core/blob/e4613450ea0da7fd2fc6b61dfb2c1c1dec1ce9ec/release-notes/6.0/6.0.23/6.0.23.md?plain=1#L73"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://blog.cloudflare.com/technical-breakdown-http2-rapid-reset-ddos-attack/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://aws.amazon.com/security/security-bulletins/AWS-2023-011/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://cloud.google.com/blog/products/identity-security/how-it-works-the-novel-http2-rapid-reset-ddos-attack"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.nginx.com/blog/http-2-rapid-reset-attack-impacting-f5-nginx-products/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://cloud.google.com/blog/products/identity-security/google-cloud-mitigated-largest-ddos-attack-peaking-above-398-million-rps/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://news.ycombinator.com/item?id=37831062"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://blog.cloudflare.com/zero-day-rapid-reset-http2-record-breaking-ddos-attack/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.phoronix.com/news/HTTP2-Rapid-Reset-Attack"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/envoyproxy/envoy/pull/30055"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/haproxy/haproxy/issues/2312"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/eclipse/jetty.project/issues/10679"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://forums.swift.org/t/swift-nio-http2-security-update-cve-2023-44487-http-2-dos/67764"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/nghttp2/nghttp2/pull/1961"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/netty/netty/commit/58f75f665aa81a8cbcf6ffa74820042a285c5e61"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/alibaba/tengine/issues/1872"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/apache/tomcat/tree/main/java/org/apache/coyote/http2"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://news.ycombinator.com/item?id=37830987"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://news.ycombinator.com/item?id=37830998"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/caddyserver/caddy/issues/5877"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.bleepingcomputer.com/news/security/new-http-2-rapid-reset-zero-day-attack-breaks-ddos-records/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/bcdannyboy/CVE-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/grpc/grpc-go/pull/6703"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/icing/mod_h2/blob/0a864782af0a942aa2ad4ed960a6b32cd35bcf0a/mod_http2/README.md?plain=1#L239-L244"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/nghttp2/nghttp2/releases/tag/v1.57.0"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://mailman.nginx.org/pipermail/nginx-devel/2023-October/S36Q5HBXR7CAIMPLLPRSSSYR4PCMWILK.html"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://my.f5.com/manage/s/article/K000137106"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://msrc.microsoft.com/blog/2023/10/microsoft-response-to-distributed-denial-of-service-ddos-attacks-against-http/2/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://bugzilla.proxmox.com/show_bug.cgi?id=4988"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://cgit.freebsd.org/ports/commit/?id=c64c329c2c1752f46b73e3e6ce9f4329be6629f9"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://seanmonstar.com/post/730794151136935936/hyper-http2-rapid-reset-unaffected"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/microsoft/CBL-Mariner/pull/6381"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://groups.google.com/g/golang-announce/c/iNNxDTCjZvo"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/facebook/proxygen/pull/466"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://gist.github.com/adulau/7c2bfb8e9cdbe4b35a5e131c66a0c088"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/micrictor/http2-rst-stream"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://edg.io/lp/blog/resets-leaks-ddos-and-the-tale-of-a-hidden-cve"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://openssf.org/blog/2023/10/10/http-2-rapid-reset-vulnerability-highlights-need-for-rapid-response/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/h2o/h2o/security/advisories/GHSA-2m7v-gc89-fjqf"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/h2o/h2o/pull/3291"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/nodejs/node/pull/50121"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/dotnet/announcements/issues/277"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/golang/go/issues/63417"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/advisories/GHSA-vx74-f528-fxqg"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/apache/trafficserver/pull/10564"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://tomcat.apache.org/security-10.html#Fixed_in_Apache_Tomcat_10.1.14"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://lists.apache.org/thread/5py8h42mxfsn8l1wy6o41xwhsjlsd87q"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.openwall.com/lists/oss-security/2023/10/10/6"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.haproxy.com/blog/haproxy-is-not-affected-by-the-http-2-rapid-reset-attack-cve-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/opensearch-project/data-prepper/issues/3474"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/kubernetes/kubernetes/pull/121120"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/oqtane/oqtane.framework/discussions/3367"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/advisories/GHSA-xpw8-rcwv-8f8p"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://netty.io/news/2023/10/10/4-1-100-Final.html"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.cisa.gov/news-events/alerts/2023/10/10/http2-rapid-reset-vulnerability-cve-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.theregister.com/2023/10/10/http2_rapid_reset_zeroday/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://blog.qualys.com/vulnerabilities-threat-research/2023/10/10/cve-2023-44487-http-2-rapid-reset-attack"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://news.ycombinator.com/item?id=37837043"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/kazu-yamamoto/http2/issues/93"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://martinthomson.github.io/h2-stream-limits/draft-thomson-httpbis-h2-stream-limits.html"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/kazu-yamamoto/http2/commit/f61d41a502bd0f60eb24e1ce14edc7b6df6722a1"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/apache/httpd/blob/afcdbeebbff4b0c50ea26cdd16e178c0d1f24152/modules/http2/h2_mplx.c#L1101-L1113"
              },
              {
                "name": "DSA-5522",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://www.debian.org/security/2023/dsa-5522"
              },
              {
                "name": "DSA-5521",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://www.debian.org/security/2023/dsa-5521"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://access.redhat.com/security/cve/cve-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/ninenines/cowboy/issues/1615"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/varnishcache/varnish-cache/issues/3996"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/tempesta-tech/tempesta/issues/1986"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://blog.vespa.ai/cve-2023-44487/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/etcd-io/etcd/issues/16740"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.darkreading.com/cloud/internet-wide-zero-day-bug-fuels-largest-ever-ddos-event"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://istio.io/latest/news/security/istio-security-2023-004/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/junkurihara/rust-rpxy/issues/97"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://bugzilla.suse.com/show_bug.cgi?id=1216123"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2242803"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://ubuntu.com/security/CVE-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://community.traefik.io/t/is-traefik-vulnerable-to-cve-2023-44487/20125"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/advisories/GHSA-qppj-fm5r-hxr3"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/apache/httpd-site/pull/10"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/projectcontour/contour/pull/5826"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/linkerd/website/pull/1695/commits/4b9c6836471bc8270ab48aae6fd2181bc73fd632"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/line/armeria/pull/5232"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://blog.litespeedtech.com/2023/10/11/rapid-reset-http-2-vulnerablilty/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://security.paloaltonetworks.com/CVE-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/akka/akka-http/issues/4323"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/openresty/openresty/issues/930"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/apache/apisix/issues/10320"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/Azure/AKS/issues/3947"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/Kong/kong/discussions/11741"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/arkrwn/PoC/tree/main/CVE-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.netlify.com/blog/netlify-successfully-mitigates-cve-2023-44487/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/caddyserver/caddy/releases/tag/v2.7.5"
              },
              {
                "name": "[debian-lts-announce] 20231013 [SECURITY] [DLA 3617-1] tomcat9 security update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00020.html"
              },
              {
                "name": "[oss-security] 20231013 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2023/10/13/4"
              },
              {
                "name": "[oss-security] 20231013 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2023/10/13/9"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://arstechnica.com/security/2023/10/how-ddosers-used-the-http-2-protocol-to-deliver-attacks-of-unprecedented-size/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://lists.w3.org/Archives/Public/ietf-http-wg/2023OctDec/0025.html"
              },
              {
                "name": "FEDORA-2023-ed2642fd58",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JMEXY22BFG5Q64HQCM5CK2Q7KDKVV4TY/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://linkerd.io/2023/10/12/linkerd-cve-2023-44487/"
              },
              {
                "name": "[debian-lts-announce] 20231016 [SECURITY] [DLA 3621-1] nghttp2 security update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00023.html"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://security.netapp.com/advisory/ntap-20231016-0001/"
              },
              {
                "name": "[debian-lts-announce] 20231016 [SECURITY] [DLA 3617-2] tomcat9 regression update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00024.html"
              },
              {
                "name": "[oss-security] 20231018 Vulnerability in Jenkins",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2023/10/18/4"
              },
              {
                "name": "[oss-security] 20231018 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2023/10/18/8"
              },
              {
                "name": "[oss-security] 20231019 CVE-2023-45802: Apache HTTP Server: HTTP/2 stream memory not reclaimed right away on RST",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2023/10/19/6"
              },
              {
                "name": "FEDORA-2023-54fadada12",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/ZKQSIKIAT5TJ3WSLU3RDBQ35YX4GY4V3/"
              },
              {
                "name": "FEDORA-2023-5ff7bf1dd8",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JIZSEFC3YKCGABA2BZW6ZJRMDZJMB7PJ/"
              },
              {
                "name": "[oss-security] 20231020 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2023/10/20/8"
              },
              {
                "name": "FEDORA-2023-17efd3f2cd",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/WLPRQ5TWUQQXYWBJM7ECYDAIL2YVKIUH/"
              },
              {
                "name": "FEDORA-2023-d5030c983c",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/E72T67UPDRXHIDLO3OROR25YAMN4GGW5/"
              },
              {
                "name": "FEDORA-2023-0259c3f26f",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/BFQD3KUEMFBHPAPBGLWQC34L4OWL5HAZ/"
              },
              {
                "name": "FEDORA-2023-2a9214af5f",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/ZLU6U2R2IC2K64NDPNMV55AUAO65MAF4/"
              },
              {
                "name": "FEDORA-2023-e9c04d81c1",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X6QXN4ORIVF6XBW4WWFE7VNPVC74S45Y/"
              },
              {
                "name": "FEDORA-2023-f66fc0f62a",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/LKYHSZQFDNR7RSA7LHVLLIAQMVYCUGBG/"
              },
              {
                "name": "FEDORA-2023-4d2fd884ea",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/FNA62Q767CFAFHBCDKYNPBMZWB7TWYVU/"
              },
              {
                "name": "FEDORA-2023-b2c50535cb",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/LNMZJCDHGLJJLXO4OXWJMTVQRNWOC7UL/"
              },
              {
                "name": "FEDORA-2023-fe53e13b5b",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/KSEGD2IWKNUO3DWY4KQGUQM5BISRWHQE/"
              },
              {
                "name": "FEDORA-2023-4bf641255e",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CLB4TW7KALB3EEQWNWCN7OUIWWVWWCG2/"
              },
              {
                "name": "[debian-lts-announce] 20231030 [SECURITY] [DLA 3641-1] jetty9 security update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00045.html"
              },
              {
                "name": "DSA-5540",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://www.debian.org/security/2023/dsa-5540"
              },
              {
                "name": "[debian-lts-announce] 20231031 [SECURITY] [DLA 3638-1] h2o security update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00047.html"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://discuss.hashicorp.com/t/hcsec-2023-32-vault-consul-and-boundary-affected-by-http-2-rapid-reset-denial-of-service-vulnerability-cve-2023-44487/59715"
              },
              {
                "name": "FEDORA-2023-1caffb88af",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/VHUHTSXLXGXS7JYKBXTA3VINUPHTNGVU/"
              },
              {
                "name": "FEDORA-2023-3f70b8d406",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/VSRDIV77HNKUSM7SJC5BKE5JSHLHU2NK/"
              },
              {
                "name": "FEDORA-2023-7b52921cae",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/3N4NJ7FR4X4FPZUGNTQAPSTVB2HB2Y4A/"
              },
              {
                "name": "FEDORA-2023-7934802344",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/ZB43REMKRQR62NJEI7I5NQ4FSXNLBKRT/"
              },
              {
                "name": "FEDORA-2023-dbe64661af",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/HT7T2R4MQKLIF4ODV4BDLPARWFPCJ5CZ/"
              },
              {
                "name": "FEDORA-2023-822aab0a5a",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/XFOIBB4YFICHDM7IBOP7PWXW3FX4HLL2/"
              },
              {
                "name": "[debian-lts-announce] 20231105 [SECURITY] [DLA 3645-1] trafficserver security update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/11/msg00001.html"
              },
              {
                "name": "DSA-5549",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://www.debian.org/security/2023/dsa-5549"
              },
              {
                "name": "FEDORA-2023-c0c6a91330",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/2MBEPPC36UBVOZZNAXFHKLFGSLCMN5LI/"
              },
              {
                "name": "FEDORA-2023-492b7be466",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/WE2I52RHNNU42PX6NZ2RBUHSFFJ2LVZX/"
              },
              {
                "name": "DSA-5558",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://www.debian.org/security/2023/dsa-5558"
              },
              {
                "name": "[debian-lts-announce] 20231119 [SECURITY] [DLA 3656-1] netty security update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/11/msg00012.html"
              },
              {
                "name": "GLSA-202311-09",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://security.gentoo.org/glsa/202311-09"
              },
              {
                "name": "DSA-5570",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://www.debian.org/security/2023/dsa-5570"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://security.netapp.com/advisory/ntap-20240426-0007/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://security.netapp.com/advisory/ntap-20240621-0006/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://security.netapp.com/advisory/ntap-20240621-0007/"
              },
              {
                "url": "https://www.vicarius.io/vsociety/posts/rapid-reset-cve-2023-44487-dos-in-http2-understanding-the-root-cause"
              },
              {
                "url": "http://www.openwall.com/lists/oss-security/2025/08/13/6"
              }
            ],
            "title": "CVE Program Container"
          },
          {
            "affected": [
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM APE1808",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIMATIC S7-1500 CPU 1518-4 PN/DP MFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "V3.1.5",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIMATIC S7-1500 CPU 1518-4 PN/DP MFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "V3.1.5",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIMATIC S7-1500 CPU 1518F-4 PN/DP MFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "V3.1.5",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIMATIC S7-1500 CPU 1518F-4 PN/DP MFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "V3.1.5",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SINEC NMS",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPLUS S7-1500 CPU 1518-4 PN/DP MFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "V3.1.5",
                    "versionType": "custom"
                  }
                ]
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2026-07-14T12:03:17.389Z",
              "orgId": "0b142b55-0307-4c5a-b3c9-f314f3fb7c5e",
              "shortName": "siemens-SADP"
            },
            "references": [
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-832273.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-341067.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-784301.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-915275.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-082556.html"
              }
            ],
            "x_adpType": "supplier"
          }
        ],
        "cna": {
          "affected": [
            {
              "product": "n/a",
              "vendor": "n/a",
              "versions": [
                {
                  "status": "affected",
                  "version": "n/a"
                }
              ]
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023."
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "description": "n/a",
                  "lang": "en",
                  "type": "text"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-06-07T20:05:34.376Z",
            "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
            "shortName": "mitre"
          },
          "references": [
            {
              "url": "https://github.com/dotnet/core/blob/e4613450ea0da7fd2fc6b61dfb2c1c1dec1ce9ec/release-notes/6.0/6.0.23/6.0.23.md?plain=1#L73"
            },
            {
              "url": "https://blog.cloudflare.com/technical-breakdown-http2-rapid-reset-ddos-attack/"
            },
            {
              "url": "https://aws.amazon.com/security/security-bulletins/AWS-2023-011/"
            },
            {
              "url": "https://cloud.google.com/blog/products/identity-security/how-it-works-the-novel-http2-rapid-reset-ddos-attack"
            },
            {
              "url": "https://www.nginx.com/blog/http-2-rapid-reset-attack-impacting-f5-nginx-products/"
            },
            {
              "url": "https://cloud.google.com/blog/products/identity-security/google-cloud-mitigated-largest-ddos-attack-peaking-above-398-million-rps/"
            },
            {
              "url": "https://news.ycombinator.com/item?id=37831062"
            },
            {
              "url": "https://blog.cloudflare.com/zero-day-rapid-reset-http2-record-breaking-ddos-attack/"
            },
            {
              "url": "https://www.phoronix.com/news/HTTP2-Rapid-Reset-Attack"
            },
            {
              "url": "https://github.com/envoyproxy/envoy/pull/30055"
            },
            {
              "url": "https://github.com/haproxy/haproxy/issues/2312"
            },
            {
              "url": "https://github.com/eclipse/jetty.project/issues/10679"
            },
            {
              "url": "https://forums.swift.org/t/swift-nio-http2-security-update-cve-2023-44487-http-2-dos/67764"
            },
            {
              "url": "https://github.com/nghttp2/nghttp2/pull/1961"
            },
            {
              "url": "https://github.com/netty/netty/commit/58f75f665aa81a8cbcf6ffa74820042a285c5e61"
            },
            {
              "url": "https://github.com/alibaba/tengine/issues/1872"
            },
            {
              "url": "https://github.com/apache/tomcat/tree/main/java/org/apache/coyote/http2"
            },
            {
              "url": "https://news.ycombinator.com/item?id=37830987"
            },
            {
              "url": "https://news.ycombinator.com/item?id=37830998"
            },
            {
              "url": "https://github.com/caddyserver/caddy/issues/5877"
            },
            {
              "url": "https://www.bleepingcomputer.com/news/security/new-http-2-rapid-reset-zero-day-attack-breaks-ddos-records/"
            },
            {
              "url": "https://github.com/bcdannyboy/CVE-2023-44487"
            },
            {
              "url": "https://github.com/grpc/grpc-go/pull/6703"
            },
            {
              "url": "https://github.com/icing/mod_h2/blob/0a864782af0a942aa2ad4ed960a6b32cd35bcf0a/mod_http2/README.md?plain=1#L239-L244"
            },
            {
              "url": "https://github.com/nghttp2/nghttp2/releases/tag/v1.57.0"
            },
            {
              "url": "https://mailman.nginx.org/pipermail/nginx-devel/2023-October/S36Q5HBXR7CAIMPLLPRSSSYR4PCMWILK.html"
            },
            {
              "url": "https://my.f5.com/manage/s/article/K000137106"
            },
            {
              "url": "https://msrc.microsoft.com/blog/2023/10/microsoft-response-to-distributed-denial-of-service-ddos-attacks-against-http/2/"
            },
            {
              "url": "https://bugzilla.proxmox.com/show_bug.cgi?id=4988"
            },
            {
              "url": "https://cgit.freebsd.org/ports/commit/?id=c64c329c2c1752f46b73e3e6ce9f4329be6629f9"
            },
            {
              "name": "[oss-security] 20231010 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/10/7"
            },
            {
              "name": "[oss-security] 20231010 CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/10/6"
            },
            {
              "url": "https://seanmonstar.com/post/730794151136935936/hyper-http2-rapid-reset-unaffected"
            },
            {
              "url": "https://github.com/microsoft/CBL-Mariner/pull/6381"
            },
            {
              "url": "https://groups.google.com/g/golang-announce/c/iNNxDTCjZvo"
            },
            {
              "url": "https://github.com/facebook/proxygen/pull/466"
            },
            {
              "url": "https://gist.github.com/adulau/7c2bfb8e9cdbe4b35a5e131c66a0c088"
            },
            {
              "url": "https://github.com/micrictor/http2-rst-stream"
            },
            {
              "url": "https://edg.io/lp/blog/resets-leaks-ddos-and-the-tale-of-a-hidden-cve"
            },
            {
              "url": "https://openssf.org/blog/2023/10/10/http-2-rapid-reset-vulnerability-highlights-need-for-rapid-response/"
            },
            {
              "url": "https://github.com/h2o/h2o/security/advisories/GHSA-2m7v-gc89-fjqf"
            },
            {
              "url": "https://github.com/h2o/h2o/pull/3291"
            },
            {
              "url": "https://github.com/nodejs/node/pull/50121"
            },
            {
              "url": "https://github.com/dotnet/announcements/issues/277"
            },
            {
              "url": "https://github.com/golang/go/issues/63417"
            },
            {
              "url": "https://github.com/advisories/GHSA-vx74-f528-fxqg"
            },
            {
              "url": "https://github.com/apache/trafficserver/pull/10564"
            },
            {
              "url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-44487"
            },
            {
              "url": "https://tomcat.apache.org/security-10.html#Fixed_in_Apache_Tomcat_10.1.14"
            },
            {
              "url": "https://lists.apache.org/thread/5py8h42mxfsn8l1wy6o41xwhsjlsd87q"
            },
            {
              "url": "https://www.openwall.com/lists/oss-security/2023/10/10/6"
            },
            {
              "url": "https://www.haproxy.com/blog/haproxy-is-not-affected-by-the-http-2-rapid-reset-attack-cve-2023-44487"
            },
            {
              "url": "https://github.com/opensearch-project/data-prepper/issues/3474"
            },
            {
              "url": "https://github.com/kubernetes/kubernetes/pull/121120"
            },
            {
              "url": "https://github.com/oqtane/oqtane.framework/discussions/3367"
            },
            {
              "url": "https://github.com/advisories/GHSA-xpw8-rcwv-8f8p"
            },
            {
              "url": "https://netty.io/news/2023/10/10/4-1-100-Final.html"
            },
            {
              "url": "https://www.cisa.gov/news-events/alerts/2023/10/10/http2-rapid-reset-vulnerability-cve-2023-44487"
            },
            {
              "url": "https://www.theregister.com/2023/10/10/http2_rapid_reset_zeroday/"
            },
            {
              "url": "https://blog.qualys.com/vulnerabilities-threat-research/2023/10/10/cve-2023-44487-http-2-rapid-reset-attack"
            },
            {
              "url": "https://news.ycombinator.com/item?id=37837043"
            },
            {
              "url": "https://github.com/kazu-yamamoto/http2/issues/93"
            },
            {
              "url": "https://martinthomson.github.io/h2-stream-limits/draft-thomson-httpbis-h2-stream-limits.html"
            },
            {
              "url": "https://github.com/kazu-yamamoto/http2/commit/f61d41a502bd0f60eb24e1ce14edc7b6df6722a1"
            },
            {
              "url": "https://github.com/apache/httpd/blob/afcdbeebbff4b0c50ea26cdd16e178c0d1f24152/modules/http2/h2_mplx.c#L1101-L1113"
            },
            {
              "name": "DSA-5522",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://www.debian.org/security/2023/dsa-5522"
            },
            {
              "name": "DSA-5521",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://www.debian.org/security/2023/dsa-5521"
            },
            {
              "url": "https://access.redhat.com/security/cve/cve-2023-44487"
            },
            {
              "url": "https://github.com/ninenines/cowboy/issues/1615"
            },
            {
              "url": "https://github.com/varnishcache/varnish-cache/issues/3996"
            },
            {
              "url": "https://github.com/tempesta-tech/tempesta/issues/1986"
            },
            {
              "url": "https://blog.vespa.ai/cve-2023-44487/"
            },
            {
              "url": "https://github.com/etcd-io/etcd/issues/16740"
            },
            {
              "url": "https://www.darkreading.com/cloud/internet-wide-zero-day-bug-fuels-largest-ever-ddos-event"
            },
            {
              "url": "https://istio.io/latest/news/security/istio-security-2023-004/"
            },
            {
              "url": "https://github.com/junkurihara/rust-rpxy/issues/97"
            },
            {
              "url": "https://bugzilla.suse.com/show_bug.cgi?id=1216123"
            },
            {
              "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2242803"
            },
            {
              "url": "https://ubuntu.com/security/CVE-2023-44487"
            },
            {
              "url": "https://community.traefik.io/t/is-traefik-vulnerable-to-cve-2023-44487/20125"
            },
            {
              "url": "https://github.com/advisories/GHSA-qppj-fm5r-hxr3"
            },
            {
              "url": "https://github.com/apache/httpd-site/pull/10"
            },
            {
              "url": "https://github.com/projectcontour/contour/pull/5826"
            },
            {
              "url": "https://github.com/linkerd/website/pull/1695/commits/4b9c6836471bc8270ab48aae6fd2181bc73fd632"
            },
            {
              "url": "https://github.com/line/armeria/pull/5232"
            },
            {
              "url": "https://blog.litespeedtech.com/2023/10/11/rapid-reset-http-2-vulnerablilty/"
            },
            {
              "url": "https://security.paloaltonetworks.com/CVE-2023-44487"
            },
            {
              "url": "https://github.com/akka/akka-http/issues/4323"
            },
            {
              "url": "https://github.com/openresty/openresty/issues/930"
            },
            {
              "url": "https://github.com/apache/apisix/issues/10320"
            },
            {
              "url": "https://github.com/Azure/AKS/issues/3947"
            },
            {
              "url": "https://github.com/Kong/kong/discussions/11741"
            },
            {
              "url": "https://github.com/arkrwn/PoC/tree/main/CVE-2023-44487"
            },
            {
              "url": "https://www.netlify.com/blog/netlify-successfully-mitigates-cve-2023-44487/"
            },
            {
              "url": "https://github.com/caddyserver/caddy/releases/tag/v2.7.5"
            },
            {
              "name": "[debian-lts-announce] 20231013 [SECURITY] [DLA 3617-1] tomcat9 security update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00020.html"
            },
            {
              "name": "[oss-security] 20231013 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/13/4"
            },
            {
              "name": "[oss-security] 20231013 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/13/9"
            },
            {
              "url": "https://arstechnica.com/security/2023/10/how-ddosers-used-the-http-2-protocol-to-deliver-attacks-of-unprecedented-size/"
            },
            {
              "url": "https://lists.w3.org/Archives/Public/ietf-http-wg/2023OctDec/0025.html"
            },
            {
              "name": "FEDORA-2023-ed2642fd58",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JMEXY22BFG5Q64HQCM5CK2Q7KDKVV4TY/"
            },
            {
              "url": "https://linkerd.io/2023/10/12/linkerd-cve-2023-44487/"
            },
            {
              "name": "[debian-lts-announce] 20231016 [SECURITY] [DLA 3621-1] nghttp2 security update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00023.html"
            },
            {
              "url": "https://security.netapp.com/advisory/ntap-20231016-0001/"
            },
            {
              "name": "[debian-lts-announce] 20231016 [SECURITY] [DLA 3617-2] tomcat9 regression update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00024.html"
            },
            {
              "name": "[oss-security] 20231018 Vulnerability in Jenkins",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/18/4"
            },
            {
              "name": "[oss-security] 20231018 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/18/8"
            },
            {
              "name": "[oss-security] 20231019 CVE-2023-45802: Apache HTTP Server: HTTP/2 stream memory not reclaimed right away on RST",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/19/6"
            },
            {
              "name": "FEDORA-2023-54fadada12",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZKQSIKIAT5TJ3WSLU3RDBQ35YX4GY4V3/"
            },
            {
              "name": "FEDORA-2023-5ff7bf1dd8",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JIZSEFC3YKCGABA2BZW6ZJRMDZJMB7PJ/"
            },
            {
              "name": "[oss-security] 20231020 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/20/8"
            },
            {
              "name": "FEDORA-2023-17efd3f2cd",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WLPRQ5TWUQQXYWBJM7ECYDAIL2YVKIUH/"
            },
            {
              "name": "FEDORA-2023-d5030c983c",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/E72T67UPDRXHIDLO3OROR25YAMN4GGW5/"
            },
            {
              "name": "FEDORA-2023-0259c3f26f",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BFQD3KUEMFBHPAPBGLWQC34L4OWL5HAZ/"
            },
            {
              "name": "FEDORA-2023-2a9214af5f",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZLU6U2R2IC2K64NDPNMV55AUAO65MAF4/"
            },
            {
              "name": "FEDORA-2023-e9c04d81c1",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/X6QXN4ORIVF6XBW4WWFE7VNPVC74S45Y/"
            },
            {
              "name": "FEDORA-2023-f66fc0f62a",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LKYHSZQFDNR7RSA7LHVLLIAQMVYCUGBG/"
            },
            {
              "name": "FEDORA-2023-4d2fd884ea",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FNA62Q767CFAFHBCDKYNPBMZWB7TWYVU/"
            },
            {
              "name": "FEDORA-2023-b2c50535cb",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LNMZJCDHGLJJLXO4OXWJMTVQRNWOC7UL/"
            },
            {
              "name": "FEDORA-2023-fe53e13b5b",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KSEGD2IWKNUO3DWY4KQGUQM5BISRWHQE/"
            },
            {
              "name": "FEDORA-2023-4bf641255e",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CLB4TW7KALB3EEQWNWCN7OUIWWVWWCG2/"
            },
            {
              "name": "[debian-lts-announce] 20231030 [SECURITY] [DLA 3641-1] jetty9 security update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00045.html"
            },
            {
              "name": "DSA-5540",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://www.debian.org/security/2023/dsa-5540"
            },
            {
              "name": "[debian-lts-announce] 20231031 [SECURITY] [DLA 3638-1] h2o security update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00047.html"
            },
            {
              "url": "https://discuss.hashicorp.com/t/hcsec-2023-32-vault-consul-and-boundary-affected-by-http-2-rapid-reset-denial-of-service-vulnerability-cve-2023-44487/59715"
            },
            {
              "name": "FEDORA-2023-1caffb88af",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VHUHTSXLXGXS7JYKBXTA3VINUPHTNGVU/"
            },
            {
              "name": "FEDORA-2023-3f70b8d406",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VSRDIV77HNKUSM7SJC5BKE5JSHLHU2NK/"
            },
            {
              "name": "FEDORA-2023-7b52921cae",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3N4NJ7FR4X4FPZUGNTQAPSTVB2HB2Y4A/"
            },
            {
              "name": "FEDORA-2023-7934802344",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZB43REMKRQR62NJEI7I5NQ4FSXNLBKRT/"
            },
            {
              "name": "FEDORA-2023-dbe64661af",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HT7T2R4MQKLIF4ODV4BDLPARWFPCJ5CZ/"
            },
            {
              "name": "FEDORA-2023-822aab0a5a",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XFOIBB4YFICHDM7IBOP7PWXW3FX4HLL2/"
            },
            {
              "name": "[debian-lts-announce] 20231105 [SECURITY] [DLA 3645-1] trafficserver security update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/11/msg00001.html"
            },
            {
              "name": "DSA-5549",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://www.debian.org/security/2023/dsa-5549"
            },
            {
              "name": "FEDORA-2023-c0c6a91330",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2MBEPPC36UBVOZZNAXFHKLFGSLCMN5LI/"
            },
            {
              "name": "FEDORA-2023-492b7be466",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WE2I52RHNNU42PX6NZ2RBUHSFFJ2LVZX/"
            },
            {
              "name": "DSA-5558",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://www.debian.org/security/2023/dsa-5558"
            },
            {
              "name": "[debian-lts-announce] 20231119 [SECURITY] [DLA 3656-1] netty security update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/11/msg00012.html"
            },
            {
              "name": "GLSA-202311-09",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://security.gentoo.org/glsa/202311-09"
            },
            {
              "name": "DSA-5570",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://www.debian.org/security/2023/dsa-5570"
            },
            {
              "url": "https://security.netapp.com/advisory/ntap-20240426-0007/"
            },
            {
              "url": "https://security.netapp.com/advisory/ntap-20240621-0006/"
            },
            {
              "url": "https://security.netapp.com/advisory/ntap-20240621-0007/"
            },
            {
              "url": "https://github.com/grpc/grpc/releases/tag/v1.59.2"
            },
            {
              "url": "https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-http2-reset-d8Kf32vZ"
            }
          ]
        }
      },
      "cveMetadata": {
        "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
        "assignerShortName": "mitre",
        "cveId": "CVE-2023-44487",
        "datePublished": "2023-10-10T00:00:00.000Z",
        "dateReserved": "2023-09-29T00:00:00.000Z",
        "dateUpdated": "2026-07-14T12:03:17.389Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.2"
    }

    CVE-2025-27371 (GCVE-0-2025-27371)

    Vulnerability from cvelistv5 – Published: 2025-03-03 00:00 – Updated: 2025-04-25 14:42
    VLAI
    Summary
    In certain IETF OAuth 2.0-related specifications, when the JSON Web Token Profile for OAuth 2.0 Client Authentication mechanism is used, there are ambiguities in the audience values of JWTs sent to authorization servers. The affected RFCs may include RFC 7523, and also RFC 7521, RFC 7522, RFC 9101 (JAR), and RFC 9126 (PAR).
    SSVC
    Exploitation: none Automatable: no Technical Impact: partial
    CISA Coordinator (v2.0.3)
    CWE
    • CWE-305 - Authentication Bypass by Primary Weakness
    Assigner
    Impacted products
    Vendor Product Version
    IETF RFC 7523 Affected: 7523 (custom)
    Create a notification for this product.
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "metrics": [
              {
                "other": {
                  "content": {
                    "id": "CVE-2025-27371",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "no"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2025-03-04T16:49:31.778471Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-03-04T16:49:57.268Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          }
        ],
        "cna": {
          "affected": [
            {
              "defaultStatus": "unknown",
              "product": "RFC 7523",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "7523",
                  "versionType": "custom"
                }
              ]
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "In certain IETF OAuth 2.0-related specifications, when the JSON Web Token Profile for OAuth 2.0 Client Authentication mechanism is used, there are ambiguities in the audience values of JWTs sent to authorization servers. The affected RFCs may include RFC 7523, and also RFC 7521, RFC 7522, RFC 9101 (JAR), and RFC 9126 (PAR)."
            }
          ],
          "metrics": [
            {
              "cvssV3_1": {
                "baseScore": 6.9,
                "baseSeverity": "MEDIUM",
                "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:L/I:H/A:N",
                "version": "3.1"
              }
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "cweId": "CWE-305",
                  "description": "CWE-305 Authentication Bypass by Primary Weakness",
                  "lang": "en",
                  "type": "CWE"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-04-25T14:42:06.366Z",
            "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
            "shortName": "mitre"
          },
          "references": [
            {
              "url": "https://openid.net/wp-content/uploads/2025/01/OIDF-Responsible-Disclosure-Notice-on-Security-Vulnerability-for-private_key_jwt.pdf"
            },
            {
              "url": "https://openid.net/notice-of-a-security-vulnerability/"
            },
            {
              "url": "https://talks.secworkshop.events/osw2025/talk/R8D9BS/"
            },
            {
              "url": "https://github.com/OWASP/ASVS/issues/2678"
            },
            {
              "url": "https://eprint.iacr.org/2025/629"
            }
          ],
          "x_generator": {
            "engine": "enrichogram 0.0.1"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
        "assignerShortName": "mitre",
        "cveId": "CVE-2025-27371",
        "datePublished": "2025-03-03T00:00:00.000Z",
        "dateReserved": "2025-02-23T00:00:00.000Z",
        "dateUpdated": "2025-04-25T14:42:06.366Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.1"
    }

    CVE-2024-7596 (GCVE-0-2024-7596)

    Vulnerability from cvelistv5 – Published: 2025-02-05 17:37 – Updated: 2025-11-03 20:56
    VLAI
    Title
    Generic UDP Encapsulation (GUE) (IETF Draft) do not validate or verify the source of a network packet
    Summary
    Proposed Generic UDP Encapsulation (GUE) (IETF Draft) do not validate or verify the source of a network packet allowing an attacker to spoof and route arbitrary traffic via an exposed network interface that can lead to spoofing, access control bypass, and other unexpected network behaviors. This can be considered similar to CVE-2020-10136.
    SSVC
    Exploitation: none Automatable: yes Technical Impact: partial
    CISA Coordinator (v2.0.3)
    Assigner
    Impacted products
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "metrics": [
              {
                "cvssV3_1": {
                  "attackComplexity": "LOW",
                  "attackVector": "NETWORK",
                  "availabilityImpact": "LOW",
                  "baseScore": 5.3,
                  "baseSeverity": "MEDIUM",
                  "confidentialityImpact": "NONE",
                  "integrityImpact": "NONE",
                  "privilegesRequired": "NONE",
                  "scope": "UNCHANGED",
                  "userInteraction": "NONE",
                  "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
                  "version": "3.1"
                }
              },
              {
                "other": {
                  "content": {
                    "id": "CVE-2024-7596",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "yes"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2025-02-05T18:59:09.631255Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-02-06T21:24:39.110Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          },
          {
            "providerMetadata": {
              "dateUpdated": "2025-11-03T20:56:27.654Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "url": "https://www.kb.cert.org/vuls/id/199397"
              }
            ],
            "title": "CVE Program Container"
          }
        ],
        "cna": {
          "affected": [
            {
              "product": "draft-ietf-intarea-gue-09",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "GUE-09"
                }
              ]
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "Proposed Generic UDP Encapsulation (GUE) (IETF Draft) do not validate or verify the source of a network packet allowing an attacker to spoof and route arbitrary traffic via an exposed network interface that can lead to spoofing, access control bypass, and other unexpected network behaviors.\r\n\r\nThis can be considered similar to CVE-2020-10136."
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "description": "CWE-290 Authentication Bypass by Spoofing",
                  "lang": "en"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-02-05T17:37:33.876Z",
            "orgId": "37e5125f-f79b-445b-8fad-9564f167944b",
            "shortName": "certcc"
          },
          "references": [
            {
              "url": "https://datatracker.ietf.org/doc/draft-ietf-intarea-gue/"
            },
            {
              "url": "https://www.rfc-editor.org/rfc/rfc6169.html"
            }
          ],
          "source": {
            "discovery": "UNKNOWN"
          },
          "title": "Generic UDP Encapsulation (GUE) (IETF Draft) do not validate or verify the source of a network packet",
          "x_generator": {
            "engine": "VINCE 3.0.11",
            "env": "prod",
            "origin": "https://cveawg.mitre.org/api/cve/CVE-2024-7596"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "37e5125f-f79b-445b-8fad-9564f167944b",
        "assignerShortName": "certcc",
        "cveId": "CVE-2024-7596",
        "datePublished": "2025-02-05T17:37:33.876Z",
        "dateReserved": "2024-08-07T20:17:30.815Z",
        "dateUpdated": "2025-11-03T20:56:27.654Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.2"
    }

    CVE-2024-7595 (GCVE-0-2024-7595)

    Vulnerability from cvelistv5 – Published: 2025-02-05 17:36 – Updated: 2025-11-03 20:56
    VLAI
    Title
    GRE and GRE6 Protocols (RFC2784) do not validate or verify the source of a network packet
    Summary
    GRE and GRE6 Protocols (RFC2784) do not validate or verify the source of a network packet allowing an attacker to spoof and route arbitrary traffic via an exposed network interface that can lead to spoofing, access control bypass, and other unexpected network behaviors. This can be considered similar to CVE-2020-10136.
    SSVC
    Exploitation: none Automatable: yes Technical Impact: partial
    CISA Coordinator (v2.0.3)
    Assigner
    Impacted products
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "metrics": [
              {
                "cvssV3_1": {
                  "attackComplexity": "LOW",
                  "attackVector": "NETWORK",
                  "availabilityImpact": "LOW",
                  "baseScore": 5.3,
                  "baseSeverity": "MEDIUM",
                  "confidentialityImpact": "NONE",
                  "integrityImpact": "NONE",
                  "privilegesRequired": "NONE",
                  "scope": "UNCHANGED",
                  "userInteraction": "NONE",
                  "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
                  "version": "3.1"
                }
              },
              {
                "other": {
                  "content": {
                    "id": "CVE-2024-7595",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "yes"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2025-02-05T19:00:42.995220Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-02-06T21:24:58.646Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          },
          {
            "providerMetadata": {
              "dateUpdated": "2025-11-03T20:56:26.123Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "url": "https://www.kb.cert.org/vuls/id/199397"
              }
            ],
            "title": "CVE Program Container"
          }
        ],
        "cna": {
          "affected": [
            {
              "product": "RFC2784 - Generic Routing Encapsulation (GRE)",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "STD 1"
                }
              ]
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "GRE and GRE6 Protocols (RFC2784) do not validate or verify the source of a network packet allowing an attacker to spoof and route arbitrary traffic via an exposed network interface that can lead to spoofing, access control bypass, and other unexpected network behaviors.\r\n\r\nThis can be considered similar to CVE-2020-10136."
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "description": "CWE-290 Authentication Bypass by Spoofing",
                  "lang": "en"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-02-05T17:36:33.199Z",
            "orgId": "37e5125f-f79b-445b-8fad-9564f167944b",
            "shortName": "certcc"
          },
          "references": [
            {
              "url": "https://datatracker.ietf.org/doc/html/rfc2784"
            },
            {
              "url": "https://www.rfc-editor.org/rfc/rfc6169.html"
            }
          ],
          "source": {
            "discovery": "UNKNOWN"
          },
          "title": "GRE and GRE6 Protocols (RFC2784) do not validate or verify the source of a network packet",
          "x_generator": {
            "engine": "VINCE 3.0.11",
            "env": "prod",
            "origin": "https://cveawg.mitre.org/api/cve/CVE-2024-7595"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "37e5125f-f79b-445b-8fad-9564f167944b",
        "assignerShortName": "certcc",
        "cveId": "CVE-2024-7595",
        "datePublished": "2025-02-05T17:36:33.199Z",
        "dateReserved": "2024-08-07T20:16:05.030Z",
        "dateUpdated": "2025-11-03T20:56:26.123Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.2"
    }

    CVE-2025-23018 (GCVE-0-2025-23018)

    Vulnerability from cvelistv5 – Published: 2025-01-14 00:00 – Updated: 2025-11-03 21:00
    VLAI
    Summary
    IPv4-in-IPv6 and IPv6-in-IPv6 tunneling (RFC 2473) do not require the validation or verification of the source of a network packet, allowing an attacker to spoof and route arbitrary traffic via an exposed network interface. This is a similar issue to CVE-2020-10136.
    SSVC
    Exploitation: none Automatable: no Technical Impact: partial
    CISA Coordinator (v2.0.3)
    CWE
    • CWE-940 - Improper Verification of Source of a Communication Channel
    Assigner
    Impacted products
    Vendor Product Version
    IETF IPv6 Affected: 6 (custom)
    Create a notification for this product.
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "metrics": [
              {
                "other": {
                  "content": {
                    "id": "CVE-2025-23018",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "no"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2025-01-15T19:38:35.023118Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-02-12T20:31:20.585Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          },
          {
            "providerMetadata": {
              "dateUpdated": "2025-11-03T21:00:13.443Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "url": "https://www.kb.cert.org/vuls/id/199397"
              }
            ],
            "title": "CVE Program Container"
          }
        ],
        "cna": {
          "affected": [
            {
              "defaultStatus": "unknown",
              "product": "IPv6",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "6",
                  "versionType": "custom"
                }
              ]
            }
          ],
          "cpeApplicability": [
            {
              "nodes": [
                {
                  "cpeMatch": [
                    {
                      "criteria": "cpe:2.3:a:ietf:ipv6:*:*:*:*:*:*:*:*",
                      "versionEndIncluding": "6",
                      "versionStartIncluding": "6",
                      "vulnerable": true
                    }
                  ],
                  "negate": false,
                  "operator": "OR"
                }
              ]
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "IPv4-in-IPv6 and IPv6-in-IPv6 tunneling (RFC 2473) do not require the validation or verification of the source of a network packet, allowing an attacker to spoof and route arbitrary traffic via an exposed network interface. This is a similar issue to CVE-2020-10136."
            }
          ],
          "metrics": [
            {
              "cvssV3_1": {
                "baseScore": 5.4,
                "baseSeverity": "MEDIUM",
                "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:L/I:L/A:N",
                "version": "3.1"
              }
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "cweId": "CWE-940",
                  "description": "CWE-940 Improper Verification of Source of a Communication Channel",
                  "lang": "en",
                  "type": "CWE"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-01-14T19:51:42.363Z",
            "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
            "shortName": "mitre"
          },
          "references": [
            {
              "url": "https://datatracker.ietf.org/doc/html/rfc2473"
            },
            {
              "url": "https://papers.mathyvanhoef.com/usenix2025-tunnels.pdf"
            },
            {
              "url": "https://www.top10vpn.com/research/tunneling-protocol-vulnerability/"
            }
          ],
          "x_generator": {
            "engine": "enrichogram 0.0.1"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
        "assignerShortName": "mitre",
        "cveId": "CVE-2025-23018",
        "datePublished": "2025-01-14T00:00:00.000Z",
        "dateReserved": "2025-01-10T00:00:00.000Z",
        "dateUpdated": "2025-11-03T21:00:13.443Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.2"
    }

    CVE-2025-23019 (GCVE-0-2025-23019)

    Vulnerability from cvelistv5 – Published: 2025-01-14 00:00 – Updated: 2025-11-03 21:00
    VLAI
    Summary
    IPv6-in-IPv4 tunneling (RFC 4213) allows an attacker to spoof and route traffic via an exposed network interface.
    SSVC
    Exploitation: none Automatable: no Technical Impact: partial
    CISA Coordinator (v2.0.3)
    CWE
    • CWE-940 - Improper Verification of Source of a Communication Channel
    Assigner
    Impacted products
    Vendor Product Version
    IETF IPv6 Affected: 6 (custom)
    Create a notification for this product.
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "metrics": [
              {
                "other": {
                  "content": {
                    "id": "CVE-2025-23019",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "no"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2025-01-15T19:37:11.123417Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-02-12T20:31:20.419Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          },
          {
            "providerMetadata": {
              "dateUpdated": "2025-11-03T21:00:14.906Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "url": "https://www.kb.cert.org/vuls/id/199397"
              }
            ],
            "title": "CVE Program Container"
          }
        ],
        "cna": {
          "affected": [
            {
              "defaultStatus": "unknown",
              "product": "IPv6",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "6",
                  "versionType": "custom"
                }
              ]
            }
          ],
          "cpeApplicability": [
            {
              "nodes": [
                {
                  "cpeMatch": [
                    {
                      "criteria": "cpe:2.3:a:ietf:ipv6:*:*:*:*:*:*:*:*",
                      "versionEndIncluding": "6",
                      "versionStartIncluding": "6",
                      "vulnerable": true
                    }
                  ],
                  "negate": false,
                  "operator": "OR"
                }
              ]
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "IPv6-in-IPv4 tunneling (RFC 4213) allows an attacker to spoof and route traffic via an exposed network interface."
            }
          ],
          "metrics": [
            {
              "cvssV3_1": {
                "baseScore": 5.4,
                "baseSeverity": "MEDIUM",
                "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:L/I:L/A:N",
                "version": "3.1"
              }
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "cweId": "CWE-940",
                  "description": "CWE-940 Improper Verification of Source of a Communication Channel",
                  "lang": "en",
                  "type": "CWE"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-01-14T19:54:56.202Z",
            "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
            "shortName": "mitre"
          },
          "references": [
            {
              "url": "https://datatracker.ietf.org/doc/html/rfc4213"
            },
            {
              "url": "https://papers.mathyvanhoef.com/usenix2025-tunnels.pdf"
            },
            {
              "url": "https://www.top10vpn.com/research/tunneling-protocol-vulnerability/"
            }
          ],
          "x_generator": {
            "engine": "enrichogram 0.0.1"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
        "assignerShortName": "mitre",
        "cveId": "CVE-2025-23019",
        "datePublished": "2025-01-14T00:00:00.000Z",
        "dateReserved": "2025-01-10T00:00:00.000Z",
        "dateUpdated": "2025-11-03T21:00:14.906Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.2"
    }

    CVE-2024-3596 (GCVE-0-2024-3596)

    Vulnerability from cvelistv5 – Published: 2024-07-09 12:02 – Updated: 2026-06-09 09:01
    VLAI
    Title
    RADIUS Protocol under RFC2865 is vulnerable to forgery attacks.
    Summary
    RADIUS Protocol under RFC 2865 is susceptible to forgery attacks by a local attacker who can modify any valid Response (Access-Accept, Access-Reject, or Access-Challenge) to any other response using a chosen-prefix collision attack against MD5 Response Authenticator signature.
    SSVC
    Exploitation: none Automatable: no Technical Impact: total
    CISA Coordinator (v2.0.3)
    Assigner
    Impacted products
    Vendor Product Version
    IETF RFC Affected: 2865
    Create a notification for this product.
    ietf rfc Affected: 2865
        cpe:2.3:a:ietf:rfc:2865:*:*:*:*:*:*:*
    Create a notification for this product.
    Siemens CPC80 Central Processing/Communication Affected: 0 , < V16.51 (custom)
    Create a notification for this product.
    Siemens CPCI85 Central Processing/Communication Affected: 0 , < V6.20 (custom)
    Create a notification for this product.
    Siemens POWER METER SICAM Q100 family Affected: 0 , < V2.70 (custom)
    Create a notification for this product.
    Siemens POWER METER SICAM Q200 family Affected: 0 , < V2.83 (custom)
    Create a notification for this product.
    Siemens Powerlink IP Affected: 0 , < V4.22 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM APE1808 Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM CROSSBOW Affected: 0 , < V5.6 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i800 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i800NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i801 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i801NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i802 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i802NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i803 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM i803NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM M2100 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM M2100NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM M2200 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM M2200NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM M969 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM M969NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RM1224 LTE(4G) EU Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RM1224 LTE(4G) NAM Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RMC30 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RMC30NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RMC8388 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RMC8388 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RMC8388NC V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RMC8388NC V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX MX5000 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX MX5000RE Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1400 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1500 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1501 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1510 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1511 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1512 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1524 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX1536 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM ROX RX5000 Affected: 0 , < V2.17.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RP110 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RP110NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS1600 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS1600F Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS1600FNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS1600NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS1600T Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS1600TNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS400 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS400NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS401 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS401NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416NCv2 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416NCv2 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416P Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416PNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416PNCv2 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416PNCv2 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416Pv2 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416Pv2 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416v2 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS416v2 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000A Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000ANC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000H Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000HNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000T Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS8000TNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900 (32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900 (32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900G Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900G (32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900G (32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900GNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900GNC(32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900GNC(32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900GP Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900GPNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900L Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900LNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900M-GETS-C01 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900M-GETS-XX Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900M-STND-C01 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900M-STND-XX Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900MNC-GETS-C01 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900MNC-GETS-XX Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900MNC-STND-XX Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900MNC-STND-XX-C01 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900NC(32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900NC(32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS900W Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS910 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS910L Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS910LNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS910NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS910W Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS920L Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS920LNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS920W Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS930L Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS930LNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS930W Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS940G Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS940GNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS969 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RS969NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100 (32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100 (32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100NC(32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100NC(32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100P Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100P (32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100P (32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100PNC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100PNC (32M) V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2100PNC (32M) V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2200 Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2200NC Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2288 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2288 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2288NC V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2288NC V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300NC V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300NC V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300P V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300P V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300PNC V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2300PNC V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2488 V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2488 V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2488NC V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG2488NC V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG907R Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG908C Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG909R Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG910C Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG920P V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG920P V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG920PNC V4.X Affected: 0 , < V4.3.11 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSG920PNC V5.X Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSL910 Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RSL910NC Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RST2228 Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RST2228P Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RST2428P Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RST916C Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens RUGGEDCOM RST916P Affected: 0 , < V5.10.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE M804PB Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M812-1 ADSL-Router Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M816-1 ADSL-Router Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M826-2 SHDSL-Router Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M874-2 Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M874-3 Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M874-3 3G-Router (CN) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M876-3 Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M876-3 (ROK) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M876-4 Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M876-4 (EU) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE M876-4 (NAM) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM853-1 (A1) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM853-1 (B1) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM853-1 (EU) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM856-1 (A1) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM856-1 (B1) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM856-1 (CN) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM856-1 (EU) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE MUM856-1 (RoW) Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE S615 EEC LAN-Router Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE S615 LAN-Router Affected: 0 , < V8.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE SC622-2C Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE SC626-2C Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE SC632-2C Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE SC636-2C Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE SC642-2C Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE SC646-2C Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE W1748-1 M12 Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE W1788-1 M12 Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE W1788-2 EEC M12 Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE W1788-2 M12 Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE W1788-2IA M12 Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE W721-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W722-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W734-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W734-1 RJ45 (USA) Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W738-1 M12 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W748-1 M12 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W748-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W761-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W774-1 M12 EEC Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W774-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W774-1 RJ45 (USA) Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W778-1 M12 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W778-1 M12 EEC Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W778-1 M12 EEC (USA) Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W786-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W786-2 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W786-2 SFP Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W786-2IA RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W788-1 M12 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W788-1 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W788-2 M12 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W788-2 M12 EEC Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE W788-2 RJ45 Affected: 0 , < V6.6.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAB762-1 Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM763-1 Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM763-1 (ME) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM763-1 (US) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM766-1 Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM766-1 (ME) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM766-1 (US) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM766-1 EEC Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM766-1 EEC (ME) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WAM766-1 EEC (US) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUB762-1 Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUB762-1 iFeatures Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUM763-1 Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUM763-1 (US) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUM766-1 Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUM766-1 (ME) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE WUM766-1 (USA) Affected: 0 , < V3.0.0 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (230V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (230V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (24V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (24V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (2x 230V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (2x 230V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (2x 24V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X302-7 EEC (2x 24V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X304-2FE Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X306-1LD FE Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (230V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (230V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (24V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (24V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (2x 230V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (2x 230V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (2x 24V, coated) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-2 EEC (2x 24V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-3 Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X307-3LD Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2 Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2LD Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2LH Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2LH+ Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2M Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2M PoE Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X308-2M TS Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X310 Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X310FE Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X320-1 FE Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X320-1-2LD FE Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE X408-2 Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB205-3 (SC, PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB205-3 (ST, E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB205-3 (ST, PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB205-3LD (SC, E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB205-3LD (SC, PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB206-2 (SC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB206-2 (ST/BFOC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB206-2 LD Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB206-2 SC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB206-2 ST Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB206-2LD Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB208 (E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB208 (PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB213-3 (SC, E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB213-3 (SC, PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB213-3 (ST, E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB213-3 (ST, PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB213-3LD (SC, E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB213-3LD (SC, PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB216 (E/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XB216 (PN) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2 (SC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2 (ST/BFOC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2G PoE Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2G PoE (54 V DC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2G PoE EEC (54 V DC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2SFP Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2SFP EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2SFP G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2SFP G (EIP DEF.) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC206-2SFP G EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208G (EIP def.) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208G EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208G PoE Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC208G PoE (54 V DC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216-3G PoE Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216-3G PoE (54 V DC) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216-4C Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216-4C G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216-4C G (EIP Def.) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216-4C G EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC216EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC224 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC224-4C G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC224-4C G (EIP Def.) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC224-4C G EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC316-8 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC324-4 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC324-4 EEC Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC332 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC416-8 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC424-4 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XC432 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XCH328 Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XCM324 Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XCM328 Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XCM332 Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XF204 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XF204 DNA Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XF204-2BA Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XF204-2BA DNA Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XF204G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XM408-4C Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XM408-4C (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XM408-8C Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XM408-8C (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XM416-4C Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XM416-4C (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208 (Ethernet/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208G EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208G PoE EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208G PP Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP208PoE EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216 (Ethernet/IP) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216 (V2) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216EEC (V2) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216G Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216G EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216G PoE EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216POE EEC Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XP216PoE EEC (V2) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR302-32 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR322-12 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-12M (230V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-12M (230V, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-12M (24V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-12M (24V, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-12M TS (24V) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (100-240VAC/60-250VDC, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (100-240VAC/60-250VDC, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (24V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (24V, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (2x 100-240VAC/60-250VDC, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (2x 100-240VAC/60-250VDC, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (2x 24V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M EEC (2x 24V, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M PoE (230V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M PoE (230V, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M PoE (24V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M PoE (24V, ports on rear) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324-4M PoE TS (24V, ports on front) Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324WG (24 x FE, AC 230V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR324WG (24 X FE, DC 24V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR326-2C PoE WG Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR326-2C PoE WG (without UL) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR326-8 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR326-8 EEC Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR328-4C WG (24XFE, 4XGE, 24V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR328-4C WG (24xFE, 4xGE,DC24V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR328-4C WG (24xFE,4xGE,AC230V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR328-4C WG (28xGE, AC 230V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR328-4C WG (28xGE, DC 24V) Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR502-32 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR522-12 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8C, 1x230V Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8C, 1x230V (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8C, 24V Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8C, 24V (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8C, 2x230V Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8C, 2x230V (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR524-8WG Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8 Affected: 0 , < V1.3 (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8C, 1x230V Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8C, 1x230V (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8C, 24V Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8C, 24V (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8C, 2x230V Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR526-8C, 2x230V (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR528-6M Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR528-6M (2HR2, L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR528-6M (2HR2) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR528-6M (L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR552-12M Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR552-12M (2HR2, L3 int.) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XR552-12M (2HR2) Affected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SCALANCE XRH334 (24 V DC, 8xFO, CC) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (230 V AC, 12xFO) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (230 V AC, 8xFO) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (230V AC, 2x10G, 24xSFP, 8xSFP+) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (24 V DC, 12xFO) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (24 V DC, 8xFO) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (24V DC, 2x10G, 24xSFP, 8xSFP+) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (2x230 V AC, 12xFO) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (2x230 V AC, 8xFO) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SCALANCE XRM334 (2x230V AC, 2x10G, 24xSFP, 8xSFP+) Affected: 0 , < V3.2 (custom)
    Create a notification for this product.
    Siemens SICAM AK 3 Unaffected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SICAM BC Unaffected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SICAM GridEdge (Classic) Unaffected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SICAM GridEdge Applications for SICAM 8 Platform Unaffected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SICAM GridPass Affected: 0 , < V2.50 (custom)
    Create a notification for this product.
    Siemens SICAM TM Unaffected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SICORE Base system Affected: 0 , < V2.20.0 (custom)
    Create a notification for this product.
    Siemens SINEC INS Affected: 0 , < V1.0 SP2 Update 4 (custom)
    Create a notification for this product.
    Siemens SIPLUS NET SCALANCE X308-2 Affected: 0 , < V4.1.9 (custom)
    Create a notification for this product.
    Siemens SIPLUS NET SCALANCE XC206-2 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SIPLUS NET SCALANCE XC206-2SFP Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SIPLUS NET SCALANCE XC208 Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SIPLUS NET SCALANCE XC216-4C Affected: 0 , < V4.6 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 - CP200 Devices Unaffected: 0 , < * (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 6MD84 (CP300) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 6MD85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 6MD86 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 6MD89 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 6MD89 (CP300) V9.6x Affected: 0 , < V9.68 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 6MU85 (CP300) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7KE85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SA82 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SA82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SA86 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SA87 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SD82 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SD82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SD86 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SD87 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SJ81 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SJ81 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SJ82 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SJ82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SJ85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SJ86 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SK82 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SK82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SK85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SL82 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SL82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SL86 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SL87 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SS85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7ST85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7ST85 (CP300) V9.6x Affected: 0 , < V9.68 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7ST86 (CP300) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7ST86 (CP300) V9.8x Affected: 0 , < V9.83 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SX82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SX85 (CP300) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7SY82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7UM85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7UT82 (CP100) Affected: V7.80 , < V8.90 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7UT82 (CP150) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7UT85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7UT86 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7UT87 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7VE85 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7VK87 (CP300) Affected: V7.80 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 7VU85 (CP300) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Siemens SIPROTEC 5 Compact 7SX800 (CP050) Affected: 0 , < V10.0 (custom)
    Create a notification for this product.
    Credits
    Thanks to Sharon Goldberg, Miro Haller, Nadia Heninger, Mike Milano, Dan Shumow, Marc Stevens, and Adam Suhl who researched and reported this vulnerability
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "affected": [
              {
                "cpes": [
                  "cpe:2.3:a:ietf:rfc:2865:*:*:*:*:*:*:*"
                ],
                "defaultStatus": "unknown",
                "product": "rfc",
                "vendor": "ietf",
                "versions": [
                  {
                    "status": "affected",
                    "version": "2865"
                  }
                ]
              }
            ],
            "metrics": [
              {
                "cvssV3_1": {
                  "attackComplexity": "HIGH",
                  "attackVector": "NETWORK",
                  "availabilityImpact": "HIGH",
                  "baseScore": 9,
                  "baseSeverity": "CRITICAL",
                  "confidentialityImpact": "HIGH",
                  "integrityImpact": "HIGH",
                  "privilegesRequired": "NONE",
                  "scope": "CHANGED",
                  "userInteraction": "NONE",
                  "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H",
                  "version": "3.1"
                }
              },
              {
                "other": {
                  "content": {
                    "id": "CVE-2024-3596",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "no"
                      },
                      {
                        "Technical Impact": "total"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2024-07-11T03:55:37.141738Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-09-04T21:05:25.373Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          },
          {
            "providerMetadata": {
              "dateUpdated": "2025-11-04T17:20:52.225Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "url": "https://security.netapp.com/advisory/ntap-20240822-0001/"
              },
              {
                "url": "https://today.ucsd.edu/story/computer-scientists-discover-vulnerabilities-in-a-popular-security-protocol"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://datatracker.ietf.org/doc/html/rfc2865"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://datatracker.ietf.org/doc/draft-ietf-radext-deprecating-radius/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://networkradius.com/assets/pdf/radius_and_md5_collisions.pdf"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.blastradius.fail/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2024/07/09/4"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2024-0014"
              },
              {
                "url": "https://www.kb.cert.org/vuls/id/456537"
              }
            ],
            "title": "CVE Program Container"
          },
          {
            "affected": [
              {
                "defaultStatus": "unknown",
                "product": "CPC80 Central Processing/Communication",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V16.51",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "CPCI85 Central Processing/Communication",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.20",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "POWER METER SICAM Q100 family",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.70",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "POWER METER SICAM Q200 family",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.83",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "Powerlink IP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.22",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM APE1808",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM APE1808",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM CROSSBOW",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i800",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i800NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i801",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i801NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i802",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i802NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i803",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM i803NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM M2100",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM M2100NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM M2200",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM M2200NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM M969",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM M969NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RM1224 LTE(4G) EU",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RM1224 LTE(4G) NAM",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RMC30",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RMC30NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RMC8388 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RMC8388 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RMC8388NC V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RMC8388NC V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX MX5000",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX MX5000RE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1400",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1500",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1501",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1510",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1511",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1512",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1524",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX1536",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM ROX RX5000",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.17.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RP110",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RP110NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS1600",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS1600F",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS1600FNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS1600NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS1600T",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS1600TNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS400",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS400NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS401",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS401NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416NCv2 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416NCv2 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416P",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416PNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416PNCv2 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416PNCv2 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416Pv2 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416Pv2 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416v2 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS416v2 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000A",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000ANC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000H",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000HNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000T",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS8000TNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900 (32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900 (32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900G (32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900G (32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900GNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900GNC(32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900GNC(32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900GP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900GPNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900L",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900LNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900M-GETS-C01",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900M-GETS-XX",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900M-STND-C01",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900M-STND-XX",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900MNC-GETS-C01",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900MNC-GETS-XX",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900MNC-STND-XX",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900MNC-STND-XX-C01",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900NC(32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900NC(32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS900W",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS910",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS910L",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS910LNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS910NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS910W",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS920L",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS920LNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS920W",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS930L",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS930LNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS930W",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS940G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS940GNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS969",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RS969NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100 (32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100 (32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100NC(32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100NC(32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100P",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100P (32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100P (32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100PNC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100PNC (32M) V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2100PNC (32M) V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2200",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2200NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2288 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2288 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2288NC V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2288NC V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300NC V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300NC V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300P V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300P V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300PNC V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2300PNC V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2488 V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2488 V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2488NC V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG2488NC V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG907R",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG908C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG909R",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG910C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG920P V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG920P V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG920PNC V4.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.3.11",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSG920PNC V5.X",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSL910",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RSL910NC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RST2228",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RST2228P",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RST2428P",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RST916C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM RST916P",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V5.10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M804PB",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M812-1 ADSL-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M812-1 ADSL-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M816-1 ADSL-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M816-1 ADSL-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M826-2 SHDSL-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M874-2",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M874-3",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M874-3 3G-Router (CN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M876-3",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M876-3 (ROK)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M876-4",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M876-4 (EU)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE M876-4 (NAM)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM853-1 (A1)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM853-1 (B1)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM853-1 (EU)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM856-1 (A1)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM856-1 (B1)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM856-1 (CN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM856-1 (EU)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE MUM856-1 (RoW)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE S615 EEC LAN-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE S615 LAN-Router",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE SC622-2C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE SC626-2C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE SC632-2C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE SC636-2C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE SC642-2C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE SC646-2C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W1748-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W1748-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W1788-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W1788-2 EEC M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W1788-2 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W1788-2IA M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W721-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W721-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W722-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W722-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W722-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W734-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W734-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W734-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W734-1 RJ45 (USA)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W738-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W738-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W748-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W748-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W748-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W748-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W761-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W761-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 M12 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 M12 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W774-1 RJ45 (USA)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W778-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W778-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W778-1 M12 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W778-1 M12 EEC (USA)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2 SFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2 SFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2IA RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W786-2IA RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-1 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-1 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 M12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 M12 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 M12 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 M12 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE W788-2 RJ45",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V6.6.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAB762-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM763-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM763-1 (ME)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM763-1 (US)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM766-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM766-1 (ME)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM766-1 (US)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM766-1 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM766-1 EEC (ME)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WAM766-1 EEC (US)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUB762-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUB762-1 iFeatures",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM763-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM763-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM763-1 (US)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM763-1 (US)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM766-1",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM766-1 (ME)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE WUM766-1 (USA)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (230V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (24V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (2x 230V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (2x 230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (2x 24V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X302-7 EEC (2x 24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X304-2FE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X306-1LD FE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (230V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (24V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (2x 230V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (2x 230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (2x 24V, coated)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-2 EEC (2x 24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-3",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-3",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-3LD",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X307-3LD",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2LD",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2LD",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2LH",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2LH",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2LH+",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2LH+",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2M",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2M",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2M PoE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2M PoE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2M TS",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X308-2M TS",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X310",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X310",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X310FE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X310FE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X320-1 FE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X320-1-2LD FE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE X408-2",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB205-3 (SC, PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB205-3 (ST, E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB205-3 (ST, E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB205-3 (ST, PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB205-3LD (SC, E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB205-3LD (SC, PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB206-2 (SC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB206-2 (ST/BFOC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB206-2 LD",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB206-2 SC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB206-2 ST",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB206-2LD",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB208 (E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB208 (PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB213-3 (SC, E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB213-3 (SC, PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB213-3 (ST, E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB213-3 (ST, PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB213-3LD (SC, E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB213-3LD (SC, PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB216 (E/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XB216 (PN)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2 (SC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2 (ST/BFOC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2G PoE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2G PoE (54 V DC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2G PoE EEC (54 V DC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2SFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2SFP EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2SFP G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2SFP G (EIP DEF.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC206-2SFP G EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208G (EIP def.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208G EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208G PoE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC208G PoE (54 V DC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216-3G PoE",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216-3G PoE (54 V DC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216-4C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216-4C G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216-4C G (EIP Def.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216-4C G EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC216EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC224",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC224-4C G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC224-4C G (EIP Def.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC224-4C G EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC316-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC324-4",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC324-4 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC332",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC416-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC424-4",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XC432",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XCH328",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XCM324",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XCM328",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XCM332",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XF204",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XF204 DNA",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XF204-2BA",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XF204-2BA DNA",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XF204G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XM408-4C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XM408-4C (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XM408-8C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XM408-8C (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XM416-4C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XM416-4C (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208 (Ethernet/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208G EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208G PoE EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208G PP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208PoE EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP208PoE EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216 (Ethernet/IP)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216 (V2)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216EEC (V2)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216G",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216G EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216G PoE EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216POE EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XP216PoE EEC (V2)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR302-32",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR302-32",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR302-32",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR322-12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR322-12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR322-12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (230V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (230V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (230V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (230V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M (24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M TS (24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-12M TS (24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (100-240VAC/60-250VDC, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (100-240VAC/60-250VDC, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (100-240VAC/60-250VDC, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (100-240VAC/60-250VDC, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 100-240VAC/60-250VDC, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 100-240VAC/60-250VDC, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 100-240VAC/60-250VDC, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 100-240VAC/60-250VDC, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M EEC (2x 24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (230V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (230V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (230V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (230V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE (24V, ports on rear)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE TS (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324-4M PoE TS (24V, ports on front)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324WG (24 x FE, AC 230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR324WG (24 X FE, DC 24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR326-2C PoE WG",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR326-2C PoE WG (without UL)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR326-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR326-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR326-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR326-8 EEC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR328-4C WG (24XFE, 4XGE, 24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR328-4C WG (24xFE, 4xGE,DC24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR328-4C WG (24xFE,4xGE,AC230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR328-4C WG (24xFE,4xGE,AC230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR328-4C WG (28xGE, AC 230V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR328-4C WG (28xGE, DC 24V)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR502-32",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR502-32",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR502-32",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR522-12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR522-12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR522-12",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8C, 1x230V",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8C, 1x230V (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8C, 24V",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8C, 24V (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8C, 2x230V",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8C, 2x230V (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8WG",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8WG",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8WG",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR524-8WG",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.3",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8C, 1x230V",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8C, 1x230V (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8C, 24V",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8C, 24V (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8C, 2x230V",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR526-8C, 2x230V (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR528-6M",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR528-6M (2HR2, L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR528-6M (2HR2)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR528-6M (L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR552-12M",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR552-12M (2HR2, L3 int.)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR552-12M (2HR2)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XR552-12M (2HR2)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRH334 (24 V DC, 8xFO, CC)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (230 V AC, 12xFO)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (230 V AC, 8xFO)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (230V AC, 2x10G, 24xSFP, 8xSFP+)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (24 V DC, 12xFO)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (24 V DC, 8xFO)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (24V DC, 2x10G, 24xSFP, 8xSFP+)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (2x230 V AC, 12xFO)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (2x230 V AC, 8xFO)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SCALANCE XRM334 (2x230V AC, 2x10G, 24xSFP, 8xSFP+)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.2",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICAM AK 3",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "unaffected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICAM BC",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "unaffected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICAM GridEdge (Classic)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "unaffected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICAM GridEdge Applications for SICAM 8 Platform",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "unaffected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICAM GridPass",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.50",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICAM TM",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "unaffected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SICORE Base system",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V2.20.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SINEC INS",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V1.0 SP2 Update 4",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPLUS NET SCALANCE X308-2",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.1.9",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPLUS NET SCALANCE XC206-2",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPLUS NET SCALANCE XC206-2SFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPLUS NET SCALANCE XC208",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPLUS NET SCALANCE XC216-4C",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V4.6",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 - CP200 Devices",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "unaffected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 6MD84 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 6MD85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 6MD86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 6MD89 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 6MD89 (CP300) V9.6x",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V9.68",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 6MU85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7KE85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SA82 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SA82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SA86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SA87 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SD82 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SD82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SD86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SD87 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SJ81 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SJ81 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SJ82 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SJ82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SJ85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SJ86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SK82 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SK82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SK85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SL82 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SL82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SL86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SL87 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SS85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7ST85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7ST85 (CP300) V9.6x",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V9.68",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7ST86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7ST86 (CP300) V9.8x",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V9.83",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SX82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SX85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7SY82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7UM85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7UT82 (CP100)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V8.90",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7UT82 (CP150)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7UT85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7UT86 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7UT87 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7VE85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7VK87 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "V7.80",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 7VU85 (CP300)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPROTEC 5 Compact 7SX800 (CP050)",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V10.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2026-06-09T09:01:52.617Z",
              "orgId": "0b142b55-0307-4c5a-b3c9-f314f3fb7c5e",
              "shortName": "siemens-SADP"
            },
            "references": [
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-364175.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-723487.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-770770.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-794185.html"
              }
            ],
            "x_adpType": "supplier"
          }
        ],
        "cna": {
          "affected": [
            {
              "product": "RFC",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "2865"
                }
              ]
            }
          ],
          "credits": [
            {
              "lang": "en",
              "type": "finder",
              "value": "Thanks to Sharon Goldberg, Miro Haller, Nadia Heninger, Mike Milano, Dan Shumow, Marc Stevens, and Adam Suhl who researched and reported this vulnerability"
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "RADIUS Protocol under RFC 2865 is susceptible to forgery attacks by a local attacker who can modify any valid Response (Access-Accept, Access-Reject, or Access-Challenge) to any other response using a chosen-prefix collision attack against MD5 Response Authenticator signature."
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "description": "CWE-328: Use of Weak Hash",
                  "lang": "en"
                }
              ]
            },
            {
              "descriptions": [
                {
                  "description": "CWE-200 Exposure of Sensitive Information to an Unauthorized Actor",
                  "lang": "en"
                }
              ]
            },
            {
              "descriptions": [
                {
                  "description": "CWE-924 Improper Enforcement of Message Integrity During Transmission in a Communication Channel",
                  "lang": "en"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-09-03T17:29:16.788Z",
            "orgId": "37e5125f-f79b-445b-8fad-9564f167944b",
            "shortName": "certcc"
          },
          "references": [
            {
              "url": "https://datatracker.ietf.org/doc/html/rfc2865"
            },
            {
              "url": "https://datatracker.ietf.org/doc/draft-ietf-radext-deprecating-radius/"
            },
            {
              "url": "https://networkradius.com/assets/pdf/radius_and_md5_collisions.pdf"
            },
            {
              "url": "https://www.blastradius.fail/"
            },
            {
              "url": "http://www.openwall.com/lists/oss-security/2024/07/09/4"
            },
            {
              "url": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2024-0014"
            },
            {
              "name": "Siemens Security Advisory by Siemens ProductCERT for  SIPROTEC, SICAM and related product",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://cert-portal.siemens.com/productcert/html/ssa-794185.html"
            },
            {
              "name": "Siemens Security Advisory by Siemens ProductCERT to SCALANCE, RUGGEDCOM and related products.",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://cert-portal.siemens.com/productcert/html/ssa-723487.html"
            }
          ],
          "source": {
            "discovery": "EXTERNAL"
          },
          "title": "RADIUS Protocol under RFC2865 is vulnerable to forgery attacks.",
          "x_generator": {
            "engine": "VINCE 3.0.4",
            "env": "prod",
            "origin": "https://cveawg.mitre.org/api/cve/CVE-2024-3596"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "37e5125f-f79b-445b-8fad-9564f167944b",
        "assignerShortName": "certcc",
        "cveId": "CVE-2024-3596",
        "datePublished": "2024-07-09T12:02:53.001Z",
        "dateReserved": "2024-04-10T15:09:45.391Z",
        "dateUpdated": "2026-06-09T09:01:52.617Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.2"
    }

    CVE-2024-3661 (GCVE-0-2024-3661)

    Vulnerability from cvelistv5 – Published: 2024-05-06 18:31 – Updated: 2024-08-28 19:09
    VLAI
    Title
    DHCP routing options can manipulate interface-based VPN traffic
    Summary
    DHCP can add routes to a client’s routing table via the classless static route option (121). VPN-based security solutions that rely on routes to redirect traffic can be forced to leak traffic over the physical interface. An attacker on the same local network can read, disrupt, or possibly modify network traffic that was expected to be protected by the VPN.
    SSVC
    Exploitation: none Automatable: no Technical Impact: partial
    CISA Coordinator (v2.0.3)
    CWE
    • CWE-306 - Missing Authentication for Critical Function
    • CWE-501 - Trust Boundary Violation
    Assigner
    Impacted products
    Vendor Product Version
    IETF DHCP Affected: 0
    Create a notification for this product.
    Date Public
    2002-12-31 01:00
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "providerMetadata": {
              "dateUpdated": "2024-08-01T20:20:00.420Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://datatracker.ietf.org/doc/html/rfc2131#section-7"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://datatracker.ietf.org/doc/html/rfc3442#section-7"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://tunnelvisionbug.com/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.leviathansecurity.com/research/tunnelvision"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://news.ycombinator.com/item?id=40279632"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://arstechnica.com/security/2024/05/novel-attack-against-virtually-all-vpn-apps-neuters-their-entire-purpose/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://krebsonsecurity.com/2024/05/why-your-vpn-may-not-be-as-secure-as-it-claims/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://issuetracker.google.com/issues/263721377"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://mullvad.net/en/blog/evaluating-the-impact-of-tunnelvision"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.zscaler.com/blogs/security-research/cve-2024-3661-k-tunnelvision-exposes-vpn-bypass-vulnerability"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://lowendtalk.com/discussion/188857/a-rogue-dhcp-server-within-your-network-can-and-will-hijack-your-vpn-traffic"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://news.ycombinator.com/item?id=40284111"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.agwa.name/blog/post/hardening_openvpn_for_def_con"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.theregister.com/2024/05/07/vpn_tunnelvision_dhcp/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://support.citrix.com/article/CTX677069/cloud-software-group-security-advisory-for-cve20243661"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.watchguard.com/wgrd-psirt/advisory/wgsa-2024-00009"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://bst.cisco.com/quickview/bug/CSCwk05814"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://security.paloaltonetworks.com/CVE-2024-3661"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://fortiguard.fortinet.com/psirt/FG-IR-24-170"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://my.f5.com/manage/s/article/K000139553"
              }
            ],
            "title": "CVE Program Container"
          },
          {
            "metrics": [
              {
                "other": {
                  "content": {
                    "id": "CVE-2024-3661",
                    "options": [
                      {
                        "Exploitation": "none"
                      },
                      {
                        "Automatable": "no"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2024-05-08T04:00:07.962328Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2024-08-28T19:09:06.995Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "title": "CISA ADP Vulnrichment"
          }
        ],
        "cna": {
          "affected": [
            {
              "defaultStatus": "affected",
              "product": "DHCP",
              "vendor": "IETF",
              "versions": [
                {
                  "status": "affected",
                  "version": "0"
                }
              ]
            }
          ],
          "datePublic": "2002-12-31T01:00:00.000Z",
          "descriptions": [
            {
              "lang": "en",
              "supportingMedia": [
                {
                  "base64": false,
                  "type": "text/html",
                  "value": "DHCP can add routes to a client\u2019s routing table via the classless static route option (121). VPN-based security solutions that rely on routes to redirect traffic can be forced to leak traffic over the physical interface. An attacker on the same local network can read, disrupt, or possibly modify network traffic that was expected to be protected by the VPN."
                }
              ],
              "value": "DHCP can add routes to a client\u2019s routing table via the classless static route option (121). VPN-based security solutions that rely on routes to redirect traffic can be forced to leak traffic over the physical interface. An attacker on the same local network can read, disrupt, or possibly modify network traffic that was expected to be protected by the VPN."
            }
          ],
          "metrics": [
            {
              "cvssV3_1": {
                "attackComplexity": "LOW",
                "attackVector": "ADJACENT_NETWORK",
                "availabilityImpact": "LOW",
                "baseScore": 7.6,
                "baseSeverity": "HIGH",
                "confidentialityImpact": "HIGH",
                "integrityImpact": "LOW",
                "privilegesRequired": "NONE",
                "scope": "UNCHANGED",
                "userInteraction": "NONE",
                "vectorString": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:L",
                "version": "3.1"
              },
              "format": "CVSS",
              "scenarios": [
                {
                  "lang": "en",
                  "value": "GENERAL"
                }
              ]
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "cweId": "CWE-306",
                  "description": "CWE-306 Missing Authentication for Critical Function",
                  "lang": "en",
                  "type": "CWE"
                }
              ]
            },
            {
              "descriptions": [
                {
                  "cweId": "CWE-501",
                  "description": "CWE-501 Trust Boundary Violation",
                  "lang": "en",
                  "type": "CWE"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2024-07-01T15:04:50.790Z",
            "orgId": "9119a7d8-5eab-497f-8521-727c672e3725",
            "shortName": "cisa-cg"
          },
          "references": [
            {
              "url": "https://datatracker.ietf.org/doc/html/rfc2131#section-7"
            },
            {
              "url": "https://datatracker.ietf.org/doc/html/rfc3442#section-7"
            },
            {
              "url": "https://tunnelvisionbug.com/"
            },
            {
              "url": "https://www.leviathansecurity.com/research/tunnelvision"
            },
            {
              "url": "https://news.ycombinator.com/item?id=40279632"
            },
            {
              "url": "https://arstechnica.com/security/2024/05/novel-attack-against-virtually-all-vpn-apps-neuters-their-entire-purpose/"
            },
            {
              "url": "https://krebsonsecurity.com/2024/05/why-your-vpn-may-not-be-as-secure-as-it-claims/"
            },
            {
              "url": "https://issuetracker.google.com/issues/263721377"
            },
            {
              "url": "https://mullvad.net/en/blog/evaluating-the-impact-of-tunnelvision"
            },
            {
              "url": "https://www.zscaler.com/blogs/security-research/cve-2024-3661-k-tunnelvision-exposes-vpn-bypass-vulnerability"
            },
            {
              "url": "https://lowendtalk.com/discussion/188857/a-rogue-dhcp-server-within-your-network-can-and-will-hijack-your-vpn-traffic"
            },
            {
              "url": "https://news.ycombinator.com/item?id=40284111"
            },
            {
              "url": "https://www.agwa.name/blog/post/hardening_openvpn_for_def_con"
            },
            {
              "url": "https://www.theregister.com/2024/05/07/vpn_tunnelvision_dhcp/"
            },
            {
              "url": "https://support.citrix.com/article/CTX677069/cloud-software-group-security-advisory-for-cve20243661"
            },
            {
              "url": "https://www.watchguard.com/wgrd-psirt/advisory/wgsa-2024-00009"
            },
            {
              "url": "https://bst.cisco.com/quickview/bug/CSCwk05814"
            },
            {
              "url": "https://security.paloaltonetworks.com/CVE-2024-3661"
            },
            {
              "url": "https://fortiguard.fortinet.com/psirt/FG-IR-24-170"
            },
            {
              "url": "https://my.f5.com/manage/s/article/K000139553"
            }
          ],
          "source": {
            "discovery": "UNKNOWN"
          },
          "title": "DHCP routing options can manipulate interface-based VPN traffic",
          "x_generator": {
            "engine": "Vulnogram 0.1.0-dev"
          }
        }
      },
      "cveMetadata": {
        "assignerOrgId": "9119a7d8-5eab-497f-8521-727c672e3725",
        "assignerShortName": "cisa-cg",
        "cveId": "CVE-2024-3661",
        "datePublished": "2024-05-06T18:31:21.217Z",
        "dateReserved": "2024-04-11T17:24:22.637Z",
        "dateUpdated": "2024-08-28T19:09:06.995Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.1"
    }

    CVE-2023-44487 (GCVE-0-2023-44487)

    Vulnerability from cvelistv5 – Published: 2023-10-10 00:00 – Updated: 2026-07-14 12:03
    VLAI CISA KEVIntel
    Summary
    The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.
    SSVC
    Exploitation: active Automatable: yes Technical Impact: partial
    CISA Coordinator (v2.0.3)
    CWE
    • n/a
    • CWE-400 - Uncontrolled Resource Consumption
    Assigner
    References
    URL Tags
    https://github.com/dotnet/core/blob/e4613450ea0da…
    https://blog.cloudflare.com/technical-breakdown-h…
    https://aws.amazon.com/security/security-bulletin…
    https://cloud.google.com/blog/products/identity-s…
    https://www.nginx.com/blog/http-2-rapid-reset-att…
    https://cloud.google.com/blog/products/identity-s…
    https://news.ycombinator.com/item?id=37831062
    https://blog.cloudflare.com/zero-day-rapid-reset-…
    https://www.phoronix.com/news/HTTP2-Rapid-Reset-Attack
    https://github.com/envoyproxy/envoy/pull/30055
    https://github.com/haproxy/haproxy/issues/2312
    https://github.com/eclipse/jetty.project/issues/10679
    https://forums.swift.org/t/swift-nio-http2-securi…
    https://github.com/nghttp2/nghttp2/pull/1961
    https://github.com/netty/netty/commit/58f75f665aa…
    https://github.com/alibaba/tengine/issues/1872
    https://github.com/apache/tomcat/tree/main/java/o…
    https://news.ycombinator.com/item?id=37830987
    https://news.ycombinator.com/item?id=37830998
    https://github.com/caddyserver/caddy/issues/5877
    https://www.bleepingcomputer.com/news/security/ne…
    https://github.com/bcdannyboy/CVE-2023-44487
    https://github.com/grpc/grpc-go/pull/6703
    https://github.com/icing/mod_h2/blob/0a864782af0a…
    https://github.com/nghttp2/nghttp2/releases/tag/v1.57.0
    https://mailman.nginx.org/pipermail/nginx-devel/2…
    https://my.f5.com/manage/s/article/K000137106
    https://msrc.microsoft.com/blog/2023/10/microsoft…
    https://bugzilla.proxmox.com/show_bug.cgi?id=4988
    https://cgit.freebsd.org/ports/commit/?id=c64c329…
    http://www.openwall.com/lists/oss-security/2023/10/10/7 mailing-list
    http://www.openwall.com/lists/oss-security/2023/10/10/6 mailing-list
    https://seanmonstar.com/post/730794151136935936/h…
    https://github.com/microsoft/CBL-Mariner/pull/6381
    https://groups.google.com/g/golang-announce/c/iNN…
    https://github.com/facebook/proxygen/pull/466
    https://gist.github.com/adulau/7c2bfb8e9cdbe4b35a…
    https://github.com/micrictor/http2-rst-stream
    https://edg.io/lp/blog/resets-leaks-ddos-and-the-…
    https://openssf.org/blog/2023/10/10/http-2-rapid-…
    https://github.com/h2o/h2o/security/advisories/GH…
    https://github.com/h2o/h2o/pull/3291
    https://github.com/nodejs/node/pull/50121
    https://github.com/dotnet/announcements/issues/277
    https://github.com/golang/go/issues/63417
    https://github.com/advisories/GHSA-vx74-f528-fxqg
    https://github.com/apache/trafficserver/pull/10564
    https://msrc.microsoft.com/update-guide/vulnerabi…
    https://tomcat.apache.org/security-10.html#Fixed_…
    https://lists.apache.org/thread/5py8h42mxfsn8l1wy…
    https://www.openwall.com/lists/oss-security/2023/…
    https://www.haproxy.com/blog/haproxy-is-not-affec…
    https://github.com/opensearch-project/data-preppe…
    https://github.com/kubernetes/kubernetes/pull/121120
    https://github.com/oqtane/oqtane.framework/discus…
    https://github.com/advisories/GHSA-xpw8-rcwv-8f8p
    https://netty.io/news/2023/10/10/4-1-100-Final.html
    https://www.cisa.gov/news-events/alerts/2023/10/1…
    https://www.theregister.com/2023/10/10/http2_rapi…
    https://blog.qualys.com/vulnerabilities-threat-re…
    https://news.ycombinator.com/item?id=37837043
    https://github.com/kazu-yamamoto/http2/issues/93
    https://martinthomson.github.io/h2-stream-limits/…
    https://github.com/kazu-yamamoto/http2/commit/f61…
    https://github.com/apache/httpd/blob/afcdbeebbff4…
    https://www.debian.org/security/2023/dsa-5522 vendor-advisory
    https://www.debian.org/security/2023/dsa-5521 vendor-advisory
    https://access.redhat.com/security/cve/cve-2023-44487
    https://github.com/ninenines/cowboy/issues/1615
    https://github.com/varnishcache/varnish-cache/iss…
    https://github.com/tempesta-tech/tempesta/issues/1986
    https://blog.vespa.ai/cve-2023-44487/
    https://github.com/etcd-io/etcd/issues/16740
    https://www.darkreading.com/cloud/internet-wide-z…
    https://istio.io/latest/news/security/istio-secur…
    https://github.com/junkurihara/rust-rpxy/issues/97
    https://bugzilla.suse.com/show_bug.cgi?id=1216123
    https://bugzilla.redhat.com/show_bug.cgi?id=2242803
    https://ubuntu.com/security/CVE-2023-44487
    https://community.traefik.io/t/is-traefik-vulnera…
    https://github.com/advisories/GHSA-qppj-fm5r-hxr3
    https://github.com/apache/httpd-site/pull/10
    https://github.com/projectcontour/contour/pull/5826
    https://github.com/linkerd/website/pull/1695/comm…
    https://github.com/line/armeria/pull/5232
    https://blog.litespeedtech.com/2023/10/11/rapid-r…
    https://security.paloaltonetworks.com/CVE-2023-44487
    https://github.com/akka/akka-http/issues/4323
    https://github.com/openresty/openresty/issues/930
    https://github.com/apache/apisix/issues/10320
    https://github.com/Azure/AKS/issues/3947
    https://github.com/Kong/kong/discussions/11741
    https://github.com/arkrwn/PoC/tree/main/CVE-2023-44487
    https://www.netlify.com/blog/netlify-successfully…
    https://github.com/caddyserver/caddy/releases/tag…
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    http://www.openwall.com/lists/oss-security/2023/10/13/4 mailing-list
    http://www.openwall.com/lists/oss-security/2023/10/13/9 mailing-list
    https://arstechnica.com/security/2023/10/how-ddos…
    https://lists.w3.org/Archives/Public/ietf-http-wg…
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://linkerd.io/2023/10/12/linkerd-cve-2023-44487/
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    https://security.netapp.com/advisory/ntap-2023101…
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    http://www.openwall.com/lists/oss-security/2023/10/18/4 mailing-list
    http://www.openwall.com/lists/oss-security/2023/10/18/8 mailing-list
    http://www.openwall.com/lists/oss-security/2023/10/19/6 mailing-list
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    http://www.openwall.com/lists/oss-security/2023/10/20/8 mailing-list
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    https://www.debian.org/security/2023/dsa-5540 vendor-advisory
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    https://discuss.hashicorp.com/t/hcsec-2023-32-vau…
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    https://www.debian.org/security/2023/dsa-5549 vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisory
    https://www.debian.org/security/2023/dsa-5558 vendor-advisory
    https://lists.debian.org/debian-lts-announce/2023… mailing-list
    https://security.gentoo.org/glsa/202311-09 vendor-advisory
    https://www.debian.org/security/2023/dsa-5570 vendor-advisory
    https://security.netapp.com/advisory/ntap-2024042…
    https://security.netapp.com/advisory/ntap-2024062…
    https://security.netapp.com/advisory/ntap-2024062…
    https://github.com/grpc/grpc/releases/tag/v1.59.2
    https://sec.cloudapps.cisco.com/security/center/c…
    https://www.cisa.gov/known-exploited-vulnerabilit… government-resource
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://lists.fedoraproject.org/archives/list/pac… vendor-advisoryx_transferred
    https://www.vicarius.io/vsociety/posts/rapid-rese…
    http://www.openwall.com/lists/oss-security/2025/08/13/6
    https://cert-portal.siemens.com/productcert/html/…
    https://cert-portal.siemens.com/productcert/html/…
    https://cert-portal.siemens.com/productcert/html/…
    https://cert-portal.siemens.com/productcert/html/…
    https://cert-portal.siemens.com/productcert/html/…
    Show details on NVD website

    {
      "containers": {
        "adp": [
          {
            "affected": [
              {
                "cpes": [
                  "cpe:2.3:a:ietf:http:2.0:*:*:*:*:*:*:*"
                ],
                "defaultStatus": "unknown",
                "product": "http",
                "vendor": "ietf",
                "versions": [
                  {
                    "status": "affected",
                    "version": "2.0"
                  }
                ]
              }
            ],
            "metrics": [
              {
                "cvssV3_1": {
                  "attackComplexity": "LOW",
                  "attackVector": "NETWORK",
                  "availabilityImpact": "HIGH",
                  "baseScore": 7.5,
                  "baseSeverity": "HIGH",
                  "confidentialityImpact": "NONE",
                  "integrityImpact": "NONE",
                  "privilegesRequired": "NONE",
                  "scope": "UNCHANGED",
                  "userInteraction": "NONE",
                  "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
                  "version": "3.1"
                }
              },
              {
                "other": {
                  "content": {
                    "id": "CVE-2023-44487",
                    "options": [
                      {
                        "Exploitation": "active"
                      },
                      {
                        "Automatable": "yes"
                      },
                      {
                        "Technical Impact": "partial"
                      }
                    ],
                    "role": "CISA Coordinator",
                    "timestamp": "2024-07-23T20:34:21.334116Z",
                    "version": "2.0.3"
                  },
                  "type": "ssvc"
                }
              },
              {
                "other": {
                  "content": {
                    "dateAdded": "2023-10-10",
                    "reference": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2023-44487"
                  },
                  "type": "kev"
                }
              }
            ],
            "problemTypes": [
              {
                "descriptions": [
                  {
                    "cweId": "CWE-400",
                    "description": "CWE-400 Uncontrolled Resource Consumption",
                    "lang": "en",
                    "type": "CWE"
                  }
                ]
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2025-10-21T23:05:35.187Z",
              "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
              "shortName": "CISA-ADP"
            },
            "references": [
              {
                "tags": [
                  "government-resource"
                ],
                "url": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2023-44487"
              }
            ],
            "timeline": [
              {
                "lang": "en",
                "time": "2023-10-10T00:00:00.000Z",
                "value": "CVE-2023-44487 added to CISA KEV"
              }
            ],
            "title": "CISA ADP Vulnrichment"
          },
          {
            "providerMetadata": {
              "dateUpdated": "2025-11-04T21:08:27.383Z",
              "orgId": "af854a3a-2127-422b-91ae-364da2661108",
              "shortName": "CVE"
            },
            "references": [
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/dotnet/core/blob/e4613450ea0da7fd2fc6b61dfb2c1c1dec1ce9ec/release-notes/6.0/6.0.23/6.0.23.md?plain=1#L73"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://blog.cloudflare.com/technical-breakdown-http2-rapid-reset-ddos-attack/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://aws.amazon.com/security/security-bulletins/AWS-2023-011/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://cloud.google.com/blog/products/identity-security/how-it-works-the-novel-http2-rapid-reset-ddos-attack"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.nginx.com/blog/http-2-rapid-reset-attack-impacting-f5-nginx-products/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://cloud.google.com/blog/products/identity-security/google-cloud-mitigated-largest-ddos-attack-peaking-above-398-million-rps/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://news.ycombinator.com/item?id=37831062"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://blog.cloudflare.com/zero-day-rapid-reset-http2-record-breaking-ddos-attack/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.phoronix.com/news/HTTP2-Rapid-Reset-Attack"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/envoyproxy/envoy/pull/30055"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/haproxy/haproxy/issues/2312"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/eclipse/jetty.project/issues/10679"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://forums.swift.org/t/swift-nio-http2-security-update-cve-2023-44487-http-2-dos/67764"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/nghttp2/nghttp2/pull/1961"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/netty/netty/commit/58f75f665aa81a8cbcf6ffa74820042a285c5e61"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/alibaba/tengine/issues/1872"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/apache/tomcat/tree/main/java/org/apache/coyote/http2"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://news.ycombinator.com/item?id=37830987"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://news.ycombinator.com/item?id=37830998"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/caddyserver/caddy/issues/5877"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.bleepingcomputer.com/news/security/new-http-2-rapid-reset-zero-day-attack-breaks-ddos-records/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/bcdannyboy/CVE-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/grpc/grpc-go/pull/6703"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/icing/mod_h2/blob/0a864782af0a942aa2ad4ed960a6b32cd35bcf0a/mod_http2/README.md?plain=1#L239-L244"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/nghttp2/nghttp2/releases/tag/v1.57.0"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://mailman.nginx.org/pipermail/nginx-devel/2023-October/S36Q5HBXR7CAIMPLLPRSSSYR4PCMWILK.html"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://my.f5.com/manage/s/article/K000137106"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://msrc.microsoft.com/blog/2023/10/microsoft-response-to-distributed-denial-of-service-ddos-attacks-against-http/2/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://bugzilla.proxmox.com/show_bug.cgi?id=4988"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://cgit.freebsd.org/ports/commit/?id=c64c329c2c1752f46b73e3e6ce9f4329be6629f9"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://seanmonstar.com/post/730794151136935936/hyper-http2-rapid-reset-unaffected"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/microsoft/CBL-Mariner/pull/6381"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://groups.google.com/g/golang-announce/c/iNNxDTCjZvo"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/facebook/proxygen/pull/466"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://gist.github.com/adulau/7c2bfb8e9cdbe4b35a5e131c66a0c088"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/micrictor/http2-rst-stream"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://edg.io/lp/blog/resets-leaks-ddos-and-the-tale-of-a-hidden-cve"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://openssf.org/blog/2023/10/10/http-2-rapid-reset-vulnerability-highlights-need-for-rapid-response/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/h2o/h2o/security/advisories/GHSA-2m7v-gc89-fjqf"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/h2o/h2o/pull/3291"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/nodejs/node/pull/50121"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/dotnet/announcements/issues/277"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/golang/go/issues/63417"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/advisories/GHSA-vx74-f528-fxqg"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/apache/trafficserver/pull/10564"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://tomcat.apache.org/security-10.html#Fixed_in_Apache_Tomcat_10.1.14"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://lists.apache.org/thread/5py8h42mxfsn8l1wy6o41xwhsjlsd87q"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.openwall.com/lists/oss-security/2023/10/10/6"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.haproxy.com/blog/haproxy-is-not-affected-by-the-http-2-rapid-reset-attack-cve-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/opensearch-project/data-prepper/issues/3474"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/kubernetes/kubernetes/pull/121120"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/oqtane/oqtane.framework/discussions/3367"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/advisories/GHSA-xpw8-rcwv-8f8p"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://netty.io/news/2023/10/10/4-1-100-Final.html"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.cisa.gov/news-events/alerts/2023/10/10/http2-rapid-reset-vulnerability-cve-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.theregister.com/2023/10/10/http2_rapid_reset_zeroday/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://blog.qualys.com/vulnerabilities-threat-research/2023/10/10/cve-2023-44487-http-2-rapid-reset-attack"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://news.ycombinator.com/item?id=37837043"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/kazu-yamamoto/http2/issues/93"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://martinthomson.github.io/h2-stream-limits/draft-thomson-httpbis-h2-stream-limits.html"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/kazu-yamamoto/http2/commit/f61d41a502bd0f60eb24e1ce14edc7b6df6722a1"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/apache/httpd/blob/afcdbeebbff4b0c50ea26cdd16e178c0d1f24152/modules/http2/h2_mplx.c#L1101-L1113"
              },
              {
                "name": "DSA-5522",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://www.debian.org/security/2023/dsa-5522"
              },
              {
                "name": "DSA-5521",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://www.debian.org/security/2023/dsa-5521"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://access.redhat.com/security/cve/cve-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/ninenines/cowboy/issues/1615"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/varnishcache/varnish-cache/issues/3996"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/tempesta-tech/tempesta/issues/1986"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://blog.vespa.ai/cve-2023-44487/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/etcd-io/etcd/issues/16740"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.darkreading.com/cloud/internet-wide-zero-day-bug-fuels-largest-ever-ddos-event"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://istio.io/latest/news/security/istio-security-2023-004/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/junkurihara/rust-rpxy/issues/97"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://bugzilla.suse.com/show_bug.cgi?id=1216123"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2242803"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://ubuntu.com/security/CVE-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://community.traefik.io/t/is-traefik-vulnerable-to-cve-2023-44487/20125"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/advisories/GHSA-qppj-fm5r-hxr3"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/apache/httpd-site/pull/10"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/projectcontour/contour/pull/5826"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/linkerd/website/pull/1695/commits/4b9c6836471bc8270ab48aae6fd2181bc73fd632"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/line/armeria/pull/5232"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://blog.litespeedtech.com/2023/10/11/rapid-reset-http-2-vulnerablilty/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://security.paloaltonetworks.com/CVE-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/akka/akka-http/issues/4323"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/openresty/openresty/issues/930"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/apache/apisix/issues/10320"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/Azure/AKS/issues/3947"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/Kong/kong/discussions/11741"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/arkrwn/PoC/tree/main/CVE-2023-44487"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://www.netlify.com/blog/netlify-successfully-mitigates-cve-2023-44487/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://github.com/caddyserver/caddy/releases/tag/v2.7.5"
              },
              {
                "name": "[debian-lts-announce] 20231013 [SECURITY] [DLA 3617-1] tomcat9 security update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00020.html"
              },
              {
                "name": "[oss-security] 20231013 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2023/10/13/4"
              },
              {
                "name": "[oss-security] 20231013 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2023/10/13/9"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://arstechnica.com/security/2023/10/how-ddosers-used-the-http-2-protocol-to-deliver-attacks-of-unprecedented-size/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://lists.w3.org/Archives/Public/ietf-http-wg/2023OctDec/0025.html"
              },
              {
                "name": "FEDORA-2023-ed2642fd58",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JMEXY22BFG5Q64HQCM5CK2Q7KDKVV4TY/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://linkerd.io/2023/10/12/linkerd-cve-2023-44487/"
              },
              {
                "name": "[debian-lts-announce] 20231016 [SECURITY] [DLA 3621-1] nghttp2 security update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00023.html"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://security.netapp.com/advisory/ntap-20231016-0001/"
              },
              {
                "name": "[debian-lts-announce] 20231016 [SECURITY] [DLA 3617-2] tomcat9 regression update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00024.html"
              },
              {
                "name": "[oss-security] 20231018 Vulnerability in Jenkins",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2023/10/18/4"
              },
              {
                "name": "[oss-security] 20231018 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2023/10/18/8"
              },
              {
                "name": "[oss-security] 20231019 CVE-2023-45802: Apache HTTP Server: HTTP/2 stream memory not reclaimed right away on RST",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2023/10/19/6"
              },
              {
                "name": "FEDORA-2023-54fadada12",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/ZKQSIKIAT5TJ3WSLU3RDBQ35YX4GY4V3/"
              },
              {
                "name": "FEDORA-2023-5ff7bf1dd8",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JIZSEFC3YKCGABA2BZW6ZJRMDZJMB7PJ/"
              },
              {
                "name": "[oss-security] 20231020 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "http://www.openwall.com/lists/oss-security/2023/10/20/8"
              },
              {
                "name": "FEDORA-2023-17efd3f2cd",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/WLPRQ5TWUQQXYWBJM7ECYDAIL2YVKIUH/"
              },
              {
                "name": "FEDORA-2023-d5030c983c",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/E72T67UPDRXHIDLO3OROR25YAMN4GGW5/"
              },
              {
                "name": "FEDORA-2023-0259c3f26f",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/BFQD3KUEMFBHPAPBGLWQC34L4OWL5HAZ/"
              },
              {
                "name": "FEDORA-2023-2a9214af5f",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/ZLU6U2R2IC2K64NDPNMV55AUAO65MAF4/"
              },
              {
                "name": "FEDORA-2023-e9c04d81c1",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X6QXN4ORIVF6XBW4WWFE7VNPVC74S45Y/"
              },
              {
                "name": "FEDORA-2023-f66fc0f62a",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/LKYHSZQFDNR7RSA7LHVLLIAQMVYCUGBG/"
              },
              {
                "name": "FEDORA-2023-4d2fd884ea",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/FNA62Q767CFAFHBCDKYNPBMZWB7TWYVU/"
              },
              {
                "name": "FEDORA-2023-b2c50535cb",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/LNMZJCDHGLJJLXO4OXWJMTVQRNWOC7UL/"
              },
              {
                "name": "FEDORA-2023-fe53e13b5b",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/KSEGD2IWKNUO3DWY4KQGUQM5BISRWHQE/"
              },
              {
                "name": "FEDORA-2023-4bf641255e",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CLB4TW7KALB3EEQWNWCN7OUIWWVWWCG2/"
              },
              {
                "name": "[debian-lts-announce] 20231030 [SECURITY] [DLA 3641-1] jetty9 security update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00045.html"
              },
              {
                "name": "DSA-5540",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://www.debian.org/security/2023/dsa-5540"
              },
              {
                "name": "[debian-lts-announce] 20231031 [SECURITY] [DLA 3638-1] h2o security update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00047.html"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://discuss.hashicorp.com/t/hcsec-2023-32-vault-consul-and-boundary-affected-by-http-2-rapid-reset-denial-of-service-vulnerability-cve-2023-44487/59715"
              },
              {
                "name": "FEDORA-2023-1caffb88af",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/VHUHTSXLXGXS7JYKBXTA3VINUPHTNGVU/"
              },
              {
                "name": "FEDORA-2023-3f70b8d406",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/VSRDIV77HNKUSM7SJC5BKE5JSHLHU2NK/"
              },
              {
                "name": "FEDORA-2023-7b52921cae",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/3N4NJ7FR4X4FPZUGNTQAPSTVB2HB2Y4A/"
              },
              {
                "name": "FEDORA-2023-7934802344",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/ZB43REMKRQR62NJEI7I5NQ4FSXNLBKRT/"
              },
              {
                "name": "FEDORA-2023-dbe64661af",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/HT7T2R4MQKLIF4ODV4BDLPARWFPCJ5CZ/"
              },
              {
                "name": "FEDORA-2023-822aab0a5a",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/XFOIBB4YFICHDM7IBOP7PWXW3FX4HLL2/"
              },
              {
                "name": "[debian-lts-announce] 20231105 [SECURITY] [DLA 3645-1] trafficserver security update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/11/msg00001.html"
              },
              {
                "name": "DSA-5549",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://www.debian.org/security/2023/dsa-5549"
              },
              {
                "name": "FEDORA-2023-c0c6a91330",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/2MBEPPC36UBVOZZNAXFHKLFGSLCMN5LI/"
              },
              {
                "name": "FEDORA-2023-492b7be466",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/WE2I52RHNNU42PX6NZ2RBUHSFFJ2LVZX/"
              },
              {
                "name": "DSA-5558",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://www.debian.org/security/2023/dsa-5558"
              },
              {
                "name": "[debian-lts-announce] 20231119 [SECURITY] [DLA 3656-1] netty security update",
                "tags": [
                  "mailing-list",
                  "x_transferred"
                ],
                "url": "https://lists.debian.org/debian-lts-announce/2023/11/msg00012.html"
              },
              {
                "name": "GLSA-202311-09",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://security.gentoo.org/glsa/202311-09"
              },
              {
                "name": "DSA-5570",
                "tags": [
                  "vendor-advisory",
                  "x_transferred"
                ],
                "url": "https://www.debian.org/security/2023/dsa-5570"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://security.netapp.com/advisory/ntap-20240426-0007/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://security.netapp.com/advisory/ntap-20240621-0006/"
              },
              {
                "tags": [
                  "x_transferred"
                ],
                "url": "https://security.netapp.com/advisory/ntap-20240621-0007/"
              },
              {
                "url": "https://www.vicarius.io/vsociety/posts/rapid-reset-cve-2023-44487-dos-in-http2-understanding-the-root-cause"
              },
              {
                "url": "http://www.openwall.com/lists/oss-security/2025/08/13/6"
              }
            ],
            "title": "CVE Program Container"
          },
          {
            "affected": [
              {
                "defaultStatus": "unknown",
                "product": "RUGGEDCOM APE1808",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIMATIC S7-1500 CPU 1518-4 PN/DP MFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "V3.1.5",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIMATIC S7-1500 CPU 1518-4 PN/DP MFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "V3.1.5",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIMATIC S7-1500 CPU 1518F-4 PN/DP MFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "V3.1.5",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIMATIC S7-1500 CPU 1518F-4 PN/DP MFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "V3.1.5",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SINEC NMS",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "V3.0",
                    "status": "affected",
                    "version": "0",
                    "versionType": "custom"
                  }
                ]
              },
              {
                "defaultStatus": "unknown",
                "product": "SIPLUS S7-1500 CPU 1518-4 PN/DP MFP",
                "vendor": "Siemens",
                "versions": [
                  {
                    "lessThan": "*",
                    "status": "affected",
                    "version": "V3.1.5",
                    "versionType": "custom"
                  }
                ]
              }
            ],
            "providerMetadata": {
              "dateUpdated": "2026-07-14T12:03:17.389Z",
              "orgId": "0b142b55-0307-4c5a-b3c9-f314f3fb7c5e",
              "shortName": "siemens-SADP"
            },
            "references": [
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-832273.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-341067.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-784301.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-915275.html"
              },
              {
                "url": "https://cert-portal.siemens.com/productcert/html/ssa-082556.html"
              }
            ],
            "x_adpType": "supplier"
          }
        ],
        "cna": {
          "affected": [
            {
              "product": "n/a",
              "vendor": "n/a",
              "versions": [
                {
                  "status": "affected",
                  "version": "n/a"
                }
              ]
            }
          ],
          "descriptions": [
            {
              "lang": "en",
              "value": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023."
            }
          ],
          "problemTypes": [
            {
              "descriptions": [
                {
                  "description": "n/a",
                  "lang": "en",
                  "type": "text"
                }
              ]
            }
          ],
          "providerMetadata": {
            "dateUpdated": "2025-06-07T20:05:34.376Z",
            "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
            "shortName": "mitre"
          },
          "references": [
            {
              "url": "https://github.com/dotnet/core/blob/e4613450ea0da7fd2fc6b61dfb2c1c1dec1ce9ec/release-notes/6.0/6.0.23/6.0.23.md?plain=1#L73"
            },
            {
              "url": "https://blog.cloudflare.com/technical-breakdown-http2-rapid-reset-ddos-attack/"
            },
            {
              "url": "https://aws.amazon.com/security/security-bulletins/AWS-2023-011/"
            },
            {
              "url": "https://cloud.google.com/blog/products/identity-security/how-it-works-the-novel-http2-rapid-reset-ddos-attack"
            },
            {
              "url": "https://www.nginx.com/blog/http-2-rapid-reset-attack-impacting-f5-nginx-products/"
            },
            {
              "url": "https://cloud.google.com/blog/products/identity-security/google-cloud-mitigated-largest-ddos-attack-peaking-above-398-million-rps/"
            },
            {
              "url": "https://news.ycombinator.com/item?id=37831062"
            },
            {
              "url": "https://blog.cloudflare.com/zero-day-rapid-reset-http2-record-breaking-ddos-attack/"
            },
            {
              "url": "https://www.phoronix.com/news/HTTP2-Rapid-Reset-Attack"
            },
            {
              "url": "https://github.com/envoyproxy/envoy/pull/30055"
            },
            {
              "url": "https://github.com/haproxy/haproxy/issues/2312"
            },
            {
              "url": "https://github.com/eclipse/jetty.project/issues/10679"
            },
            {
              "url": "https://forums.swift.org/t/swift-nio-http2-security-update-cve-2023-44487-http-2-dos/67764"
            },
            {
              "url": "https://github.com/nghttp2/nghttp2/pull/1961"
            },
            {
              "url": "https://github.com/netty/netty/commit/58f75f665aa81a8cbcf6ffa74820042a285c5e61"
            },
            {
              "url": "https://github.com/alibaba/tengine/issues/1872"
            },
            {
              "url": "https://github.com/apache/tomcat/tree/main/java/org/apache/coyote/http2"
            },
            {
              "url": "https://news.ycombinator.com/item?id=37830987"
            },
            {
              "url": "https://news.ycombinator.com/item?id=37830998"
            },
            {
              "url": "https://github.com/caddyserver/caddy/issues/5877"
            },
            {
              "url": "https://www.bleepingcomputer.com/news/security/new-http-2-rapid-reset-zero-day-attack-breaks-ddos-records/"
            },
            {
              "url": "https://github.com/bcdannyboy/CVE-2023-44487"
            },
            {
              "url": "https://github.com/grpc/grpc-go/pull/6703"
            },
            {
              "url": "https://github.com/icing/mod_h2/blob/0a864782af0a942aa2ad4ed960a6b32cd35bcf0a/mod_http2/README.md?plain=1#L239-L244"
            },
            {
              "url": "https://github.com/nghttp2/nghttp2/releases/tag/v1.57.0"
            },
            {
              "url": "https://mailman.nginx.org/pipermail/nginx-devel/2023-October/S36Q5HBXR7CAIMPLLPRSSSYR4PCMWILK.html"
            },
            {
              "url": "https://my.f5.com/manage/s/article/K000137106"
            },
            {
              "url": "https://msrc.microsoft.com/blog/2023/10/microsoft-response-to-distributed-denial-of-service-ddos-attacks-against-http/2/"
            },
            {
              "url": "https://bugzilla.proxmox.com/show_bug.cgi?id=4988"
            },
            {
              "url": "https://cgit.freebsd.org/ports/commit/?id=c64c329c2c1752f46b73e3e6ce9f4329be6629f9"
            },
            {
              "name": "[oss-security] 20231010 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/10/7"
            },
            {
              "name": "[oss-security] 20231010 CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/10/6"
            },
            {
              "url": "https://seanmonstar.com/post/730794151136935936/hyper-http2-rapid-reset-unaffected"
            },
            {
              "url": "https://github.com/microsoft/CBL-Mariner/pull/6381"
            },
            {
              "url": "https://groups.google.com/g/golang-announce/c/iNNxDTCjZvo"
            },
            {
              "url": "https://github.com/facebook/proxygen/pull/466"
            },
            {
              "url": "https://gist.github.com/adulau/7c2bfb8e9cdbe4b35a5e131c66a0c088"
            },
            {
              "url": "https://github.com/micrictor/http2-rst-stream"
            },
            {
              "url": "https://edg.io/lp/blog/resets-leaks-ddos-and-the-tale-of-a-hidden-cve"
            },
            {
              "url": "https://openssf.org/blog/2023/10/10/http-2-rapid-reset-vulnerability-highlights-need-for-rapid-response/"
            },
            {
              "url": "https://github.com/h2o/h2o/security/advisories/GHSA-2m7v-gc89-fjqf"
            },
            {
              "url": "https://github.com/h2o/h2o/pull/3291"
            },
            {
              "url": "https://github.com/nodejs/node/pull/50121"
            },
            {
              "url": "https://github.com/dotnet/announcements/issues/277"
            },
            {
              "url": "https://github.com/golang/go/issues/63417"
            },
            {
              "url": "https://github.com/advisories/GHSA-vx74-f528-fxqg"
            },
            {
              "url": "https://github.com/apache/trafficserver/pull/10564"
            },
            {
              "url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-44487"
            },
            {
              "url": "https://tomcat.apache.org/security-10.html#Fixed_in_Apache_Tomcat_10.1.14"
            },
            {
              "url": "https://lists.apache.org/thread/5py8h42mxfsn8l1wy6o41xwhsjlsd87q"
            },
            {
              "url": "https://www.openwall.com/lists/oss-security/2023/10/10/6"
            },
            {
              "url": "https://www.haproxy.com/blog/haproxy-is-not-affected-by-the-http-2-rapid-reset-attack-cve-2023-44487"
            },
            {
              "url": "https://github.com/opensearch-project/data-prepper/issues/3474"
            },
            {
              "url": "https://github.com/kubernetes/kubernetes/pull/121120"
            },
            {
              "url": "https://github.com/oqtane/oqtane.framework/discussions/3367"
            },
            {
              "url": "https://github.com/advisories/GHSA-xpw8-rcwv-8f8p"
            },
            {
              "url": "https://netty.io/news/2023/10/10/4-1-100-Final.html"
            },
            {
              "url": "https://www.cisa.gov/news-events/alerts/2023/10/10/http2-rapid-reset-vulnerability-cve-2023-44487"
            },
            {
              "url": "https://www.theregister.com/2023/10/10/http2_rapid_reset_zeroday/"
            },
            {
              "url": "https://blog.qualys.com/vulnerabilities-threat-research/2023/10/10/cve-2023-44487-http-2-rapid-reset-attack"
            },
            {
              "url": "https://news.ycombinator.com/item?id=37837043"
            },
            {
              "url": "https://github.com/kazu-yamamoto/http2/issues/93"
            },
            {
              "url": "https://martinthomson.github.io/h2-stream-limits/draft-thomson-httpbis-h2-stream-limits.html"
            },
            {
              "url": "https://github.com/kazu-yamamoto/http2/commit/f61d41a502bd0f60eb24e1ce14edc7b6df6722a1"
            },
            {
              "url": "https://github.com/apache/httpd/blob/afcdbeebbff4b0c50ea26cdd16e178c0d1f24152/modules/http2/h2_mplx.c#L1101-L1113"
            },
            {
              "name": "DSA-5522",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://www.debian.org/security/2023/dsa-5522"
            },
            {
              "name": "DSA-5521",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://www.debian.org/security/2023/dsa-5521"
            },
            {
              "url": "https://access.redhat.com/security/cve/cve-2023-44487"
            },
            {
              "url": "https://github.com/ninenines/cowboy/issues/1615"
            },
            {
              "url": "https://github.com/varnishcache/varnish-cache/issues/3996"
            },
            {
              "url": "https://github.com/tempesta-tech/tempesta/issues/1986"
            },
            {
              "url": "https://blog.vespa.ai/cve-2023-44487/"
            },
            {
              "url": "https://github.com/etcd-io/etcd/issues/16740"
            },
            {
              "url": "https://www.darkreading.com/cloud/internet-wide-zero-day-bug-fuels-largest-ever-ddos-event"
            },
            {
              "url": "https://istio.io/latest/news/security/istio-security-2023-004/"
            },
            {
              "url": "https://github.com/junkurihara/rust-rpxy/issues/97"
            },
            {
              "url": "https://bugzilla.suse.com/show_bug.cgi?id=1216123"
            },
            {
              "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2242803"
            },
            {
              "url": "https://ubuntu.com/security/CVE-2023-44487"
            },
            {
              "url": "https://community.traefik.io/t/is-traefik-vulnerable-to-cve-2023-44487/20125"
            },
            {
              "url": "https://github.com/advisories/GHSA-qppj-fm5r-hxr3"
            },
            {
              "url": "https://github.com/apache/httpd-site/pull/10"
            },
            {
              "url": "https://github.com/projectcontour/contour/pull/5826"
            },
            {
              "url": "https://github.com/linkerd/website/pull/1695/commits/4b9c6836471bc8270ab48aae6fd2181bc73fd632"
            },
            {
              "url": "https://github.com/line/armeria/pull/5232"
            },
            {
              "url": "https://blog.litespeedtech.com/2023/10/11/rapid-reset-http-2-vulnerablilty/"
            },
            {
              "url": "https://security.paloaltonetworks.com/CVE-2023-44487"
            },
            {
              "url": "https://github.com/akka/akka-http/issues/4323"
            },
            {
              "url": "https://github.com/openresty/openresty/issues/930"
            },
            {
              "url": "https://github.com/apache/apisix/issues/10320"
            },
            {
              "url": "https://github.com/Azure/AKS/issues/3947"
            },
            {
              "url": "https://github.com/Kong/kong/discussions/11741"
            },
            {
              "url": "https://github.com/arkrwn/PoC/tree/main/CVE-2023-44487"
            },
            {
              "url": "https://www.netlify.com/blog/netlify-successfully-mitigates-cve-2023-44487/"
            },
            {
              "url": "https://github.com/caddyserver/caddy/releases/tag/v2.7.5"
            },
            {
              "name": "[debian-lts-announce] 20231013 [SECURITY] [DLA 3617-1] tomcat9 security update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00020.html"
            },
            {
              "name": "[oss-security] 20231013 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/13/4"
            },
            {
              "name": "[oss-security] 20231013 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/13/9"
            },
            {
              "url": "https://arstechnica.com/security/2023/10/how-ddosers-used-the-http-2-protocol-to-deliver-attacks-of-unprecedented-size/"
            },
            {
              "url": "https://lists.w3.org/Archives/Public/ietf-http-wg/2023OctDec/0025.html"
            },
            {
              "name": "FEDORA-2023-ed2642fd58",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JMEXY22BFG5Q64HQCM5CK2Q7KDKVV4TY/"
            },
            {
              "url": "https://linkerd.io/2023/10/12/linkerd-cve-2023-44487/"
            },
            {
              "name": "[debian-lts-announce] 20231016 [SECURITY] [DLA 3621-1] nghttp2 security update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00023.html"
            },
            {
              "url": "https://security.netapp.com/advisory/ntap-20231016-0001/"
            },
            {
              "name": "[debian-lts-announce] 20231016 [SECURITY] [DLA 3617-2] tomcat9 regression update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00024.html"
            },
            {
              "name": "[oss-security] 20231018 Vulnerability in Jenkins",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/18/4"
            },
            {
              "name": "[oss-security] 20231018 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/18/8"
            },
            {
              "name": "[oss-security] 20231019 CVE-2023-45802: Apache HTTP Server: HTTP/2 stream memory not reclaimed right away on RST",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/19/6"
            },
            {
              "name": "FEDORA-2023-54fadada12",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZKQSIKIAT5TJ3WSLU3RDBQ35YX4GY4V3/"
            },
            {
              "name": "FEDORA-2023-5ff7bf1dd8",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JIZSEFC3YKCGABA2BZW6ZJRMDZJMB7PJ/"
            },
            {
              "name": "[oss-security] 20231020 Re: CVE-2023-44487: HTTP/2 Rapid Reset attack against many implementations",
              "tags": [
                "mailing-list"
              ],
              "url": "http://www.openwall.com/lists/oss-security/2023/10/20/8"
            },
            {
              "name": "FEDORA-2023-17efd3f2cd",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WLPRQ5TWUQQXYWBJM7ECYDAIL2YVKIUH/"
            },
            {
              "name": "FEDORA-2023-d5030c983c",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/E72T67UPDRXHIDLO3OROR25YAMN4GGW5/"
            },
            {
              "name": "FEDORA-2023-0259c3f26f",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BFQD3KUEMFBHPAPBGLWQC34L4OWL5HAZ/"
            },
            {
              "name": "FEDORA-2023-2a9214af5f",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZLU6U2R2IC2K64NDPNMV55AUAO65MAF4/"
            },
            {
              "name": "FEDORA-2023-e9c04d81c1",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/X6QXN4ORIVF6XBW4WWFE7VNPVC74S45Y/"
            },
            {
              "name": "FEDORA-2023-f66fc0f62a",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LKYHSZQFDNR7RSA7LHVLLIAQMVYCUGBG/"
            },
            {
              "name": "FEDORA-2023-4d2fd884ea",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FNA62Q767CFAFHBCDKYNPBMZWB7TWYVU/"
            },
            {
              "name": "FEDORA-2023-b2c50535cb",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LNMZJCDHGLJJLXO4OXWJMTVQRNWOC7UL/"
            },
            {
              "name": "FEDORA-2023-fe53e13b5b",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KSEGD2IWKNUO3DWY4KQGUQM5BISRWHQE/"
            },
            {
              "name": "FEDORA-2023-4bf641255e",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CLB4TW7KALB3EEQWNWCN7OUIWWVWWCG2/"
            },
            {
              "name": "[debian-lts-announce] 20231030 [SECURITY] [DLA 3641-1] jetty9 security update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00045.html"
            },
            {
              "name": "DSA-5540",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://www.debian.org/security/2023/dsa-5540"
            },
            {
              "name": "[debian-lts-announce] 20231031 [SECURITY] [DLA 3638-1] h2o security update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/10/msg00047.html"
            },
            {
              "url": "https://discuss.hashicorp.com/t/hcsec-2023-32-vault-consul-and-boundary-affected-by-http-2-rapid-reset-denial-of-service-vulnerability-cve-2023-44487/59715"
            },
            {
              "name": "FEDORA-2023-1caffb88af",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VHUHTSXLXGXS7JYKBXTA3VINUPHTNGVU/"
            },
            {
              "name": "FEDORA-2023-3f70b8d406",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VSRDIV77HNKUSM7SJC5BKE5JSHLHU2NK/"
            },
            {
              "name": "FEDORA-2023-7b52921cae",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3N4NJ7FR4X4FPZUGNTQAPSTVB2HB2Y4A/"
            },
            {
              "name": "FEDORA-2023-7934802344",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZB43REMKRQR62NJEI7I5NQ4FSXNLBKRT/"
            },
            {
              "name": "FEDORA-2023-dbe64661af",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HT7T2R4MQKLIF4ODV4BDLPARWFPCJ5CZ/"
            },
            {
              "name": "FEDORA-2023-822aab0a5a",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XFOIBB4YFICHDM7IBOP7PWXW3FX4HLL2/"
            },
            {
              "name": "[debian-lts-announce] 20231105 [SECURITY] [DLA 3645-1] trafficserver security update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/11/msg00001.html"
            },
            {
              "name": "DSA-5549",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://www.debian.org/security/2023/dsa-5549"
            },
            {
              "name": "FEDORA-2023-c0c6a91330",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2MBEPPC36UBVOZZNAXFHKLFGSLCMN5LI/"
            },
            {
              "name": "FEDORA-2023-492b7be466",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WE2I52RHNNU42PX6NZ2RBUHSFFJ2LVZX/"
            },
            {
              "name": "DSA-5558",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://www.debian.org/security/2023/dsa-5558"
            },
            {
              "name": "[debian-lts-announce] 20231119 [SECURITY] [DLA 3656-1] netty security update",
              "tags": [
                "mailing-list"
              ],
              "url": "https://lists.debian.org/debian-lts-announce/2023/11/msg00012.html"
            },
            {
              "name": "GLSA-202311-09",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://security.gentoo.org/glsa/202311-09"
            },
            {
              "name": "DSA-5570",
              "tags": [
                "vendor-advisory"
              ],
              "url": "https://www.debian.org/security/2023/dsa-5570"
            },
            {
              "url": "https://security.netapp.com/advisory/ntap-20240426-0007/"
            },
            {
              "url": "https://security.netapp.com/advisory/ntap-20240621-0006/"
            },
            {
              "url": "https://security.netapp.com/advisory/ntap-20240621-0007/"
            },
            {
              "url": "https://github.com/grpc/grpc/releases/tag/v1.59.2"
            },
            {
              "url": "https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-http2-reset-d8Kf32vZ"
            }
          ]
        }
      },
      "cveMetadata": {
        "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca",
        "assignerShortName": "mitre",
        "cveId": "CVE-2023-44487",
        "datePublished": "2023-10-10T00:00:00.000Z",
        "dateReserved": "2023-09-29T00:00:00.000Z",
        "dateUpdated": "2026-07-14T12:03:17.389Z",
        "state": "PUBLISHED"
      },
      "dataType": "CVE_RECORD",
      "dataVersion": "5.2"
    }